Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

decode: remove summary quantile limit. #168

Merged
merged 1 commit into from
Nov 7, 2022
Merged

Conversation

pwhelan
Copy link
Contributor

@pwhelan pwhelan commented Nov 3, 2022

Remove the self-imposed limit of 5 quantile summaries, re #167. This causes a bug when decoding prometheus metrics.

@pwhelan pwhelan marked this pull request as draft November 3, 2022 21:21
@pwhelan
Copy link
Contributor Author

pwhelan commented Nov 4, 2022

While running with this configuration I get a two Invalid reads in valgrind:

[SERVER]
	log_level debug
[INPUT]
	name prometheus_scrape
	host 0.0.0.0
	port 9090
	tag prometheus
	metrics_path /metrics?format=prometheus
	scrape_interval 1s
[OUTPUT]
	name stdout
	match *

And here is the valgrind log:

==88877== Thread 2 flb-pipeline:
==88877== Invalid read of size 8
==88877==    at 0x70D2DB: cmt_summary_set_default (cmt_summary.c:298)
==88877==    by 0x768A5E: add_metric_summary (cmt_decode_prometheus.c:830)
==88877==    by 0x768BA2: finish_metric (cmt_decode_prometheus.c:877)
==88877==    by 0x768CDA: finish_duplicate_histogram_summary_sum_count (cmt_decode_prometheus.c:920)
==88877==    by 0x768EE5: parse_histogram_summary_name (cmt_decode_prometheus.c:996)
==88877==    by 0x768FE1: parse_metric_name (cmt_decode_prometheus.c:1033)
==88877==    by 0x769F81: cmt_decode_prometheus_parse (cmt_decode_prometheus.y:100)
==88877==    by 0x766E2F: cmt_decode_prometheus_create (cmt_decode_prometheus.c:117)
==88877==    by 0x3683CB: collect_metrics (prom_scrape.c:118)
==88877==    by 0x36858C: cb_prom_scrape_collect (prom_scrape.c:148)
==88877==    by 0x1C2374: input_pre_cb_collect (flb_input.h:479)
==88877==    by 0xAB2BC6: co_init (amd64.c:117)
==88877==  Address 0x535f128 is 0 bytes after a block of size 40 alloc'd
==88877==    at 0x4846A73: calloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==88877==    by 0x76837F: add_metric_summary (cmt_decode_prometheus.c:676)
==88877==    by 0x768BA2: finish_metric (cmt_decode_prometheus.c:877)
==88877==    by 0x768CDA: finish_duplicate_histogram_summary_sum_count (cmt_decode_prometheus.c:920)
==88877==    by 0x768EE5: parse_histogram_summary_name (cmt_decode_prometheus.c:996)
==88877==    by 0x768FE1: parse_metric_name (cmt_decode_prometheus.c:1033)
==88877==    by 0x769F81: cmt_decode_prometheus_parse (cmt_decode_prometheus.y:100)
==88877==    by 0x766E2F: cmt_decode_prometheus_create (cmt_decode_prometheus.c:117)
==88877==    by 0x3683CB: collect_metrics (prom_scrape.c:118)
==88877==    by 0x36858C: cb_prom_scrape_collect (prom_scrape.c:148)
==88877==    by 0x1C2374: input_pre_cb_collect (flb_input.h:479)
==88877==    by 0xAB2BC6: co_init (amd64.c:117)
==88877== 
==88877== Invalid read of size 8
==88877==    at 0x70D2DB: cmt_summary_set_default (cmt_summary.c:298)
==88877==    by 0x768A5E: add_metric_summary (cmt_decode_prometheus.c:830)
==88877==    by 0x768BA2: finish_metric (cmt_decode_prometheus.c:877)
==88877==    by 0x768D6E: parse_histogram_summary_name (cmt_decode_prometheus.c:950)
==88877==    by 0x768FE1: parse_metric_name (cmt_decode_prometheus.c:1033)
==88877==    by 0x769EB8: cmt_decode_prometheus_parse (cmt_decode_prometheus.y:69)
==88877==    by 0x766E2F: cmt_decode_prometheus_create (cmt_decode_prometheus.c:117)
==88877==    by 0x3683CB: collect_metrics (prom_scrape.c:118)
==88877==    by 0x36858C: cb_prom_scrape_collect (prom_scrape.c:148)
==88877==    by 0x1C2374: input_pre_cb_collect (flb_input.h:479)
==88877==    by 0xAB2BC6: co_init (amd64.c:117)
==88877==  Address 0x53631d0 is 0 bytes after a block of size 16 alloc'd
==88877==    at 0x4846A73: calloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==88877==    by 0x76837F: add_metric_summary (cmt_decode_prometheus.c:676)
==88877==    by 0x768BA2: finish_metric (cmt_decode_prometheus.c:877)
==88877==    by 0x768D6E: parse_histogram_summary_name (cmt_decode_prometheus.c:950)
==88877==    by 0x768FE1: parse_metric_name (cmt_decode_prometheus.c:1033)
==88877==    by 0x769EB8: cmt_decode_prometheus_parse (cmt_decode_prometheus.y:69)
==88877==    by 0x766E2F: cmt_decode_prometheus_create (cmt_decode_prometheus.c:117)
==88877==    by 0x3683CB: collect_metrics (prom_scrape.c:118)
==88877==    by 0x36858C: cb_prom_scrape_collect (prom_scrape.c:148)
==88877==    by 0x1C2374: input_pre_cb_collect (flb_input.h:479)
==88877==    by 0xAB2BC6: co_init (amd64.c:117)

It does not happen for each record, it happens only twice. Any ideas @leonardo-albertovich or @edsiper?

@edsiper
Copy link
Member

edsiper commented Nov 4, 2022

@tarruda can you take a look at this from the Prometheus decoding perspective ?

@leonardo-albertovich can you check the logic for msgpack encoding/decoding here?

@tarruda
Copy link
Contributor

tarruda commented Nov 4, 2022

@pwhelan / @edsiper is it possible to extract the raw prometheus text that caused this invalid read?

@@ -130,7 +130,7 @@ double cmt_summary_quantile_get_value(struct cmt_metric *metric, int quantile_id
{
uint64_t val;

if (quantile_id < 0 || quantile_id > 5) {
if (quantile_id < 0 /*|| quantile_id > metric->sum_quantiles_count*/) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is it possible the invalid read is because of this commented check? Even though valgrind reports this as happening on cmt_summary_set_default, it is possible the compiler inlined cmt_summary_quantile_get_value/ cmt_summary_quantile_set_value

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it is entirely possible. That check was commented while I worked out the best way to check the limit. The limit before was just hardcoded.

@tarruda
Copy link
Contributor

tarruda commented Nov 4, 2022

fixed the invalid read (plus another invalid parsing bug) in #170

edsiper pushed a commit that referenced this pull request Nov 4, 2022
* decode: prometheus: Add failing test for summary issue

Signed-off-by: Thiago Padilha <[email protected]>

* decode: prometheus: Fix pr 168 summary issue

Signed-off-by: Thiago Padilha <[email protected]>

Signed-off-by: Thiago Padilha <[email protected]>
@edsiper
Copy link
Member

edsiper commented Nov 4, 2022

@pwhelan #170 has been merged

@pwhelan pwhelan self-assigned this Nov 6, 2022
@pwhelan
Copy link
Contributor Author

pwhelan commented Nov 6, 2022

Here is a valgrind log of this patch running with fluent-bit 2.0.4:

valgrind ./bin/fluent-bit -c ../prom.conf
==58675== Memcheck, a memory error detector
==58675== Copyright (C) 2002-2022, and GNU GPL'd, by Julian Seward et al.
==58675== Using Valgrind-3.19.0 and LibVEX; rerun with -h for copyright info
==58675== Command: ./bin/fluent-bit -c ../prom.conf
==58675== 
Fluent Bit v2.0.4
* Copyright (C) 2015-2022 The Fluent Bit Authors
* Fluent Bit is a CNCF sub-project under the umbrella of Fluentd
* https://fluentbit.io

[2022/11/06 15:49:42] [ info] [fluent bit] version=2.0.4, commit=1eb3dae823, pid=58675
[2022/11/06 15:49:42] [ info] [storage] ver=1.2.0, type=memory, sync=normal, checksum=off, max_chunks_up=128
[2022/11/06 15:49:42] [ info] [cmetrics] version=0.5.6
[2022/11/06 15:49:42] [ info] [ctraces ] version=0.2.5
[2022/11/06 15:49:42] [ info] [input:prometheus_scrape:prometheus_scrape.0] initializing
[2022/11/06 15:49:43] [ info] [output:stdout:stdout.0] worker #0 started
[2022/11/06 15:49:42] [ info] [input:prometheus_scrape:prometheus_scrape.0] storage_strategy='memory' (memory only)
[2022/11/06 15:49:42] [ info] [sp] stream processor started
2022-11-06T18:49:43.206413604Z go_memstats_alloc_bytes_total = 28554552
2022-11-06T18:49:43.206413604Z go_memstats_frees_total = 101459
2022-11-06T18:49:43.206413604Z go_memstats_lookups_total = 0
2022-11-06T18:49:43.206413604Z go_memstats_mallocs_total = 202063
2022-11-06T18:49:43.206413604Z net_conntrack_dialer_conn_attempted_total{dialer_name="cadvisor"} = 29
2022-11-06T18:49:43.206413604Z net_conntrack_dialer_conn_attempted_total{dialer_name="default"} = 0
2022-11-06T18:49:43.206413604Z net_conntrack_dialer_conn_closed_total{dialer_name="cadvisor"} = 0
2022-11-06T18:49:43.206413604Z net_conntrack_dialer_conn_closed_total{dialer_name="default"} = 0
2022-11-06T18:49:43.206413604Z net_conntrack_dialer_conn_established_total{dialer_name="cadvisor"} = 0
2022-11-06T18:49:43.206413604Z net_conntrack_dialer_conn_established_total{dialer_name="default"} = 0
2022-11-06T18:49:43.206413604Z net_conntrack_dialer_conn_failed_total{dialer_name="cadvisor",reason="refused"} = 29
2022-11-06T18:49:43.206413604Z net_conntrack_dialer_conn_failed_total{dialer_name="cadvisor",reason="resolution"} = 0
2022-11-06T18:49:43.206413604Z net_conntrack_dialer_conn_failed_total{dialer_name="cadvisor",reason="timeout"} = 0
2022-11-06T18:49:43.206413604Z net_conntrack_dialer_conn_failed_total{dialer_name="cadvisor",reason="unknown"} = 29
2022-11-06T18:49:43.206413604Z net_conntrack_dialer_conn_failed_total{dialer_name="default",reason="refused"} = 0
2022-11-06T18:49:43.206413604Z net_conntrack_dialer_conn_failed_total{dialer_name="default",reason="resolution"} = 0
2022-11-06T18:49:43.206413604Z net_conntrack_dialer_conn_failed_total{dialer_name="default",reason="timeout"} = 0
2022-11-06T18:49:43.206413604Z net_conntrack_dialer_conn_failed_total{dialer_name="default",reason="unknown"} = 0
2022-11-06T18:49:43.206413604Z net_conntrack_listener_conn_accepted_total{listener_name="http"} = 36
2022-11-06T18:49:43.206413604Z net_conntrack_listener_conn_closed_total{listener_name="http"} = 35
2022-11-06T18:49:43.206413604Z process_cpu_seconds_total = 0.14999999999999999
2022-11-06T18:49:43.206413604Z prometheus_engine_query_log_failures_total = 0
2022-11-06T18:49:43.206413604Z prometheus_http_requests_total{code="200",handler="/metrics"} = 35
2022-11-06T18:49:43.206413604Z prometheus_notifications_dropped_total = 0
2022-11-06T18:49:43.206413604Z prometheus_remote_storage_samples_in_total = 145
2022-11-06T18:49:43.206413604Z prometheus_remote_storage_string_interner_zero_reference_releases_total = 0
2022-11-06T18:49:43.206413604Z prometheus_sd_consul_rpc_failures_total = 0
2022-11-06T18:49:43.206413604Z prometheus_sd_dns_lookup_failures_total = 0
2022-11-06T18:49:43.206413604Z prometheus_sd_dns_lookups_total = 0
2022-11-06T18:49:43.206413604Z prometheus_sd_file_read_errors_total = 0
2022-11-06T18:49:43.206413604Z prometheus_sd_kubernetes_events_total{event="add",role="endpoints"} = 0
2022-11-06T18:49:43.206413604Z prometheus_sd_kubernetes_events_total{event="add",role="endpointslice"} = 0
2022-11-06T18:49:43.206413604Z prometheus_sd_kubernetes_events_total{event="add",role="ingress"} = 0
2022-11-06T18:49:43.206413604Z prometheus_sd_kubernetes_events_total{event="add",role="node"} = 0
2022-11-06T18:49:43.206413604Z prometheus_sd_kubernetes_events_total{event="add",role="pod"} = 0
2022-11-06T18:49:43.206413604Z prometheus_sd_kubernetes_events_total{event="add",role="service"} = 0
2022-11-06T18:49:43.206413604Z prometheus_sd_kubernetes_events_total{event="delete",role="endpoints"} = 0
2022-11-06T18:49:43.206413604Z prometheus_sd_kubernetes_events_total{event="delete",role="endpointslice"} = 0
2022-11-06T18:49:43.206413604Z prometheus_sd_kubernetes_events_total{event="delete",role="ingress"} = 0
2022-11-06T18:49:43.206413604Z prometheus_sd_kubernetes_events_total{event="delete",role="node"} = 0
2022-11-06T18:49:43.206413604Z prometheus_sd_kubernetes_events_total{event="delete",role="pod"} = 0
2022-11-06T18:49:43.206413604Z prometheus_sd_kubernetes_events_total{event="delete",role="service"} = 0
2022-11-06T18:49:43.206413604Z prometheus_sd_kubernetes_events_total{event="update",role="endpoints"} = 0
2022-11-06T18:49:43.206413604Z prometheus_sd_kubernetes_events_total{event="update",role="endpointslice"} = 0
2022-11-06T18:49:43.206413604Z prometheus_sd_kubernetes_events_total{event="update",role="ingress"} = 0
2022-11-06T18:49:43.206413604Z prometheus_sd_kubernetes_events_total{event="update",role="node"} = 0
2022-11-06T18:49:43.206413604Z prometheus_sd_kubernetes_events_total{event="update",role="pod"} = 0
2022-11-06T18:49:43.206413604Z prometheus_sd_kubernetes_events_total{event="update",role="service"} = 0
2022-11-06T18:49:43.206413604Z prometheus_sd_received_updates_total{name="scrape"} = 2
2022-11-06T18:49:43.206413604Z prometheus_sd_updates_total{name="scrape"} = 1
2022-11-06T18:49:43.206413604Z prometheus_target_scrape_pool_exceeded_target_limit_total = 0
2022-11-06T18:49:43.206413604Z prometheus_target_scrape_pool_reloads_failed_total = 0
2022-11-06T18:49:43.206413604Z prometheus_target_scrape_pool_reloads_total = 0
2022-11-06T18:49:43.206413604Z prometheus_target_scrape_pool_sync_total{scrape_job="cadvisor"} = 1
2022-11-06T18:49:43.206413604Z prometheus_target_scrape_pools_failed_total = 0
2022-11-06T18:49:43.206413604Z prometheus_target_scrape_pools_total = 1
2022-11-06T18:49:43.206413604Z prometheus_target_scrapes_cache_flush_forced_total = 0
2022-11-06T18:49:43.206413604Z prometheus_target_scrapes_exceeded_sample_limit_total = 0
2022-11-06T18:49:43.206413604Z prometheus_target_scrapes_exemplar_out_of_order_total = 0
2022-11-06T18:49:43.206413604Z prometheus_target_scrapes_sample_duplicate_timestamp_total = 0
2022-11-06T18:49:43.206413604Z prometheus_target_scrapes_sample_out_of_bounds_total = 0
2022-11-06T18:49:43.206413604Z prometheus_target_scrapes_sample_out_of_order_total = 0
2022-11-06T18:49:43.206413604Z prometheus_template_text_expansion_failures_total = 0
2022-11-06T18:49:43.206413604Z prometheus_template_text_expansions_total = 0
2022-11-06T18:49:43.206413604Z prometheus_treecache_zookeeper_failures_total = 0
2022-11-06T18:49:43.206413604Z prometheus_tsdb_checkpoint_creations_failed_total = 0
2022-11-06T18:49:43.206413604Z prometheus_tsdb_checkpoint_creations_total = 0
2022-11-06T18:49:43.206413604Z prometheus_tsdb_checkpoint_deletions_failed_total = 0
2022-11-06T18:49:43.206413604Z prometheus_tsdb_checkpoint_deletions_total = 0
2022-11-06T18:49:43.206413604Z prometheus_tsdb_compactions_failed_total = 0
2022-11-06T18:49:43.206413604Z prometheus_tsdb_compactions_skipped_total = 0
2022-11-06T18:49:43.206413604Z prometheus_tsdb_compactions_total = 0
2022-11-06T18:49:43.206413604Z prometheus_tsdb_compactions_triggered_total = 2
2022-11-06T18:49:43.206413604Z prometheus_tsdb_head_chunks_created_total = 5
2022-11-06T18:49:43.206413604Z prometheus_tsdb_head_chunks_removed_total = 0
2022-11-06T18:49:43.206413604Z prometheus_tsdb_head_samples_appended_total = 145
2022-11-06T18:49:43.206413604Z prometheus_tsdb_head_series_created_total = 5
2022-11-06T18:49:43.206413604Z prometheus_tsdb_head_series_not_found_total = 0
2022-11-06T18:49:43.206413604Z prometheus_tsdb_head_series_removed_total = 0
2022-11-06T18:49:43.206413604Z prometheus_tsdb_head_truncations_failed_total = 0
2022-11-06T18:49:43.206413604Z prometheus_tsdb_head_truncations_total = 0
2022-11-06T18:49:43.206413604Z prometheus_tsdb_mmap_chunk_corruptions_total = 0
2022-11-06T18:49:43.206413604Z prometheus_tsdb_out_of_bound_samples_total = 0
2022-11-06T18:49:43.206413604Z prometheus_tsdb_out_of_order_exemplars_total = 0
2022-11-06T18:49:43.206413604Z prometheus_tsdb_out_of_order_samples_total = 0
2022-11-06T18:49:43.206413604Z prometheus_tsdb_reloads_failures_total = 0
2022-11-06T18:49:43.206413604Z prometheus_tsdb_reloads_total = 3
2022-11-06T18:49:43.206413604Z prometheus_tsdb_size_retentions_total = 0
2022-11-06T18:49:43.206413604Z prometheus_tsdb_time_retentions_total = 0
2022-11-06T18:49:43.206413604Z prometheus_tsdb_vertical_compactions_total = 0
2022-11-06T18:49:43.206413604Z prometheus_tsdb_wal_completed_pages_total = 0
2022-11-06T18:49:43.206413604Z prometheus_tsdb_wal_corruptions_total = 0
2022-11-06T18:49:43.206413604Z prometheus_tsdb_wal_page_flushes_total = 30
2022-11-06T18:49:43.206413604Z prometheus_tsdb_wal_truncations_failed_total = 0
2022-11-06T18:49:43.206413604Z prometheus_tsdb_wal_truncations_total = 0
2022-11-06T18:49:43.206413604Z prometheus_tsdb_wal_writes_failed_total = 0
2022-11-06T18:49:43.206413604Z prometheus_web_federation_errors_total = 0
2022-11-06T18:49:43.206413604Z prometheus_web_federation_warnings_total = 0
2022-11-06T18:49:43.206413604Z promhttp_metric_handler_requests_total{code="200"} = 35
2022-11-06T18:49:43.206413604Z promhttp_metric_handler_requests_total{code="500"} = 0
2022-11-06T18:49:43.206413604Z promhttp_metric_handler_requests_total{code="503"} = 0
2022-11-06T18:49:43.206413604Z go_goroutines = 29
2022-11-06T18:49:43.206413604Z go_info{version="go1.16.2"} = 1
2022-11-06T18:49:43.206413604Z go_memstats_alloc_bytes = 17596704
2022-11-06T18:49:43.206413604Z go_memstats_buck_hash_sys_bytes = 1454568
2022-11-06T18:49:43.206413604Z go_memstats_gc_cpu_fraction = 0.00021132462518973482
2022-11-06T18:49:43.206413604Z go_memstats_gc_sys_bytes = 5750144
2022-11-06T18:49:43.206413604Z go_memstats_heap_alloc_bytes = 17596704
2022-11-06T18:49:43.206413604Z go_memstats_heap_idle_bytes = 45842432
2022-11-06T18:49:43.206413604Z go_memstats_heap_inuse_bytes = 19496960
2022-11-06T18:49:43.206413604Z go_memstats_heap_objects = 100604
2022-11-06T18:49:43.206413604Z go_memstats_heap_released_bytes = 43245568
2022-11-06T18:49:43.206413604Z go_memstats_heap_sys_bytes = 65339392
2022-11-06T18:49:43.206413604Z go_memstats_last_gc_time_seconds = 1667760552.4306431
2022-11-06T18:49:43.206413604Z go_memstats_mcache_inuse_bytes = 28800
2022-11-06T18:49:43.206413604Z go_memstats_mcache_sys_bytes = 32768
2022-11-06T18:49:43.206413604Z go_memstats_mspan_inuse_bytes = 341496
2022-11-06T18:49:43.206413604Z go_memstats_mspan_sys_bytes = 360448
2022-11-06T18:49:43.206413604Z go_memstats_next_gc_bytes = 25520080
2022-11-06T18:49:43.206413604Z go_memstats_other_sys_bytes = 3757216
2022-11-06T18:49:43.206413604Z go_memstats_stack_inuse_bytes = 1769472
2022-11-06T18:49:43.206413604Z go_memstats_stack_sys_bytes = 1769472
2022-11-06T18:49:43.206413604Z go_memstats_sys_bytes = 78464008
2022-11-06T18:49:43.206413604Z go_threads = 29
2022-11-06T18:49:43.206413604Z process_max_fds = 1048576
2022-11-06T18:49:43.206413604Z process_open_fds = 12
2022-11-06T18:49:43.206413604Z process_resident_memory_bytes = 73068544
2022-11-06T18:49:43.206413604Z process_start_time_seconds = 1667760430.9300001
2022-11-06T18:49:43.206413604Z process_virtual_memory_bytes = 793067520
2022-11-06T18:49:43.206413604Z process_virtual_memory_max_bytes = 1.8446744073709552e+19
2022-11-06T18:49:43.206413604Z prometheus_api_remote_read_queries = 0
2022-11-06T18:49:43.206413604Z prometheus_build_info{branch="HEAD",goversion="go1.16.2",revision="3cafc58827d1ebd1a67749f88be4218f0bab3d8d",version="2.26.0"} = 1
2022-11-06T18:49:43.206413604Z prometheus_config_last_reload_success_timestamp_seconds = 1667760432.4296491
2022-11-06T18:49:43.206413604Z prometheus_config_last_reload_successful = 1
2022-11-06T18:49:43.206413604Z prometheus_engine_queries = 0
2022-11-06T18:49:43.206413604Z prometheus_engine_queries_concurrent_max = 20
2022-11-06T18:49:43.206413604Z prometheus_engine_query_log_enabled = 0
2022-11-06T18:49:43.206413604Z prometheus_notifications_alertmanagers_discovered = 0
2022-11-06T18:49:43.206413604Z prometheus_notifications_queue_capacity = 10000
2022-11-06T18:49:43.206413604Z prometheus_notifications_queue_length = 0
2022-11-06T18:49:43.206413604Z prometheus_remote_storage_highest_timestamp_in_seconds = 1667760581
2022-11-06T18:49:43.206413604Z prometheus_sd_discovered_targets{config="cadvisor",name="scrape"} = 1
2022-11-06T18:49:43.206413604Z prometheus_sd_failed_configs{name="notify"} = 0
2022-11-06T18:49:43.206413604Z prometheus_sd_failed_configs{name="scrape"} = 0
2022-11-06T18:49:43.206413604Z prometheus_target_metadata_cache_bytes{scrape_job="cadvisor"} = 0
2022-11-06T18:49:43.206413604Z prometheus_target_metadata_cache_entries{scrape_job="cadvisor"} = 0
2022-11-06T18:49:43.206413604Z prometheus_target_scrape_pool_targets{scrape_job="cadvisor"} = 1
2022-11-06T18:49:43.206413604Z prometheus_treecache_watcher_goroutines = 0
2022-11-06T18:49:43.206413604Z prometheus_tsdb_blocks_loaded = 0
2022-11-06T18:49:43.206413604Z prometheus_tsdb_compaction_populating_block = 0
2022-11-06T18:49:43.206413604Z prometheus_tsdb_data_replay_duration_seconds = 0.000187226
2022-11-06T18:49:43.206413604Z prometheus_tsdb_head_active_appenders = 0
2022-11-06T18:49:43.206413604Z prometheus_tsdb_head_chunks = 5
2022-11-06T18:49:43.206413604Z prometheus_tsdb_head_max_time = 1667760581170
2022-11-06T18:49:43.206413604Z prometheus_tsdb_head_max_time_seconds = 1667760581
2022-11-06T18:49:43.206413604Z prometheus_tsdb_head_min_time = 1667760441170
2022-11-06T18:49:43.206413604Z prometheus_tsdb_head_min_time_seconds = 1667760441
2022-11-06T18:49:43.206413604Z prometheus_tsdb_head_series = 5
2022-11-06T18:49:43.206413604Z prometheus_tsdb_isolation_high_watermark = 29
2022-11-06T18:49:43.206413604Z prometheus_tsdb_isolation_low_watermark = 29
2022-11-06T18:49:43.206413604Z prometheus_tsdb_lowest_timestamp = 1667760441170
2022-11-06T18:49:43.206413604Z prometheus_tsdb_lowest_timestamp_seconds = 1667760441
2022-11-06T18:49:43.206413604Z prometheus_tsdb_retention_limit_bytes = 0
2022-11-06T18:49:43.206413604Z prometheus_tsdb_storage_blocks_bytes = 0
2022-11-06T18:49:43.206413604Z prometheus_tsdb_symbol_table_size_bytes = 0
2022-11-06T18:49:43.206413604Z prometheus_tsdb_wal_segment_current = 0
2022-11-06T18:49:43.206413604Z promhttp_metric_handler_requests_in_flight = 1
2022-11-06T18:49:43.206413604Z go_gc_duration_seconds = { quantiles = { 0=3.5158e-05, 0.25=3.5918e-05, 0.5=0.000187376, 0.75=0.000187607, 1=0.0243586 }, sum=0.0248417, count=6 }
2022-11-06T18:49:43.206413604Z prometheus_engine_query_duration_seconds{slice="inner_eval"} = { quantiles = { 0.5=nan, 0.9=nan, 0.99=nan }, sum=0, count=0 }
2022-11-06T18:49:43.206413604Z prometheus_engine_query_duration_seconds{slice="prepare_time"} = { quantiles = { 0.5=0, 0.9=0, 0.99=0 }, sum=0, count=0 }
2022-11-06T18:49:43.206413604Z prometheus_engine_query_duration_seconds{slice="queue_time"} = { quantiles = { 0.5=0, 0.9=0, 0.99=0 }, sum=0, count=0 }
2022-11-06T18:49:43.206413604Z prometheus_engine_query_duration_seconds{slice="result_sort"} = { quantiles = { 0.5=0, 0.9=0, 0.99=0 }, sum=0, count=0 }
2022-11-06T18:49:43.206413604Z prometheus_rule_evaluation_duration_seconds = { quantiles = { 0.5=nan, 0.9=nan, 0.99=nan }, sum=0, count=0 }
2022-11-06T18:49:43.206413604Z prometheus_rule_group_duration_seconds = { quantiles = { 0.01=nan, 0.05=nan, 0.5=nan, 0.9=nan, 0.99=nan }, sum=0, count=0 }
2022-11-06T18:49:43.206413604Z prometheus_sd_consul_rpc_duration_seconds{call="service",endpoint="catalog"} = { quantiles = { 0.5=nan, 0.9=nan, 0.99=nan }, sum=0, count=0 }
2022-11-06T18:49:43.206413604Z prometheus_sd_consul_rpc_duration_seconds{call="services",endpoint="catalog"} = { quantiles = { 0.5=0, 0.9=0, 0.99=0 }, sum=0, count=0 }
2022-11-06T18:49:43.206413604Z prometheus_sd_file_scan_duration_seconds = { quantiles = { 0.5=nan, 0.9=nan, 0.99=nan }, sum=0, count=0 }
2022-11-06T18:49:43.206413604Z prometheus_target_interval_length_seconds{interval="5s"} = { quantiles = { 0.01=4.99639, 0.05=4.99797, 0.5=5.00001, 0.9=5.00175, 0.99=5.00306 }, sum=140.002, count=28 }
2022-11-06T18:49:43.206413604Z prometheus_target_sync_length_seconds{scrape_job="cadvisor"} = { quantiles = { 0.01=5.3531e-05, 0.05=5.3531e-05, 0.5=5.3531e-05, 0.9=5.3531e-05, 0.99=5.3531e-05 }, sum=5.3531e-05, count=1 }
2022-11-06T18:49:43.206413604Z prometheus_tsdb_head_gc_duration_seconds = { quantiles = { }, sum=0, count=0 }
2022-11-06T18:49:43.206413604Z prometheus_tsdb_wal_fsync_duration_seconds = { quantiles = { 0.5=nan, 0.9=nan, 0.99=nan }, sum=0, count=0 }
2022-11-06T18:49:43.206413604Z prometheus_tsdb_wal_truncate_duration_seconds = { quantiles = { }, sum=0, count=0 }
2022-11-06T18:49:43.206413604Z prometheus_http_request_duration_seconds{handler="/metrics"} = { buckets = { 0.1=35, 0.2=35, 0.4=35, 1=35, 3=35, 8=35, 20=35, 60=35, 120=35, +Inf=35 }, sum=0.0265199, count=35 }
2022-11-06T18:49:43.206413604Z prometheus_http_response_size_bytes{handler="/metrics"} = { buckets = { 100=0, 1000=0, 10000=0, 100000=35, 1e+06=35, 1e+07=35, 1e+08=35, 1e+09=35, +Inf=35 }, sum=1.51817e+06, count=35 }
2022-11-06T18:49:43.206413604Z prometheus_tsdb_compaction_chunk_range_seconds = { buckets = { 100=0, 400=0, 1600=0, 6400=0, 25600=0, 102400=0, 409600=0, 1.6384e+06=0, 6.5536e+06=0, 2.62144e+07=0, +Inf=0 }, sum=0, count=0 }
2022-11-06T18:49:43.206413604Z prometheus_tsdb_compaction_chunk_samples = { buckets = { 4=0, 6=0, 9=0, 13.5=0, 20.25=0, 30.375=0, 45.5625=0, 68.3438=0, 102.516=0, 153.773=0, 230.66=0, 345.99=0, +Inf=0 }, sum=0, count=0 }
2022-11-06T18:49:43.206413604Z prometheus_tsdb_compaction_chunk_size_bytes = { buckets = { 32=0, 48=0, 72=0, 108=0, 162=0, 243=0, 364.5=0, 546.75=0, 820.125=0, 1230.19=0, 1845.28=0, 2767.92=0, +Inf=0 }, sum=0, count=0 }
2022-11-06T18:49:43.206413604Z prometheus_tsdb_compaction_duration_seconds = { buckets = { 1=0, 2=0, 4=0, 8=0, 16=0, 32=0, 64=0, 128=0, 256=0, 512=0, 1024=0, 2048=0, 4096=0, 8192=0, +Inf=0 }, sum=0, count=0 }
2022-11-06T18:49:43.206413604Z prometheus_tsdb_tombstone_cleanup_seconds = { buckets = { 0.005=0, 0.01=0, 0.025=0, 0.05=0, 0.1=0, 0.25=0, 0.5=0, 1=0, 2.5=0, 5=0, 10=0, +Inf=0 }, sum=0, count=0 }
2022-11-06T18:49:44.222809664Z go_memstats_alloc_bytes_total = 28828632
2022-11-06T18:49:44.222809664Z go_memstats_frees_total = 102011
2022-11-06T18:49:44.222809664Z go_memstats_lookups_total = 0
2022-11-06T18:49:44.222809664Z go_memstats_mallocs_total = 205364
2022-11-06T18:49:44.222809664Z net_conntrack_dialer_conn_attempted_total{dialer_name="cadvisor"} = 29
2022-11-06T18:49:44.222809664Z net_conntrack_dialer_conn_attempted_total{dialer_name="default"} = 0
2022-11-06T18:49:44.222809664Z net_conntrack_dialer_conn_closed_total{dialer_name="cadvisor"} = 0
2022-11-06T18:49:44.222809664Z net_conntrack_dialer_conn_closed_total{dialer_name="default"} = 0
2022-11-06T18:49:44.222809664Z net_conntrack_dialer_conn_established_total{dialer_name="cadvisor"} = 0
2022-11-06T18:49:44.222809664Z net_conntrack_dialer_conn_established_total{dialer_name="default"} = 0
2022-11-06T18:49:44.222809664Z net_conntrack_dialer_conn_failed_total{dialer_name="cadvisor",reason="refused"} = 29
2022-11-06T18:49:44.222809664Z net_conntrack_dialer_conn_failed_total{dialer_name="cadvisor",reason="resolution"} = 0
2022-11-06T18:49:44.222809664Z net_conntrack_dialer_conn_failed_total{dialer_name="cadvisor",reason="timeout"} = 0
2022-11-06T18:49:44.222809664Z net_conntrack_dialer_conn_failed_total{dialer_name="cadvisor",reason="unknown"} = 29
2022-11-06T18:49:44.222809664Z net_conntrack_dialer_conn_failed_total{dialer_name="default",reason="refused"} = 0
2022-11-06T18:49:44.222809664Z net_conntrack_dialer_conn_failed_total{dialer_name="default",reason="resolution"} = 0
2022-11-06T18:49:44.222809664Z net_conntrack_dialer_conn_failed_total{dialer_name="default",reason="timeout"} = 0
2022-11-06T18:49:44.222809664Z net_conntrack_dialer_conn_failed_total{dialer_name="default",reason="unknown"} = 0
2022-11-06T18:49:44.222809664Z net_conntrack_listener_conn_accepted_total{listener_name="http"} = 37
2022-11-06T18:49:44.222809664Z net_conntrack_listener_conn_closed_total{listener_name="http"} = 36
2022-11-06T18:49:44.222809664Z process_cpu_seconds_total = 0.14999999999999999
2022-11-06T18:49:44.222809664Z prometheus_engine_query_log_failures_total = 0
2022-11-06T18:49:44.222809664Z prometheus_http_requests_total{code="200",handler="/metrics"} = 36
2022-11-06T18:49:44.222809664Z prometheus_notifications_dropped_total = 0
2022-11-06T18:49:44.222809664Z prometheus_remote_storage_samples_in_total = 145
2022-11-06T18:49:44.222809664Z prometheus_remote_storage_string_interner_zero_reference_releases_total = 0
2022-11-06T18:49:44.222809664Z prometheus_sd_consul_rpc_failures_total = 0
2022-11-06T18:49:44.222809664Z prometheus_sd_dns_lookup_failures_total = 0
2022-11-06T18:49:44.222809664Z prometheus_sd_dns_lookups_total = 0
2022-11-06T18:49:44.222809664Z prometheus_sd_file_read_errors_total = 0
2022-11-06T18:49:44.222809664Z prometheus_sd_kubernetes_events_total{event="add",role="endpoints"} = 0
2022-11-06T18:49:44.222809664Z prometheus_sd_kubernetes_events_total{event="add",role="endpointslice"} = 0
2022-11-06T18:49:44.222809664Z prometheus_sd_kubernetes_events_total{event="add",role="ingress"} = 0
2022-11-06T18:49:44.222809664Z prometheus_sd_kubernetes_events_total{event="add",role="node"} = 0
2022-11-06T18:49:44.222809664Z prometheus_sd_kubernetes_events_total{event="add",role="pod"} = 0
2022-11-06T18:49:44.222809664Z prometheus_sd_kubernetes_events_total{event="add",role="service"} = 0
2022-11-06T18:49:44.222809664Z prometheus_sd_kubernetes_events_total{event="delete",role="endpoints"} = 0
2022-11-06T18:49:44.222809664Z prometheus_sd_kubernetes_events_total{event="delete",role="endpointslice"} = 0
2022-11-06T18:49:44.222809664Z prometheus_sd_kubernetes_events_total{event="delete",role="ingress"} = 0
2022-11-06T18:49:44.222809664Z prometheus_sd_kubernetes_events_total{event="delete",role="node"} = 0
2022-11-06T18:49:44.222809664Z prometheus_sd_kubernetes_events_total{event="delete",role="pod"} = 0
2022-11-06T18:49:44.222809664Z prometheus_sd_kubernetes_events_total{event="delete",role="service"} = 0
2022-11-06T18:49:44.222809664Z prometheus_sd_kubernetes_events_total{event="update",role="endpoints"} = 0
2022-11-06T18:49:44.222809664Z prometheus_sd_kubernetes_events_total{event="update",role="endpointslice"} = 0
2022-11-06T18:49:44.222809664Z prometheus_sd_kubernetes_events_total{event="update",role="ingress"} = 0
2022-11-06T18:49:44.222809664Z prometheus_sd_kubernetes_events_total{event="update",role="node"} = 0
2022-11-06T18:49:44.222809664Z prometheus_sd_kubernetes_events_total{event="update",role="pod"} = 0
2022-11-06T18:49:44.222809664Z prometheus_sd_kubernetes_events_total{event="update",role="service"} = 0
2022-11-06T18:49:44.222809664Z prometheus_sd_received_updates_total{name="scrape"} = 2
2022-11-06T18:49:44.222809664Z prometheus_sd_updates_total{name="scrape"} = 1
2022-11-06T18:49:44.222809664Z prometheus_target_scrape_pool_exceeded_target_limit_total = 0
2022-11-06T18:49:44.222809664Z prometheus_target_scrape_pool_reloads_failed_total = 0
2022-11-06T18:49:44.222809664Z prometheus_target_scrape_pool_reloads_total = 0
2022-11-06T18:49:44.222809664Z prometheus_target_scrape_pool_sync_total{scrape_job="cadvisor"} = 1
2022-11-06T18:49:44.222809664Z prometheus_target_scrape_pools_failed_total = 0
2022-11-06T18:49:44.222809664Z prometheus_target_scrape_pools_total = 1
2022-11-06T18:49:44.222809664Z prometheus_target_scrapes_cache_flush_forced_total = 0
2022-11-06T18:49:44.222809664Z prometheus_target_scrapes_exceeded_sample_limit_total = 0
2022-11-06T18:49:44.222809664Z prometheus_target_scrapes_exemplar_out_of_order_total = 0
2022-11-06T18:49:44.222809664Z prometheus_target_scrapes_sample_duplicate_timestamp_total = 0
2022-11-06T18:49:44.222809664Z prometheus_target_scrapes_sample_out_of_bounds_total = 0
2022-11-06T18:49:44.222809664Z prometheus_target_scrapes_sample_out_of_order_total = 0
2022-11-06T18:49:44.222809664Z prometheus_template_text_expansion_failures_total = 0
2022-11-06T18:49:44.222809664Z prometheus_template_text_expansions_total = 0
2022-11-06T18:49:44.222809664Z prometheus_treecache_zookeeper_failures_total = 0
2022-11-06T18:49:44.222809664Z prometheus_tsdb_checkpoint_creations_failed_total = 0
2022-11-06T18:49:44.222809664Z prometheus_tsdb_checkpoint_creations_total = 0
2022-11-06T18:49:44.222809664Z prometheus_tsdb_checkpoint_deletions_failed_total = 0
2022-11-06T18:49:44.222809664Z prometheus_tsdb_checkpoint_deletions_total = 0
2022-11-06T18:49:44.222809664Z prometheus_tsdb_compactions_failed_total = 0
2022-11-06T18:49:44.222809664Z prometheus_tsdb_compactions_skipped_total = 0
2022-11-06T18:49:44.222809664Z prometheus_tsdb_compactions_total = 0
2022-11-06T18:49:44.222809664Z prometheus_tsdb_compactions_triggered_total = 2
2022-11-06T18:49:44.222809664Z prometheus_tsdb_head_chunks_created_total = 5
2022-11-06T18:49:44.222809664Z prometheus_tsdb_head_chunks_removed_total = 0
2022-11-06T18:49:44.222809664Z prometheus_tsdb_head_samples_appended_total = 145
2022-11-06T18:49:44.222809664Z prometheus_tsdb_head_series_created_total = 5
2022-11-06T18:49:44.222809664Z prometheus_tsdb_head_series_not_found_total = 0
2022-11-06T18:49:44.222809664Z prometheus_tsdb_head_series_removed_total = 0
2022-11-06T18:49:44.222809664Z prometheus_tsdb_head_truncations_failed_total = 0
2022-11-06T18:49:44.222809664Z prometheus_tsdb_head_truncations_total = 0
2022-11-06T18:49:44.222809664Z prometheus_tsdb_mmap_chunk_corruptions_total = 0
2022-11-06T18:49:44.222809664Z prometheus_tsdb_out_of_bound_samples_total = 0
2022-11-06T18:49:44.222809664Z prometheus_tsdb_out_of_order_exemplars_total = 0
2022-11-06T18:49:44.222809664Z prometheus_tsdb_out_of_order_samples_total = 0
2022-11-06T18:49:44.222809664Z prometheus_tsdb_reloads_failures_total = 0
2022-11-06T18:49:44.222809664Z prometheus_tsdb_reloads_total = 3
2022-11-06T18:49:44.222809664Z prometheus_tsdb_size_retentions_total = 0
2022-11-06T18:49:44.222809664Z prometheus_tsdb_time_retentions_total = 0
2022-11-06T18:49:44.222809664Z prometheus_tsdb_vertical_compactions_total = 0
2022-11-06T18:49:44.222809664Z prometheus_tsdb_wal_completed_pages_total = 0
2022-11-06T18:49:44.222809664Z prometheus_tsdb_wal_corruptions_total = 0
2022-11-06T18:49:44.222809664Z prometheus_tsdb_wal_page_flushes_total = 30
2022-11-06T18:49:44.222809664Z prometheus_tsdb_wal_truncations_failed_total = 0
2022-11-06T18:49:44.222809664Z prometheus_tsdb_wal_truncations_total = 0
2022-11-06T18:49:44.222809664Z prometheus_tsdb_wal_writes_failed_total = 0
2022-11-06T18:49:44.222809664Z prometheus_web_federation_errors_total = 0
2022-11-06T18:49:44.222809664Z prometheus_web_federation_warnings_total = 0
2022-11-06T18:49:44.222809664Z promhttp_metric_handler_requests_total{code="200"} = 36
2022-11-06T18:49:44.222809664Z promhttp_metric_handler_requests_total{code="500"} = 0
2022-11-06T18:49:44.222809664Z promhttp_metric_handler_requests_total{code="503"} = 0
2022-11-06T18:49:44.222809664Z go_goroutines = 28
2022-11-06T18:49:44.222809664Z go_info{version="go1.16.2"} = 1
2022-11-06T18:49:44.222809664Z go_memstats_alloc_bytes = 17870784
2022-11-06T18:49:44.222809664Z go_memstats_buck_hash_sys_bytes = 1454568
2022-11-06T18:49:44.222809664Z go_memstats_gc_cpu_fraction = 0.00021132462518973482
2022-11-06T18:49:44.222809664Z go_memstats_gc_sys_bytes = 5750144
2022-11-06T18:49:44.222809664Z go_memstats_heap_alloc_bytes = 17870784
2022-11-06T18:49:44.222809664Z go_memstats_heap_idle_bytes = 45596672
2022-11-06T18:49:44.222809664Z go_memstats_heap_inuse_bytes = 19742720
2022-11-06T18:49:44.222809664Z go_memstats_heap_objects = 103353
2022-11-06T18:49:44.222809664Z go_memstats_heap_released_bytes = 43245568
2022-11-06T18:49:44.222809664Z go_memstats_heap_sys_bytes = 65339392
2022-11-06T18:49:44.222809664Z go_memstats_last_gc_time_seconds = 1667760552.4306431
2022-11-06T18:49:44.222809664Z go_memstats_mcache_inuse_bytes = 28800
2022-11-06T18:49:44.222809664Z go_memstats_mcache_sys_bytes = 32768
2022-11-06T18:49:44.222809664Z go_memstats_mspan_inuse_bytes = 341496
2022-11-06T18:49:44.222809664Z go_memstats_mspan_sys_bytes = 360448
2022-11-06T18:49:44.222809664Z go_memstats_next_gc_bytes = 25520080
2022-11-06T18:49:44.222809664Z go_memstats_other_sys_bytes = 3757216
2022-11-06T18:49:44.222809664Z go_memstats_stack_inuse_bytes = 1769472
2022-11-06T18:49:44.222809664Z go_memstats_stack_sys_bytes = 1769472
2022-11-06T18:49:44.222809664Z go_memstats_sys_bytes = 78464008
2022-11-06T18:49:44.222809664Z go_threads = 29
2022-11-06T18:49:44.222809664Z process_max_fds = 1048576
2022-11-06T18:49:44.222809664Z process_open_fds = 12
2022-11-06T18:49:44.222809664Z process_resident_memory_bytes = 73068544
2022-11-06T18:49:44.222809664Z process_start_time_seconds = 1667760430.9300001
2022-11-06T18:49:44.222809664Z process_virtual_memory_bytes = 793067520
2022-11-06T18:49:44.222809664Z process_virtual_memory_max_bytes = 1.8446744073709552e+19
2022-11-06T18:49:44.222809664Z prometheus_api_remote_read_queries = 0
2022-11-06T18:49:44.222809664Z prometheus_build_info{branch="HEAD",goversion="go1.16.2",revision="3cafc58827d1ebd1a67749f88be4218f0bab3d8d",version="2.26.0"} = 1
2022-11-06T18:49:44.222809664Z prometheus_config_last_reload_success_timestamp_seconds = 1667760432.4296491
2022-11-06T18:49:44.222809664Z prometheus_config_last_reload_successful = 1
2022-11-06T18:49:44.222809664Z prometheus_engine_queries = 0
2022-11-06T18:49:44.222809664Z prometheus_engine_queries_concurrent_max = 20
2022-11-06T18:49:44.222809664Z prometheus_engine_query_log_enabled = 0
2022-11-06T18:49:44.222809664Z prometheus_notifications_alertmanagers_discovered = 0
2022-11-06T18:49:44.222809664Z prometheus_notifications_queue_capacity = 10000
2022-11-06T18:49:44.222809664Z prometheus_notifications_queue_length = 0
2022-11-06T18:49:44.222809664Z prometheus_remote_storage_highest_timestamp_in_seconds = 1667760581
2022-11-06T18:49:44.222809664Z prometheus_sd_discovered_targets{config="cadvisor",name="scrape"} = 1
2022-11-06T18:49:44.222809664Z prometheus_sd_failed_configs{name="notify"} = 0
2022-11-06T18:49:44.222809664Z prometheus_sd_failed_configs{name="scrape"} = 0
2022-11-06T18:49:44.222809664Z prometheus_target_metadata_cache_bytes{scrape_job="cadvisor"} = 0
2022-11-06T18:49:44.222809664Z prometheus_target_metadata_cache_entries{scrape_job="cadvisor"} = 0
2022-11-06T18:49:44.222809664Z prometheus_target_scrape_pool_targets{scrape_job="cadvisor"} = 1
2022-11-06T18:49:44.222809664Z prometheus_treecache_watcher_goroutines = 0
2022-11-06T18:49:44.222809664Z prometheus_tsdb_blocks_loaded = 0
2022-11-06T18:49:44.222809664Z prometheus_tsdb_compaction_populating_block = 0
2022-11-06T18:49:44.222809664Z prometheus_tsdb_data_replay_duration_seconds = 0.000187226
2022-11-06T18:49:44.222809664Z prometheus_tsdb_head_active_appenders = 0
2022-11-06T18:49:44.222809664Z prometheus_tsdb_head_chunks = 5
2022-11-06T18:49:44.222809664Z prometheus_tsdb_head_max_time = 1667760581170
2022-11-06T18:49:44.222809664Z prometheus_tsdb_head_max_time_seconds = 1667760581
2022-11-06T18:49:44.222809664Z prometheus_tsdb_head_min_time = 1667760441170
2022-11-06T18:49:44.222809664Z prometheus_tsdb_head_min_time_seconds = 1667760441
2022-11-06T18:49:44.222809664Z prometheus_tsdb_head_series = 5
2022-11-06T18:49:44.222809664Z prometheus_tsdb_isolation_high_watermark = 29
2022-11-06T18:49:44.222809664Z prometheus_tsdb_isolation_low_watermark = 29
2022-11-06T18:49:44.222809664Z prometheus_tsdb_lowest_timestamp = 1667760441170
2022-11-06T18:49:44.222809664Z prometheus_tsdb_lowest_timestamp_seconds = 1667760441
2022-11-06T18:49:44.222809664Z prometheus_tsdb_retention_limit_bytes = 0
2022-11-06T18:49:44.222809664Z prometheus_tsdb_storage_blocks_bytes = 0
2022-11-06T18:49:44.222809664Z prometheus_tsdb_symbol_table_size_bytes = 0
2022-11-06T18:49:44.222809664Z prometheus_tsdb_wal_segment_current = 0
2022-11-06T18:49:44.222809664Z promhttp_metric_handler_requests_in_flight = 1
2022-11-06T18:49:44.222809664Z go_gc_duration_seconds = { quantiles = { 0=3.5158e-05, 0.25=3.5918e-05, 0.5=0.000187376, 0.75=0.000187607, 1=0.0243586 }, sum=0.0248417, count=6 }
2022-11-06T18:49:44.222809664Z prometheus_engine_query_duration_seconds{slice="inner_eval"} = { quantiles = { 0.5=nan, 0.9=nan, 0.99=nan }, sum=0, count=0 }
2022-11-06T18:49:44.222809664Z prometheus_engine_query_duration_seconds{slice="prepare_time"} = { quantiles = { 0.5=0, 0.9=0, 0.99=0 }, sum=0, count=0 }
2022-11-06T18:49:44.222809664Z prometheus_engine_query_duration_seconds{slice="queue_time"} = { quantiles = { 0.5=0, 0.9=0, 0.99=0 }, sum=0, count=0 }
2022-11-06T18:49:44.222809664Z prometheus_engine_query_duration_seconds{slice="result_sort"} = { quantiles = { 0.5=0, 0.9=0, 0.99=0 }, sum=0, count=0 }
2022-11-06T18:49:44.222809664Z prometheus_rule_evaluation_duration_seconds = { quantiles = { 0.5=nan, 0.9=nan, 0.99=nan }, sum=0, count=0 }
2022-11-06T18:49:44.222809664Z prometheus_rule_group_duration_seconds = { quantiles = { 0.01=nan, 0.05=nan, 0.5=nan, 0.9=nan, 0.99=nan }, sum=0, count=0 }
2022-11-06T18:49:44.222809664Z prometheus_sd_consul_rpc_duration_seconds{call="service",endpoint="catalog"} = { quantiles = { 0.5=nan, 0.9=nan, 0.99=nan }, sum=0, count=0 }
2022-11-06T18:49:44.222809664Z prometheus_sd_consul_rpc_duration_seconds{call="services",endpoint="catalog"} = { quantiles = { 0.5=0, 0.9=0, 0.99=0 }, sum=0, count=0 }
2022-11-06T18:49:44.222809664Z prometheus_sd_file_scan_duration_seconds = { quantiles = { 0.5=nan, 0.9=nan, 0.99=nan }, sum=0, count=0 }
2022-11-06T18:49:44.222809664Z prometheus_target_interval_length_seconds{interval="5s"} = { quantiles = { 0.01=4.99639, 0.05=4.99797, 0.5=5.00001, 0.9=5.00175, 0.99=5.00306 }, sum=140.002, count=28 }
2022-11-06T18:49:44.222809664Z prometheus_target_sync_length_seconds{scrape_job="cadvisor"} = { quantiles = { 0.01=5.3531e-05, 0.05=5.3531e-05, 0.5=5.3531e-05, 0.9=5.3531e-05, 0.99=5.3531e-05 }, sum=5.3531e-05, count=1 }
2022-11-06T18:49:44.222809664Z prometheus_tsdb_head_gc_duration_seconds = { quantiles = { }, sum=0, count=0 }
2022-11-06T18:49:44.222809664Z prometheus_tsdb_wal_fsync_duration_seconds = { quantiles = { 0.5=nan, 0.9=nan, 0.99=nan }, sum=0, count=0 }
2022-11-06T18:49:44.222809664Z prometheus_tsdb_wal_truncate_duration_seconds = { quantiles = { }, sum=0, count=0 }
2022-11-06T18:49:44.222809664Z prometheus_http_request_duration_seconds{handler="/metrics"} = { buckets = { 0.1=36, 0.2=36, 0.4=36, 1=36, 3=36, 8=36, 20=36, 60=36, 120=36, +Inf=36 }, sum=0.0272524, count=36 }
2022-11-06T18:49:44.222809664Z prometheus_http_response_size_bytes{handler="/metrics"} = { buckets = { 100=0, 1000=0, 10000=0, 100000=36, 1e+06=36, 1e+07=36, 1e+08=36, 1e+09=36, +Inf=36 }, sum=1.56163e+06, count=36 }
2022-11-06T18:49:44.222809664Z prometheus_tsdb_compaction_chunk_range_seconds = { buckets = { 100=0, 400=0, 1600=0, 6400=0, 25600=0, 102400=0, 409600=0, 1.6384e+06=0, 6.5536e+06=0, 2.62144e+07=0, +Inf=0 }, sum=0, count=0 }
2022-11-06T18:49:44.222809664Z prometheus_tsdb_compaction_chunk_samples = { buckets = { 4=0, 6=0, 9=0, 13.5=0, 20.25=0, 30.375=0, 45.5625=0, 68.3438=0, 102.516=0, 153.773=0, 230.66=0, 345.99=0, +Inf=0 }, sum=0, count=0 }
2022-11-06T18:49:44.222809664Z prometheus_tsdb_compaction_chunk_size_bytes = { buckets = { 32=0, 48=0, 72=0, 108=0, 162=0, 243=0, 364.5=0, 546.75=0, 820.125=0, 1230.19=0, 1845.28=0, 2767.92=0, +Inf=0 }, sum=0, count=0 }
2022-11-06T18:49:44.222809664Z prometheus_tsdb_compaction_duration_seconds = { buckets = { 1=0, 2=0, 4=0, 8=0, 16=0, 32=0, 64=0, 128=0, 256=0, 512=0, 1024=0, 2048=0, 4096=0, 8192=0, +Inf=0 }, sum=0, count=0 }
2022-11-06T18:49:44.222809664Z prometheus_tsdb_tombstone_cleanup_seconds = { buckets = { 0.005=0, 0.01=0, 0.025=0, 0.05=0, 0.1=0, 0.25=0, 0.5=0, 1=0, 2.5=0, 5=0, 10=0, +Inf=0 }, sum=0, count=0 }
^C[2022/11/06 15:49:45] [engine] caught signal (SIGINT)
2022-11-06T18:49:45.166168113Z go_memstats_alloc_bytes_total = 29067376
2022-11-06T18:49:45.166168113Z go_memstats_frees_total = 102425
2022-11-06T18:49:45.166168113Z go_memstats_lookups_total = 0
2022-11-06T18:49:45.166168113Z go_memstats_mallocs_total = 207870
2022-11-06T18:49:45.166168113Z net_conntrack_dialer_conn_attempted_total{dialer_name="cadvisor"} = 29
2022-11-06T18:49:45.166168113Z net_conntrack_dialer_conn_attempted_total{dialer_name="default"} = 0
2022-11-06T18:49:45.166168113Z net_conntrack_dialer_conn_closed_total{dialer_name="cadvisor"} = 0
2022-11-06T18:49:45.166168113Z net_conntrack_dialer_conn_closed_total{dialer_name="default"} = 0
2022-11-06T18:49:45.166168113Z net_conntrack_dialer_conn_established_total{dialer_name="cadvisor"} = 0
2022-11-06T18:49:45.166168113Z net_conntrack_dialer_conn_established_total{dialer_name="default"} = 0
2022-11-06T18:49:45.166168113Z net_conntrack_dialer_conn_failed_total{dialer_name="cadvisor",reason="refused"} = 29
2022-11-06T18:49:45.166168113Z net_conntrack_dialer_conn_failed_total{dialer_name="cadvisor",reason="resolution"} = 0
2022-11-06T18:49:45.166168113Z net_conntrack_dialer_conn_failed_total{dialer_name="cadvisor",reason="timeout"} = 0
2022-11-06T18:49:45.166168113Z net_conntrack_dialer_conn_failed_total{dialer_name="cadvisor",reason="unknown"} = 29
2022-11-06T18:49:45.166168113Z net_conntrack_dialer_conn_failed_total{dialer_name="default",reason="refused"} = 0
2022-11-06T18:49:45.166168113Z net_conntrack_dialer_conn_failed_total{dialer_name="default",reason="resolution"} = 0
2022-11-06T18:49:45.166168113Z net_conntrack_dialer_conn_failed_total{dialer_name="default",reason="timeout"} = 0
2022-11-06T18:49:45.166168113Z net_conntrack_dialer_conn_failed_total{dialer_name="default",reason="unknown"} = 0
2022-11-06T18:49:45.166168113Z net_conntrack_listener_conn_accepted_total{listener_name="http"} = 38
2022-11-06T18:49:45.166168113Z net_conntrack_listener_conn_closed_total{listener_name="http"} = 37
2022-11-06T18:49:45.166168113Z process_cpu_seconds_total = 0.14999999999999999
2022-11-06T18:49:45.166168113Z prometheus_engine_query_log_failures_total = 0
2022-11-06T18:49:45.166168113Z prometheus_http_requests_total{code="200",handler="/metrics"} = 37
2022-11-06T18:49:45.166168113Z prometheus_notifications_dropped_total = 0
2022-11-06T18:49:45.166168113Z prometheus_remote_storage_samples_in_total = 145
2022-11-06T18:49:45.166168113Z prometheus_remote_storage_string_interner_zero_reference_releases_total = 0
2022-11-06T18:49:45.166168113Z prometheus_sd_consul_rpc_failures_total = 0
2022-11-06T18:49:45.166168113Z prometheus_sd_dns_lookup_failures_total = 0
2022-11-06T18:49:45.166168113Z prometheus_sd_dns_lookups_total = 0
2022-11-06T18:49:45.166168113Z prometheus_sd_file_read_errors_total = 0
2022-11-06T18:49:45.166168113Z prometheus_sd_kubernetes_events_total{event="add",role="endpoints"} = 0
2022-11-06T18:49:45.166168113Z prometheus_sd_kubernetes_events_total{event="add",role="endpointslice"} = 0
2022-11-06T18:49:45.166168113Z prometheus_sd_kubernetes_events_total{event="add",role="ingress"} = 0
2022-11-06T18:49:45.166168113Z prometheus_sd_kubernetes_events_total{event="add",role="node"} = 0
2022-11-06T18:49:45.166168113Z prometheus_sd_kubernetes_events_total{event="add",role="pod"} = 0
2022-11-06T18:49:45.166168113Z prometheus_sd_kubernetes_events_total{event="add",role="service"} = 0
2022-11-06T18:49:45.166168113Z prometheus_sd_kubernetes_events_total{event="delete",role="endpoints"} = 0
2022-11-06T18:49:45.166168113Z prometheus_sd_kubernetes_events_total{event="delete",role="endpointslice"} = 0
2022-11-06T18:49:45.166168113Z prometheus_sd_kubernetes_events_total{event="delete",role="ingress"} = 0
2022-11-06T18:49:45.166168113Z prometheus_sd_kubernetes_events_total{event="delete",role="node"} = 0
2022-11-06T18:49:45.166168113Z prometheus_sd_kubernetes_events_total{event="delete",role="pod"} = 0
2022-11-06T18:49:45.166168113Z prometheus_sd_kubernetes_events_total{event="delete",role="service"} = 0
2022-11-06T18:49:45.166168113Z prometheus_sd_kubernetes_events_total{event="update",role="endpoints"} = 0
2022-11-06T18:49:45.166168113Z prometheus_sd_kubernetes_events_total{event="update",role="endpointslice"} = 0
2022-11-06T18:49:45.166168113Z prometheus_sd_kubernetes_events_total{event="update",role="ingress"} = 0
2022-11-06T18:49:45.166168113Z prometheus_sd_kubernetes_events_total{event="update",role="node"} = 0
2022-11-06T18:49:45.166168113Z prometheus_sd_kubernetes_events_total{event="update",role="pod"} = 0
2022-11-06T18:49:45.166168113Z prometheus_sd_kubernetes_events_total{event="update",role="service"} = 0
2022-11-06T18:49:45.166168113Z prometheus_sd_received_updates_total{name="scrape"} = 2
2022-11-06T18:49:45.166168113Z prometheus_sd_updates_total{name="scrape"} = 1
2022-11-06T18:49:45.166168113Z prometheus_target_scrape_pool_exceeded_target_limit_total = 0
2022-11-06T18:49:45.166168113Z prometheus_target_scrape_pool_reloads_failed_total = 0
2022-11-06T18:49:45.166168113Z prometheus_target_scrape_pool_reloads_total = 0
2022-11-06T18:49:45.166168113Z prometheus_target_scrape_pool_sync_total{scrape_job="cadvisor"} = 1
2022-11-06T18:49:45.166168113Z prometheus_target_scrape_pools_failed_total = 0
2022-11-06T18:49:45.166168113Z prometheus_target_scrape_pools_total = 1
2022-11-06T18:49:45.166168113Z prometheus_target_scrapes_cache_flush_forced_total = 0
2022-11-06T18:49:45.166168113Z prometheus_target_scrapes_exceeded_sample_limit_total = 0
2022-11-06T18:49:45.166168113Z prometheus_target_scrapes_exemplar_out_of_order_total = 0
2022-11-06T18:49:45.166168113Z prometheus_target_scrapes_sample_duplicate_timestamp_total = 0
2022-11-06T18:49:45.166168113Z prometheus_target_scrapes_sample_out_of_bounds_total = 0
2022-11-06T18:49:45.166168113Z prometheus_target_scrapes_sample_out_of_order_total = 0
2022-11-06T18:49:45.166168113Z prometheus_template_text_expansion_failures_total = 0
2022-11-06T18:49:45.166168113Z prometheus_template_text_expansions_total = 0
2022-11-06T18:49:45.166168113Z prometheus_treecache_zookeeper_failures_total = 0
2022-11-06T18:49:45.166168113Z prometheus_tsdb_checkpoint_creations_failed_total = 0
2022-11-06T18:49:45.166168113Z prometheus_tsdb_checkpoint_creations_total = 0
2022-11-06T18:49:45.166168113Z prometheus_tsdb_checkpoint_deletions_failed_total = 0
2022-11-06T18:49:45.166168113Z prometheus_tsdb_checkpoint_deletions_total = 0
2022-11-06T18:49:45.166168113Z prometheus_tsdb_compactions_failed_total = 0
2022-11-06T18:49:45.166168113Z prometheus_tsdb_compactions_skipped_total = 0
2022-11-06T18:49:45.166168113Z prometheus_tsdb_compactions_total = 0
2022-11-06T18:49:45.166168113Z prometheus_tsdb_compactions_triggered_total = 2
2022-11-06T18:49:45.166168113Z prometheus_tsdb_head_chunks_created_total = 5
2022-11-06T18:49:45.166168113Z prometheus_tsdb_head_chunks_removed_total = 0
2022-11-06T18:49:45.166168113Z prometheus_tsdb_head_samples_appended_total = 145
2022-11-06T18:49:45.166168113Z prometheus_tsdb_head_series_created_total = 5
2022-11-06T18:49:45.166168113Z prometheus_tsdb_head_series_not_found_total = 0
2022-11-06T18:49:45.166168113Z prometheus_tsdb_head_series_removed_total = 0
2022-11-06T18:49:45.166168113Z prometheus_tsdb_head_truncations_failed_total = 0
2022-11-06T18:49:45.166168113Z prometheus_tsdb_head_truncations_total = 0
2022-11-06T18:49:45.166168113Z prometheus_tsdb_mmap_chunk_corruptions_total = 0
2022-11-06T18:49:45.166168113Z prometheus_tsdb_out_of_bound_samples_total = 0
2022-11-06T18:49:45.166168113Z prometheus_tsdb_out_of_order_exemplars_total = 0
2022-11-06T18:49:45.166168113Z prometheus_tsdb_out_of_order_samples_total = 0
2022-11-06T18:49:45.166168113Z prometheus_tsdb_reloads_failures_total = 0
2022-11-06T18:49:45.166168113Z prometheus_tsdb_reloads_total = 3
2022-11-06T18:49:45.166168113Z prometheus_tsdb_size_retentions_total = 0
2022-11-06T18:49:45.166168113Z prometheus_tsdb_time_retentions_total = 0
2022-11-06T18:49:45.166168113Z prometheus_tsdb_vertical_compactions_total = 0
2022-11-06T18:49:45.166168113Z prometheus_tsdb_wal_completed_pages_total = 0
2022-11-06T18:49:45.166168113Z prometheus_tsdb_wal_corruptions_total = 0
2022-11-06T18:49:45.166168113Z prometheus_tsdb_wal_page_flushes_total = 30
2022-11-06T18:49:45.166168113Z prometheus_tsdb_wal_truncations_failed_total = 0
2022-11-06T18:49:45.166168113Z prometheus_tsdb_wal_truncations_total = 0
2022-11-06T18:49:45.166168113Z prometheus_tsdb_wal_writes_failed_total = 0
2022-11-06T18:49:45.166168113Z prometheus_web_federation_errors_total = 0
2022-11-06T18:49:45.166168113Z prometheus_web_federation_warnings_total = 0
2022-11-06T18:49:45.166168113Z promhttp_metric_handler_requests_total{code="200"} = 37
2022-11-06T18:49:45.166168113Z promhttp_metric_handler_requests_total{code="500"} = 0
2022-11-06T18:49:45.166168113Z promhttp_metric_handler_requests_total{code="503"} = 0
2022-11-06T18:49:45.166168113Z go_goroutines = 28
2022-11-06T18:49:45.166168113Z go_info{version="go1.16.2"} = 1
2022-11-06T18:49:45.166168113Z go_memstats_alloc_bytes = 18109528
2022-11-06T18:49:45.166168113Z go_memstats_buck_hash_sys_bytes = 1454992
2022-11-06T18:49:45.166168113Z go_memstats_gc_cpu_fraction = 0.00021132462518973482
2022-11-06T18:49:45.166168113Z go_memstats_gc_sys_bytes = 5750144
2022-11-06T18:49:45.166168113Z go_memstats_heap_alloc_bytes = 18109528
2022-11-06T18:49:45.166168113Z go_memstats_heap_idle_bytes = 45391872
2022-11-06T18:49:45.166168113Z go_memstats_heap_inuse_bytes = 19947520
2022-11-06T18:49:45.166168113Z go_memstats_heap_objects = 105445
2022-11-06T18:49:45.166168113Z go_memstats_heap_released_bytes = 43245568
2022-11-06T18:49:45.166168113Z go_memstats_heap_sys_bytes = 65339392
2022-11-06T18:49:45.166168113Z go_memstats_last_gc_time_seconds = 1667760552.4306431
2022-11-06T18:49:45.166168113Z go_memstats_mcache_inuse_bytes = 28800
2022-11-06T18:49:45.166168113Z go_memstats_mcache_sys_bytes = 32768
2022-11-06T18:49:45.166168113Z go_memstats_mspan_inuse_bytes = 341496
2022-11-06T18:49:45.166168113Z go_memstats_mspan_sys_bytes = 360448
2022-11-06T18:49:45.166168113Z go_memstats_next_gc_bytes = 25520080
2022-11-06T18:49:45.166168113Z go_memstats_other_sys_bytes = 3756792
2022-11-06T18:49:45.166168113Z go_memstats_stack_inuse_bytes = 1769472
2022-11-06T18:49:45.166168113Z go_memstats_stack_sys_bytes = 1769472
2022-11-06T18:49:45.166168113Z go_memstats_sys_bytes = 78464008
2022-11-06T18:49:45.166168113Z go_threads = 29
2022-11-06T18:49:45.166168113Z process_max_fds = 1048576
2022-11-06T18:49:45.166168113Z process_open_fds = 12
2022-11-06T18:49:45.166168113Z process_resident_memory_bytes = 73068544
2022-11-06T18:49:45.166168113Z process_start_time_seconds = 1667760430.9300001
2022-11-06T18:49:45.166168113Z process_virtual_memory_bytes = 793067520
2022-11-06T18:49:45.166168113Z process_virtual_memory_max_bytes = 1.8446744073709552e+19
2022-11-06T18:49:45.166168113Z prometheus_api_remote_read_queries = 0
2022-11-06T18:49:45.166168113Z prometheus_build_info{branch="HEAD",goversion="go1.16.2",revision="3cafc58827d1ebd1a67749f88be4218f0bab3d8d",version="2.26.0"} = 1
2022-11-06T18:49:45.166168113Z prometheus_config_last_reload_success_timestamp_seconds = 1667760432.4296491
2022-11-06T18:49:45.166168113Z prometheus_config_last_reload_successful = 1
2022-11-06T18:49:45.166168113Z prometheus_engine_queries = 0
2022-11-06T18:49:45.166168113Z prometheus_engine_queries_concurrent_max = 20
2022-11-06T18:49:45.166168113Z prometheus_engine_query_log_enabled = 0
2022-11-06T18:49:45.166168113Z prometheus_notifications_alertmanagers_discovered = 0
2022-11-06T18:49:45.166168113Z prometheus_notifications_queue_capacity = 10000
2022-11-06T18:49:45.166168113Z prometheus_notifications_queue_length = 0
2022-11-06T18:49:45.166168113Z prometheus_remote_storage_highest_timestamp_in_seconds = 1667760581
2022-11-06T18:49:45.166168113Z prometheus_sd_discovered_targets{config="cadvisor",name="scrape"} = 1
2022-11-06T18:49:45.166168113Z prometheus_sd_failed_configs{name="notify"} = 0
2022-11-06T18:49:45.166168113Z prometheus_sd_failed_configs{name="scrape"} = 0
2022-11-06T18:49:45.166168113Z prometheus_target_metadata_cache_bytes{scrape_job="cadvisor"} = 0
2022-11-06T18:49:45.166168113Z prometheus_target_metadata_cache_entries{scrape_job="cadvisor"} = 0
2022-11-06T18:49:45.166168113Z prometheus_target_scrape_pool_targets{scrape_job="cadvisor"} = 1
2022-11-06T18:49:45.166168113Z prometheus_treecache_watcher_goroutines = 0
2022-11-06T18:49:45.166168113Z prometheus_tsdb_blocks_loaded = 0
2022-11-06T18:49:45.166168113Z prometheus_tsdb_compaction_populating_block = 0
2022-11-06T18:49:45.166168113Z prometheus_tsdb_data_replay_duration_seconds = 0.000187226
2022-11-06T18:49:45.166168113Z prometheus_tsdb_head_active_appenders = 0
2022-11-06T18:49:45.166168113Z prometheus_tsdb_head_chunks = 5
2022-11-06T18:49:45.166168113Z prometheus_tsdb_head_max_time = 1667760581170
2022-11-06T18:49:45.166168113Z prometheus_tsdb_head_max_time_seconds = 1667760581
2022-11-06T18:49:45.166168113Z prometheus_tsdb_head_min_time = 1667760441170
2022-11-06T18:49:45.166168113Z prometheus_tsdb_head_min_time_seconds = 1667760441
2022-11-06T18:49:45.166168113Z prometheus_tsdb_head_series = 5
2022-11-06T18:49:45.166168113Z prometheus_tsdb_isolation_high_watermark = 29
2022-11-06T18:49:45.166168113Z prometheus_tsdb_isolation_low_watermark = 29
2022-11-06T18:49:45.166168113Z prometheus_tsdb_lowest_timestamp = 1667760441170
2022-11-06T18:49:45.166168113Z prometheus_tsdb_lowest_timestamp_seconds = 1667760441
2022-11-06T18:49:45.166168113Z prometheus_tsdb_retention_limit_bytes = 0
2022-11-06T18:49:45.166168113Z prometheus_tsdb_storage_blocks_bytes = 0
2022-11-06T18:49:45.166168113Z prometheus_tsdb_symbol_table_size_bytes = 0
2022-11-06T18:49:45.166168113Z prometheus_tsdb_wal_segment_current = 0
2022-11-06T18:49:45.166168113Z promhttp_metric_handler_requests_in_flight = 1
2022-11-06T18:49:45.166168113Z go_gc_duration_seconds = { quantiles = { 0=3.5158e-05, 0.25=3.5918e-05, 0.5=0.000187376, 0.75=0.000187607, 1=0.0243586 }, sum=0.0248417, count=6 }
2022-11-06T18:49:45.166168113Z prometheus_engine_query_duration_seconds{slice="inner_eval"} = { quantiles = { 0.5=nan, 0.9=nan, 0.99=nan }, sum=0, count=0 }
2022-11-06T18:49:45.166168113Z prometheus_engine_query_duration_seconds{slice="prepare_time"} = { quantiles = { 0.5=0, 0.9=0, 0.99=0 }, sum=0, count=0 }
2022-11-06T18:49:45.166168113Z prometheus_engine_query_duration_seconds{slice="queue_time"} = { quantiles = { 0.5=0, 0.9=0, 0.99=0 }, sum=0, count=0 }
2022-11-06T18:49:45.166168113Z prometheus_engine_query_duration_seconds{slice="result_sort"} = { quantiles = { 0.5=0, 0.9=0, 0.99=0 }, sum=0, count=0 }
2022-11-06T18:49:45.166168113Z prometheus_rule_evaluation_duration_seconds = { quantiles = { 0.5=nan, 0.9=nan, 0.99=nan }, sum=0, count=0 }
2022-11-06T18:49:45.166168113Z prometheus_rule_group_duration_seconds = { quantiles = { 0.01=nan, 0.05=nan, 0.5=nan, 0.9=nan, 0.99=nan }, sum=0, count=0 }
2022-11-06T18:49:45.166168113Z prometheus_sd_consul_rpc_duration_seconds{call="service",endpoint="catalog"} = { quantiles = { 0.5=nan, 0.9=nan, 0.99=nan }, sum=0, count=0 }
2022-11-06T18:49:45.166168113Z prometheus_sd_consul_rpc_duration_seconds{call="services",endpoint="catalog"} = { quantiles = { 0.5=0, 0.9=0, 0.99=0 }, sum=0, count=0 }
2022-11-06T18:49:45.166168113Z prometheus_sd_file_scan_duration_seconds = { quantiles = { 0.5=nan, 0.9=nan, 0.99=nan }, sum=0, count=0 }
2022-11-06T18:49:45.166168113Z prometheus_target_interval_length_seconds{interval="5s"} = { quantiles = { 0.01=4.99639, 0.05=4.99797, 0.5=5.00001, 0.9=5.00175, 0.99=5.00306 }, sum=140.002, count=28 }
2022-11-06T18:49:45.166168113Z prometheus_target_sync_length_seconds{scrape_job="cadvisor"} = { quantiles = { 0.01=5.3531e-05, 0.05=5.3531e-05, 0.5=5.3531e-05, 0.9=5.3531e-05, 0.99=5.3531e-05 }, sum=5.3531e-05, count=1 }
2022-11-06T18:49:45.166168113Z prometheus_tsdb_head_gc_duration_seconds = { quantiles = { }, sum=0, count=0 }
2022-11-06T18:49:45.166168113Z prometheus_tsdb_wal_fsync_duration_seconds = { quantiles = { 0.5=nan, 0.9=nan, 0.99=nan }, sum=0, count=0 }
2022-11-06T18:49:45.166168113Z prometheus_tsdb_wal_truncate_duration_seconds = { quantiles = { }, sum=0, count=0 }
2022-11-06T18:49:45.166168113Z prometheus_http_request_duration_seconds{handler="/metrics"} = { buckets = { 0.1=37, 0.2=37, 0.4=37, 1=37, 3=37, 8=37, 20=37, 60=37, 120=37, +Inf=37 }, sum=0.0279886, count=37 }
2022-11-06T18:49:45.166168113Z prometheus_http_response_size_bytes{handler="/metrics"} = { buckets = { 100=0, 1000=0, 10000=0, 100000=37, 1e+06=37, 1e+07=37, 1e+08=37, 1e+09=37, +Inf=37 }, sum=1.60509e+06, count=37 }
2022-11-06T18:49:45.166168113Z prometheus_tsdb_compaction_chunk_range_seconds = { buckets = { 100=0, 400=0, 1600=0, 6400=0, 25600=0, 102400=0, 409600=0, 1.6384e+06=0, 6.5536e+06=0, 2.62144e+07=0, +Inf=0 }, sum=0, count=0 }
2022-11-06T18:49:45.166168113Z prometheus_tsdb_compaction_chunk_samples = { buckets = { 4=0, 6=0, 9=0, 13.5=0, 20.25=0, 30.375=0, 45.5625=0, 68.3438=0, 102.516=0, 153.773=0, 230.66=0, 345.99=0, +Inf=0 }, sum=0, count=0 }
2022-11-06T18:49:45.166168113Z prometheus_tsdb_compaction_chunk_size_bytes = { buckets = { 32=0, 48=0, 72=0, 108=0, 162=0, 243=0, 364.5=0, 546.75=0, 820.125=0, 1230.19=0, 1845.28=0, 2767.92=0, +Inf=0 }, sum=0, count=0 }
2022-11-06T18:49:45.166168113Z prometheus_tsdb_compaction_duration_seconds = { buckets = { 1=0, 2=0, 4=0, 8=0, 16=0, 32=0, 64=0, 128=0, 256=0, 512=0, 1024=0, 2048=0, 4096=0, 8192=0, +Inf=0 }, sum=0, count=0 }
2022-11-06T18:49:45.166168113Z prometheus_tsdb_tombstone_cleanup_seconds = { buckets = { 0.005=0, 0.01=0, 0.025=0, 0.05=0, 0.1=0, 0.25=0, 0.5=0, 1=0, 2.5=0, 5=0, 10=0, +Inf=0 }, sum=0, count=0 }
[2022/11/06 15:49:45] [ warn] [engine] service will shutdown in max 5 seconds
[2022/11/06 15:49:46] [ info] [engine] service has stopped (0 pending tasks)
[2022/11/06 15:49:46] [ info] [output:stdout:stdout.0] thread worker #0 stopping...
[2022/11/06 15:49:46] [ info] [output:stdout:stdout.0] thread worker #0 stopped
==58675== 
==58675== HEAP SUMMARY:
==58675==     in use at exit: 0 bytes in 0 blocks
==58675==   total heap usage: 30,324 allocs, 30,324 frees, 42,807,326 bytes allocated
==58675== 
==58675== All heap blocks were freed -- no leaks are possible
==58675== 
==58675== For lists of detected and suppressed errors, rerun with: -s
==58675== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)

@pwhelan pwhelan force-pushed the fix-quantile-limit branch from f061751 to c74ddc7 Compare November 6, 2022 18:52
@pwhelan pwhelan marked this pull request as ready for review November 6, 2022 18:52
@pwhelan
Copy link
Contributor Author

pwhelan commented Nov 6, 2022

@edsiper this is ready for merging and/or review.

@edsiper edsiper merged commit 1d32567 into master Nov 7, 2022
@edsiper edsiper deleted the fix-quantile-limit branch November 7, 2022 17:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants