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

Empty result when step is larger than 300s #705

Open
arkbriar opened this issue Jan 14, 2025 · 13 comments
Open

Empty result when step is larger than 300s #705

arkbriar opened this issue Jan 14, 2025 · 13 comments

Comments

@arkbriar
Copy link

arkbriar commented Jan 14, 2025

Seems the commit is missing from the forked prometheus
prometheus/prometheus#9946. Therefore, there's a high chance no data can be popped when a step is larger than 300s (which is the default look back delta).

An example:

  • Query params: start=1736607436000, end=1736780236000, step=1800s
  • Two backends (both VM)
  • Result below (both same)
value="{} =>\n0.03333333333333333 @[1736762400]\n0 @[1736764200]\n0 @[1736766000]\n0 @[1736767800]\n0 @[1736769600]\n0.03333333333333333 @[1736771400]\n0 @[1736773200]\n0 @[1736775000]\n0 @[1736776800]\n0.03333333333333333 @[1736778600]"

The overall result from the query engine was empty. I traced through the code and found data was jumped because of this, where the delta is the default value 300000.

A workaround to this is to align the start and end to step, which Grafana does. And the fact that Grafana always works while my program doesn't confused me a long time until I captured the HTTP request :(

@rishabhkumar92
Copy link

rishabhkumar92 commented Feb 1, 2025

@arkbriar I am working on upgrading promxy to implement native histogram ([change],(#696) discussion) and this is based on latest prometheus (post nov 2024)

I am facing the same issue but with very high step functions (like 3h). do find any resolution around this?

@arkbriar
Copy link
Author

arkbriar commented Feb 3, 2025

I am facing the same issue but with very high step functions (like 3h).

@rishabhkumar92 It was the same on my side. High steps are much easier for reproducing the issue, though I was able to reproduce with my tiny query with step of 500s.

do find any resolution around this?

Solution, no. I found only a workaround which I posted in the description.

A workaround to this is to align the start and end to step, which Grafana does. And the fact that Grafana always works while my program doesn't confused me a long time until I captured the HTTP request :(

@rishabhkumar92
Copy link

rishabhkumar92 commented Feb 3, 2025

Solution, no. I found only a workaround which I posted in #705 (comment).

@arkbriar There were 2 key things mentioned above:

did you find any workaround for the second case?

@arkbriar
Copy link
Author

arkbriar commented Feb 3, 2025

Other is around the jump which is in the current master too but not sure if there is any bug in this logic.

This is the trigger of the exact issue here: the delta isn't set correctly. The code is included in the current promxy's Prometheus version as well. You could maybe debug it and see if the delta is set to step?

@rishabhkumar92
Copy link

@arkbriar i validated that delta was indeed set correctly but problem was due to max lookback limit.

@arkbriar
Copy link
Author

arkbriar commented Feb 5, 2025

@arkbriar i validated that delta was indeed set correctly but problem was due to max lookback limit.

Sorry, I'm a bit confused. How the jump happens when delta is set correctly?

	t0 := t - b.delta

	if b.valueType != chunkenc.ValNone && t0 > b.lastTime {

@jacksontj
Copy link
Owner

I think I'm actually a bit lost on this error report. The subject seems to indicate that there are empty results with a large step (>300s); but I am able to get data with a 5000s step spread over the course of a day (equivalent upstream query Upstream 5000s
).

There is also some mention of time alignment with grafana; which I played around with the start/end times but seemingly can't get it to return an empty dataset either. Is it possible to create a repro case using some public datasource? If not, could we attach some trace log output (which would include the query and data)?

@arkbriar
Copy link
Author

arkbriar commented Feb 7, 2025

I think I'm actually a bit lost on this error report. The subject seems to indicate that there are empty results with a large step (>300s); but I am able to get data with a 5000s step spread over the course of a day (equivalent upstream query Upstream 5000s ).

There is also some mention of time alignment with grafana; which I played around with the start/end times but seemingly can't get it to return an empty dataset either. Is it possible to create a repro case using some public datasource? If not, could we attach some trace log output (which would include the query and data)?

Sorry for the confusion... I'm pretty sure I can reproduce it with my VM setup since I scripted the MRE. Let me have a try with the open data source.

@arkbriar
Copy link
Author

arkbriar commented Feb 10, 2025

There is also some mention of time alignment with grafana; which I played around with the start/end times but seemingly can't get it to return an empty dataset either. Is it possible to create a repro case using some public datasource? If not, could we attach some trace log output (which would include the query and data)?

I found I couldn't reproduce with the open datasource simply because it's a Proemtheus, which returns a result of aligned timestamps starting from the query's start so it avoids the problem. The branch will be correctly skipped if refTime == t, where refTime is the timestamp that promxy uses to read values from the pulled time series, and t is the first point that is larger or equal to refTime. When query start and the timestamp of the first point aligns with the step, which I mean (t_query_start - t_first_point) % step == 0, the branch is always skipped and a result will be popped.

However, in the case I was and am able to reproduce, timestamps don't align. FYI, the following is the line from the trace log with all the values.

value="{} =>\n0.03333333333333333 @[1736762400]\n0 @[1736764200]\n0 @[1736766000]\n0 @[1736767800]\n0 @[1736769600]\n0.03333333333333333 @[1736771400]\n0 @[1736773200]\n0 @[1736775000]\n0 @[1736776800]\n0.03333333333333333 @[1736778600]"

The query start is 1736607436000 in milliseconds. Thus, (1736762400000 - 1736607436000) % 1800000 = 164000 means the branch will always be entered. And since the delta in the iterator is set to 300s, the PeekPrev always fails because the prevTime is always -Inf (code).

I think this is a VictoriaMetrics specific problem. Let me see if there's an open VM datasource.

@arkbriar
Copy link
Author

Reproduced with the public VM playground.

promxy:
  server_groups:
    - static_configs:
        - targets: ["play.victoriametrics.com"]
      path_prefix: /select/0/prometheus
      scheme: https
      http_client:
        dial_timeout: 1s
        tls_config:
          insecure_skip_verify: true
  • query: rate(container_cpu_usage_seconds_total{container="alertmanager"}[30s])
  • query options:
    • start: 1w-ago (2025-02-04 05:46:38)
    • end: now (2025-02-11 05:46:38)
    • step: 1800s

Result from VM playground:

Image

Result from promxy: empty.

Image

Trace logs:

time="2025-02-11T13:48:53+08:00" level=debug msg="call rate(container_cpu_usage_seconds_total{container=\"alertmanager\"}[30s]) vector"
time="2025-02-11T13:48:53+08:00" level=debug msg="https://play.victoriametrics.com/select/0/prometheus" api=QueryRange query="rate(container_cpu_usage_seconds_total{container=\"alertmanager\"}[30s])" r="{2025-02-04 05:46:38 +0000 UTC 2025-02-11 05:46:38 +0000 UTC 30m0s}"
time="2025-02-11T13:48:53+08:00" level=trace msg="https://play.victoriametrics.com/select/0/prometheus" api=QueryRange error="<nil>" query="rate(container_cpu_usage_seconds_total{container=\"alertmanager\"}[30s])" r="{2025-02-04 05:46:38 +0000 UTC 2025-02-11 05:46:38 +0000 UTC 30m0s}" took=262.854375ms value="{cluster=\"sandbox\", container=\"alertmanager\", cpu=\"total\", id=\"/kubepods.slice/kubepods-besteffort.slice/kubepods-besteffort-pod1a637df7_1189_4db0_b1ea_68ba064c3e6d.slice/cri-containerd-6abb2902881645f6761eacbbd596e7e769bfcef6a9be4bbab801b3ad97df976e.scope\", image=\"docker.io/prom/alertmanager:v0.24.0\", instance=\"gke-sandbox-e2-standard-4-20250202084-5e775834-b6rz\", job=\"kubelet\", metrics_path=\"/metrics/cadvisor\", name=\"6abb2902881645f6761eacbbd596e7e769bfcef6a9be4bbab801b3ad97df976e\", namespace=\"prometheus-benchmark\", node=\"gke-sandbox-e2-standard-4-20250202084-5e775834-b6rz\", pod=\"prometheus-benchmark-prometheus-benchmark-vmalert-stable-5l2h5t\", prometheus=\"monitoring/monitoring-vmagent\"} =>\n0.032679016666666644 @[1739187000]\n0.02555798333333333 @[1739188800]\n0.025182733333333356 @[1739190600]\n0.021065550000000145 @[1739192400]\n0.020392950000000097 @[1739194200]\n0.027317916666666994 @[1739196000]\n0.019990966666666547 @[1739197800]\n0.022974849999999946 @[1739199600]\n0.022974183333333068 @[1739201400]\n0.02111256666666653 @[1739203200]\n0.02158591666666704 @[1739205000]\n0.022505533333333005 @[1739206800]\n0.022857716666665813 @[1739208600]\n0.026286433333333057 @[1739210400]\n0.02156463333333439 @[1739212200]\n0.023501683333332343 @[1739214000]\n0.023267716666667108 @[1739215800]\n0.01975614999999872 @[1739217600]\n0.023563983333332317 @[1739219400]\n0.023464083333332535 @[1739221200]\n0.02340859999999907 @[1739223000]\n0.026782049999998964 @[1739224800]\n0.02216576666666583 @[1739226600]\n0.01913684999999911 @[1739228400]\n0.023757316666664488 @[1739230200]\n0.02829146666666702 @[1739232000]\n0.02004301666666682 @[1739233800]\n0.020785300000000007 @[1739235600]\n0.02167980000000019 @[1739237400]\n0.023134699999999005 @[1739239200]\n0.02061428333333121 @[1739241000]\n0.018396533333331414 @[1739242800]\n0.025664516666665804 @[1739244600]\n0.02051421666666329 @[1739246400]\n0.023264433333330694 @[1739248200]\n0.01754038333333483 @[1739250000]\n0.015764933333328675 @[1739251800]\n{cluster=\"sandbox\", container=\"alertmanager\", cpu=\"total\", id=\"/kubepods.slice/kubepods-besteffort.slice/kubepods-besteffort-pod1c68cd26_9762_4465_bb5e_aa862f1d240c.slice/cri-containerd-472f381014c2a5aca6a29c9171d20ec8fbf5f6d32857420e45dd2d12e3c9772a.scope\", image=\"docker.io/prom/alertmanager:v0.24.0\", instance=\"gke-sandbox-e2-standard-4-20250202084-5e775834-d56q\", job=\"kubelet\", metrics_path=\"/metrics/cadvisor\", name=\"472f381014c2a5aca6a29c9171d20ec8fbf5f6d32857420e45dd2d12e3c9772a\", namespace=\"prometheus-benchmark\", node=\"gke-sandbox-e2-standard-4-20250202084-5e775834-d56q\", pod=\"prometheus-benchmark-prometheus-benchmark-vmalert-stable-679tsw\", prometheus=\"monitoring/monitoring-vmagent\"} =>\n0.020917516666668235 @[1738647000]\n0.021485083333330598 @[1738648800]\n0.01812568333333123 @[1738650600]\n0.01895326666666885 @[1738652400]\n0.020437199999999697 @[1738654200]\n0.018737349999999726 @[1738656000]\n0.019980933333332965 @[1738657800]\n0.013724149999999706 @[1738659600]\n0.016114216666665016 @[1738661400]\n0.020132166666667218 @[1738663200]\n0.020694649999995818 @[1738665000]\n0.01994368333332659 @[1738666800]\n0.0207525333333327 @[1738668600]\n0.01822701666666641 @[1738670400]\n0.020424566666664153 @[1738672200]\n0.018822716666666867 @[1738674000]\n0.020839316666668613 @[1738675800]\n0.025253383333332144 @[1738677600]\n0.026610583333331307 @[1738679400]\n0.02745311666666718 @[1738681200]\n0.02240231666666356 @[1738683000]\n0.021877483333332746 @[1738684800]\n0.022235616666671378 @[1738686600]\n0.02573980000000423 @[1738688400]\n0.02410701666666076 @[1738690200]\n0.02289696666666714 @[1738692000]\n0.024988216666664207 @[1738693800]\n0.018542300000005223 @[1738695600]\n0.021138616666667075 @[1738697400]\n0.024287999999993797 @[1738699200]\n0.016450449999986936 @[1738701000]\n0.017589916666671947 @[1738702800]\n0.014069500000005064 @[1738704600]\n0.017460283333336216 @[1738706400]\n0.019971433333330423 @[1738708200]\n0.019479616666664392 @[1738710000]\n0.019928333333336923 @[1738711800]\n0.025698333333336147 @[1738713600]\n0.024092866666660485 @[1738715400]\n0.016929433333340665 @[1738717200]\n0.019066533333337552 @[1738719000]\n0.01632683333333868 @[1738720800]\n0.019600900000007946 @[1738722600]\n0.01900656666666691 @[1738724400]\n0.017512366666672583 @[1738726200]\n0.013668983333324529 @[1738728000]\n0.01706414999998742 @[1738729800]\n0.022597333333336186 @[1738731600]\n0.020003883333326183 @[1738733400]\n0.026289983333329776 @[1738735200]\n0.02011720000000423 @[1738737000]\n0.020528466666655733 @[1738738800]\n0.017551783333328786 @[1738740600]\n0.023303616666665524 @[1738742400]\n0.03169876666665914 @[1738744200]\n0.03000130000000354 @[1738746000]\n0.030305650000006304 @[1738747800]\n0.024123200000000605 @[1738749600]\n0.016859450000007808 @[1738751400]\n0.02158039999999346 @[1738753200]\n0.022668250000000018 @[1738755000]\n0.01969823333332291 @[1738756800]\n0.02543635000000298 @[1738758600]\n0.020945566666644783 @[1738760400]\n0.026114266666672846 @[1738762200]\n{cluster=\"sandbox\", container=\"alertmanager\", cpu=\"total\", id=\"/kubepods.slice/kubepods-besteffort.slice/kubepods-besteffort-pod1ca23e10_46c1_43aa_9de4_4392cfa2eb4d.slice/cri-containerd-892e1ed07282affb8400f20a509b7f0042334ff3e5614e7358fe90e9fadd50a3.scope\", image=\"docker.io/prom/alertmanager:v0.24.0\", instance=\"gke-sandbox-e2-standard-4-20250202084-5e775834-pk4l\", job=\"kubelet\", metrics_path=\"/metrics/cadvisor\", name=\"892e1ed07282affb8400f20a509b7f0042334ff3e5614e7358fe90e9fadd50a3\", namespace=\"prometheus-benchmark\", node=\"gke-sandbox-e2-standard-4-20250202084-5e775834-pk4l\", pod=\"prometheus-benchmark-prometheus-benchmark-vmalert-lts-74fd9zsgv\", prometheus=\"monitoring/monitoring-vmagent\"} =>\n0.022579900000005183 @[1738647000]\n0.012792566666666972 @[1738648800]\n0.01565369999999954 @[1738650600]\n0.018829583333331356 @[1738652400]\n0.016695916666662924 @[1738654200]\n0.018517750000000888 @[1738656000]\n0.016090266666666745 @[1738657800]\n0.021576616666667783 @[1738659600]\n0.020383066666666613 @[1738661400]\n0.020014199999999014 @[1738663200]\n0.020113516666666935 @[1738665000]\n0.020139016666666974 @[1738666800]\n0.022817300000004554 @[1738668600]\n0.026407866666666755 @[1738670400]\n0.02094406666666752 @[1738672200]\n0.02389858333332692 @[1738674000]\n0.02392320000000533 @[1738675800]\n0.027415033333333363 @[1738677600]\n0.027713350000006663 @[1738679400]\n0.023856099999996636 @[1738681200]\n0.02418405000000045 @[1738683000]\n0.018232800000002197 @[1738684800]\n0.018894616666663446 @[1738686600]\n0.024239699999998265 @[1738688400]\n0.023878400000012335 @[1738690200]\n0.025865549999995588 @[1738692000]\n0.01437783333334058 @[1738693800]\n0.01847023333333103 @[1738695600]\n0.018981050000002143 @[1738697400]\n0.02573850000000372 @[1738699200]\n0.02427714999998898 @[1738701000]\n0.023488033333327014 @[1738702800]\n0.0221835833333292 @[1738704600]\n0.021186350000001162 @[1738706400]\n0.021644149999989773 @[1738708200]\n0.014894350000001092 @[1738710000]\n0.02058006666666188 @[1738711800]\n0.022788599999997435 @[1738713600]\n0.022787233333338007 @[1738715400]\n0.027227800000006634 @[1738717200]\n0.023487599999998564 @[1738719000]\n0.026769666666662792 @[1738720800]\n0.025153649999977764 @[1738722600]\n0.01732266666667783 @[1738724400]\n0.016600866666673635 @[1738726200]\n0.019061066666669527 @[1738728000]\n0.02014761666666042 @[1738729800]\n0.01877315000000029 @[1738731600]\n0.023290750000008607 @[1738733400]\n0.01693399999999201 @[1738735200]\n0.021256883333338313 @[1738737000]\n0.023866349999995387 @[1738738800]\n0.020127300000012838 @[1738740600]\n0.02085175000000466 @[1738742400]\n0.02136873333333824 @[1738744200]\n0.021882066666663983 @[1738746000]\n0.026603833333335086 @[1738747800]\n0.02142983333333177 @[1738749600]\n0.016146816666666078 @[1738751400]\n0.025512016666668084 @[1738753200]\n0.020112733333326104 @[1738755000]\n0.023248083333328395 @[1738756800]\n0.020968516666668317 @[1738758600]\n0.01953971666666803 @[1738760400]\n0.017602883333317245 @[1738762200]\n{cluster=\"sandbox\", container=\"alertmanager\", cpu=\"total\", id=\"/kubepods.slice/kubepods-besteffort.slice/kubepods-besteffort-pod2112da82_41a2_43fa_b0a5_402b060b77a4.slice/cri-containerd-0e5d5cbd239fd84a29616957557597ec3ea14535c83f77abbab6c87029c1e35c.scope\", image=\"docker.io/prom/alertmanager:v0.24.0\", instance=\"gke-sandbox-e2-standard-4-20250202084-5e775834-yui5\", job=\"kubelet\", metrics_path=\"/metrics/cadvisor\", name=\"0e5d5cbd239fd84a29616957557597ec3ea14535c83f77abbab6c87029c1e35c\", namespace=\"prometheus-benchmark\", node=\"gke-sandbox-e2-standard-4-20250202084-5e775834-yui5\", pod=\"prometheus-benchmark-prometheus-benchmark-vmalert-lts-74fdcmcjp\", prometheus=\"monitoring/monitoring-vmagent\"} =>\n0.04016348333333332 @[1738764000]\n0.01767145000000004 @[1738765800]\n0.01933393333333318 @[1738767600]\n0.020531950000000167 @[1738769400]\n0.019258616666666246 @[1738771200]\n0.021003666666666733 @[1738773000]\n0.017399183333333214 @[1738774800]\n0.0174815833333336 @[1738776600]\n0.01902750000000045 @[1738778400]\n0.015750849999999636 @[1738780200]\n0.01951358333333341 @[1738782000]\n0.015492900000000039 @[1738783800]\n0.017244033333333655 @[1738785600]\n0.016220750000000332 @[1738787400]\n0.015617949999998852 @[1738789200]\n0.020186950000000554 @[1738791000]\n0.021303216666666458 @[1738792800]\n0.0242124833333321 @[1738794600]\n0.021351333333332907 @[1738796400]\n0.022885866666666744 @[1738798200]\n0.023940016666667438 @[1738800000]\n0.018016150000001594 @[1738801800]\n0.02479406666666743 @[1738803600]\n0.018576883333332718 @[1738805400]\n0.023230583333332788 @[1738807200]\n0.012082350000000967 @[1738809000]\n0.022052000000000287 @[1738810800]\n0.01680023333333338 @[1738812600]\n0.016354733333334554 @[1738814400]\n0.019269583333330804 @[1738816200]\n0.010710099999998116 @[1738818000]\n0.01606133333333446 @[1738819800]\n0.01626655000000028 @[1738821600]\n0.015013950000002297 @[1738823400]\n0.018318350000000313 @[1738825200]\n0.013298699999999523 @[1738827000]\n0.01335873333333287 @[1738828800]\n0.015446300000000216 @[1738830600]\n0.015738183333333686 @[1738832400]\n0.01820508333333161 @[1738834200]\n0.02036846666666558 @[1738836000]\n0.015523783333336875 @[1738837800]\n0.017422549999999624 @[1738839600]\n0.020549683333331358 @[1738841400]\n0.023623283333332287 @[1738843200]\n0.022149799999999685 @[1738845000]\n0.021842083333334966 @[1738846800]\n0.02089525000000094 @[1738848600]\n0.02298646666666476 @[1738850400]\n0.021642300000000128 @[1738852200]\n0.016392849999999726 @[1738854000]\n0.01807648333333418 @[1738855800]\n0.0220506500000018 @[1738857600]\n0.01882143333333488 @[1738859400]\n0.020064383333332596 @[1738861200]\n0.026782300000002125 @[1738863000]\n0.02969705000000052 @[1738864800]\n0.02013331666666621 @[1738866600]\n0.018303933333330254 @[1738868400]\n0.020295016666667227 @[1738870200]\n0.018573383333333974 @[1738872000]\n0.020306300000000495 @[1738873800]\n0.021224849999998695 @[1738875600]\n0.018178533333328535 @[1738877400]\n0.020699033333335136 @[1738879200]\n0.021779316666667606 @[1738881000]\n0.01960678333333969 @[1738882800]\n0.019141033333335146 @[1738884600]\n0.023949416666672125 @[1738886400]\n0.019418700000005628 @[1738888200]\n0.021252916666662715 @[1738890000]\n0.022219766666671602 @[1738891800]\n0.023903516666670534 @[1738893600]\n0.01452395000000403 @[1738895400]\n0.017067066666671356 @[1738897200]\n0.018127133333337042 @[1738899000]\n0.018651666666664825 @[1738900800]\n0.018695016666659587 @[1738902600]\n0.02153970000000148 @[1738904400]\n0.0264587666666633 @[1738906200]\n0.025887283333334683 @[1738908000]\n0.019577466666669353 @[1738909800]\n0.014776150000003933 @[1738911600]\n0.02295246666666723 @[1738913400]\n0.018506633333337654 @[1738915200]\n0.02163036666666661 @[1738917000]\n0.017492966666668507 @[1738918800]\n0.018330616666670116 @[1738920600]\n0.020736516666662888 @[1738922400]\n0.018507949999995315 @[1738924200]\n0.02340241666666619 @[1738926000]\n0.018424499999999473 @[1738927800]\n{cluster=\"sandbox\", container=\"alertmanager\", cpu=\"total\", id=\"/kubepods.slice/kubepods-besteffort.slice/kubepods-besteffort-pod273dbdef_fa40_44ab_81c8_fb9448fb5dfc.slice/cri-containerd-9fe73f69e86d6cbb80ffc55f20c27a04a1585887976b15427010dff071bcecb0.scope\", image=\"docker.io/prom/alertmanager:v0.24.0\", instance=\"gke-sandbox-e2-standard-4-20250202084-5e775834-w3fu\", job=\"kubelet\", metrics_path=\"/metrics/cadvisor\", name=\"9fe73f69e86d6cbb80ffc55f20c27a04a1585887976b15427010dff071bcecb0\", namespace=\"prometheus-benchmark\", node=\"gke-sandbox-e2-standard-4-20250202084-5e775834-w3fu\", pod=\"prometheus-benchmark-prometheus-benchmark-vmalert-stable-6l2kt6\", prometheus=\"monitoring/monitoring-vmagent\"} =>\n0.02523303333333343 @[1738929600]\n0.0228178166666666 @[1738931400]\n0.018470783333333428 @[1738933200]\n0.020910249999999544 @[1738935000]\n0.022126016666666713 @[1738936800]\n0.02226814999999931 @[1738938600]\n0.024536050000000385 @[1738940400]\n0.020602466666666906 @[1738942200]\n0.027061450000000303 @[1738944000]\n0.0254477333333341 @[1738945800]\n0.015790766666666893 @[1738947600]\n0.022011033333332836 @[1738949400]\n0.02323096666666705 @[1738951200]\n0.021131500000001323 @[1738953000]\n0.02219573333333263 @[1738954800]\n0.015539766666665854 @[1738956600]\n0.022217399999999544 @[1738958400]\n0.022275066666666513 @[1738960200]\n0.022609283333332543 @[1738962000]\n0.0230039999999993 @[1738963800]\n0.023302016666667667 @[1738965600]\n0.02315326666666806 @[1738967400]\n0.025317716666666 @[1738969200]\n0.02482786666666925 @[1738971000]\n0.02545154999999871 @[1738972800]\n0.024166616666665655 @[1738974600]\n0.016478283333333364 @[1738976400]\n0.021541416666665706 @[1738978200]\n0.02172206666666625 @[1738980000]\n0.020646033333332526 @[1738981800]\n0.019041999999997946 @[1738983600]\n0.023383916666667424 @[1738985400]\n0.02573735000000094 @[1738987200]\n0.021268799999999526 @[1738989000]\n0.020470900000001773 @[1738990800]\n0.02209888333333462 @[1738992600]\n0.024627249999999396 @[1738994400]\n0.018675166666666125 @[1738996200]\n0.023107083333331956 @[1738998000]\n0.024282849999997323 @[1738999800]\n0.02211608333333288 @[1739001600]\n0.02645748333333131 @[1739003400]\n0.02498486666666698 @[1739005200]\n0.026722649999999248 @[1739007000]\n0.019845633333333505 @[1739008800]\n0.021939433333333605 @[1739010600]\n0.021346983333334416 @[1739012400]\n0.02128976666666631 @[1739014200]\n0.029445716666668887 @[1739016000]\n0.022562133333326528 @[1739017800]\n0.030795866666668795 @[1739019600]\n0.01752841666667185 @[1739021400]\n0.029871733333334306 @[1739023200]\n0.017668483333333523 @[1739025000]\n0.029526549999998982 @[1739026800]\n0.01580033333333025 @[1739028600]\n0.021152483333329048 @[1739030400]\n0.019104150000005878 @[1739032200]\n0.023000049999996008 @[1739034000]\n0.021680300000002716 @[1739035800]\n0.020976150000001324 @[1739037600]\n0.021390133333337266 @[1739039400]\n0.021487683333331613 @[1739041200]\n0.017571216666669897 @[1739043000]\n0.021933399999996557 @[1739044800]\n0.0215484333333355 @[1739046600]\n0.021198183333331143 @[1739048400]\n0.02491580000000037 @[1739050200]\n0.02214848333333066 @[1739052000]\n0.01722936666666707 @[1739053800]\n0.02123394999999467 @[1739055600]\n0.024862816666670066 @[1739057400]\n0.022008183333332453 @[1739059200]\n0.023134600000003048 @[1739061000]\n0.024426099999997557 @[1739062800]\n0.026866949999998724 @[1739064600]\n0.019267683333335603 @[1739066400]\n0.02434998333333927 @[1739068200]\n0.0225216666666635 @[1739070000]\n0.024593916666663062 @[1739071800]\n0.014331233333336968 @[1739073600]\n0.02617490000000089 @[1739075400]\n0.026442933333328256 @[1739077200]\n0.021865549999999227 @[1739079000]\n0.023848383333332397 @[1739080800]\n0.026825399999999413 @[1739082600]\n0.02245785000000069 @[1739084400]\n0.021869149999997717 @[1739086200]\n0.016827283333335195 @[1739088000]\n0.02101188333333539 @[1739089800]\n0.022479866666662927 @[1739091600]\n0.024307999999996353 @[1739093400]\n0.02584755000000314 @[1739095200]\n0.020721600000001672 @[1739097000]\n0.021337883333330865 @[1739098800]\n0.015235566666668395 @[1739100600]\n0.021676299999997657 @[1739102400]\n0.02056211666666362 @[1739104200]\n0.026957000000008217 @[1739106000]\n0.01732283333334029 @[1739107800]\n0.02343065000000024 @[1739109600]\n0.02092336666666294 @[1739111400]\n0.022193266666666506 @[1739113200]\n0.028304416666666537 @[1739115000]\n0.02537678333333133 @[1739116800]\n0.026788366666672423 @[1739118600]\n0.020711249999991802 @[1739120400]\n0.027873766666668114 @[1739122200]\n0.014950083333345295 @[1739124000]\n0.019857150000007096 @[1739125800]\n0.021392283333322364 @[1739127600]\n0.022072733333334326 @[1739129400]\n0.02675680000000587 @[1739131200]\n0.024136349999995824 @[1739133000]\n0.018322666666669343 @[1739134800]\n0.024962016666662142 @[1739136600]\n0.022022649999992913 @[1739138400]\n0.019765016666663845 @[1739140200]\n0.018106933333334987 @[1739142000]\n0.019018533333337473 @[1739143800]\n0.025033866666656954 @[1739145600]\n0.025926516666656123 @[1739147400]\n0.022792983333329176 @[1739149200]\n0.019630083333337704 @[1739151000]\n0.02463543333333291 @[1739152800]\n0.024462450000009996 @[1739154600]\n0.0320700666666653 @[1739156400]\n0.024272866666675934 @[1739158200]\n0.024952399999998914 @[1739160000]\n0.02681631666666059 @[1739161800]\n0.02322274999999839 @[1739163600]\n0.023571283333346096 @[1739165400]\n0.020826433333331805 @[1739167200]\n0.017657899999994696 @[1739169000]\n0.024054499999995944 @[1739170800]\n0.02886874999999236 @[1739172600]\n0.021658199999986513 @[1739174400]\n0.024902033333334354 @[1739176200]\n0.023196616666670403 @[1739178000]\n0.024932300000000397 @[1739179800]\n0.020706999999993057 @[1739181600]\n0.020593750000004244 @[1739183400]\n0.020576216666662126 @[1739185200]\n{cluster=\"sandbox\", container=\"alertmanager\", cpu=\"total\", id=\"/kubepods.slice/kubepods-besteffort.slice/kubepods-besteffort-pod58733a1d_f21b_4ed4_9179_c5a18784b66b.slice/cri-containerd-3a2500a3caa340d294d8c3163f6f653b54c9e1678c1a478376d47ac14fe74928.scope\", image=\"docker.io/prom/alertmanager:v0.24.0\", instance=\"gke-sandbox-e2-standard-4-20250202084-5e775834-ckxy\", job=\"kubelet\", metrics_path=\"/metrics/cadvisor\", name=\"3a2500a3caa340d294d8c3163f6f653b54c9e1678c1a478376d47ac14fe74928\", namespace=\"prometheus-benchmark\", node=\"gke-sandbox-e2-standard-4-20250202084-5e775834-ckxy\", pod=\"prometheus-benchmark-prometheus-benchmark-vmalert-vm-77954v67wn\", prometheus=\"monitoring/monitoring-vmagent\"} =>\n0.033653949999999946 @[1739187000]\n0.020629016666666663 @[1739188800]\n0.025302300000000125 @[1739190600]\n0.025189783333333556 @[1739192400]\n0.021970233333333054 @[1739194200]\n0.02755343333333305 @[1739196000]\n0.020964499999999477 @[1739197800]\n0.02423234999999977 @[1739199600]\n0.02048368333333315 @[1739201400]\n0.0187217333333327 @[1739203200]\n0.017972483333333383 @[1739205000]\n0.01790781666666703 @[1739206800]\n0.025442266666666078 @[1739208600]\n0.021571366666667775 @[1739210400]\n0.024465816666666265 @[1739212200]\n0.018915433333332506 @[1739214000]\n0.02410909999999831 @[1739215800]\n0.021092583333332488 @[1739217600]\n0.023142566666666652 @[1739219400]\n0.022825383333332637 @[1739221200]\n0.025978049999999562 @[1739223000]\n0.020421016666665535 @[1739224800]\n0.022936816666666953 @[1739226600]\n0.024715833333332663 @[1739228400]\n0.020226050000000367 @[1739230200]\n0.027268399999998867 @[1739232000]\n0.020777633333329958 @[1739233800]\n0.024246983333330262 @[1739235600]\n0.02757651666667016 @[1739237400]\n0.022773499999997664 @[1739239200]\n0.021570133333333765 @[1739241000]\n0.021250500000000252 @[1739242800]\n0.021195883333333162 @[1739244600]\n0.02133290000000064 @[1739246400]\n0.02211768333333263 @[1739248200]\n0.021797333333336156 @[1739250000]\n0.022458899999999934 @[1739251800]\n{cluster=\"sandbox\", container=\"alertmanager\", cpu=\"total\", id=\"/kubepods.slice/kubepods-besteffort.slice/kubepods-besteffort-pod748fbc9b_e60b_438c_9d1f_4743e53d3b86.slice/cri-containerd-5d3641e2056c343df11628aacb19b870400f328bf843847b1469097a39e1a7de.scope\", image=\"docker.io/prom/alertmanager:v0.24.0\", instance=\"gke-sandbox-e2-standard-4-20250202084-5e775834-ckxy\", job=\"kubelet\", metrics_path=\"/metrics/cadvisor\", name=\"5d3641e2056c343df11628aacb19b870400f328bf843847b1469097a39e1a7de\", namespace=\"prometheus-benchmark\", node=\"gke-sandbox-e2-standard-4-20250202084-5e775834-ckxy\", pod=\"prometheus-benchmark-prometheus-benchmark-vmalert-lts-65d92lxfd\", prometheus=\"monitoring/monitoring-vmagent\"} =>\n0.03811706666666659 @[1739187000]\n0.019209533333333202 @[1739188800]\n0.016997016666666552 @[1739190600]\n0.018400950000000194 @[1739192400]\n0.01753394999999974 @[1739194200]\n0.02639886666666674 @[1739196000]\n0.02068740000000086 @[1739197800]\n0.01917250000000005 @[1739199600]\n0.017793699999999527 @[1739201400]\n0.016950083333333053 @[1739203200]\n0.025562183333333148 @[1739205000]\n0.017303099999999936 @[1739206800]\n0.02163786666666662 @[1739208600]\n0.02556925000000092 @[1739210400]\n0.02615033333333372 @[1739212200]\n0.019840066666665733 @[1739214000]\n0.016744783333333166 @[1739215800]\n0.022403616666667858 @[1739217600]\n0.02283770000000042 @[1739219400]\n0.022563050000000355 @[1739221200]\n0.022408349999998713 @[1739223000]\n0.019999016666666116 @[1739224800]\n0.02106721666666734 @[1739226600]\n0.02880369999999933 @[1739228400]\n0.026484683333332745 @[1739230200]\n0.024547866666663747 @[1739232000]\n0.0207635666666647 @[1739233800]\n0.02169178333333169 @[1739235600]\n0.018060099999998632 @[1739237400]\n0.02051773333333434 @[1739239200]\n0.01961468333333111 @[1739241000]\n0.026670583333335194 @[1739242800]\n0.025047616666665818 @[1739244600]\n0.021138733333335342 @[1739246400]\n0.017989550000000538 @[1739248200]\n0.020229400000001382 @[1739250000]\n0.029291799999994813 @[1739251800]\n{cluster=\"sandbox\", container=\"alertmanager\", cpu=\"total\", id=\"/kubepods.slice/kubepods-besteffort.slice/kubepods-besteffort-pod964836e5_6438_4449_a013_6fd77e04c046.slice/cri-containerd-7f1d408f7c5368f84ba8b00c2173fe3301739784ca1dd927c88accbfe2fdf851.scope\", image=\"docker.io/prom/alertmanager:v0.24.0\", instance=\"gke-sandbox-e2-standard-4-20250202084-5e775834-lll4\", job=\"kubelet\", metrics_path=\"/metrics/cadvisor\", name=\"7f1d408f7c5368f84ba8b00c2173fe3301739784ca1dd927c88accbfe2fdf851\", namespace=\"prometheus-benchmark\", node=\"gke-sandbox-e2-standard-4-20250202084-5e775834-lll4\", pod=\"prometheus-benchmark-prometheus-benchmark-vmalert-vm-6cd55jc7cm\", prometheus=\"monitoring/monitoring-vmagent\"} =>\n0.026800683333333335 @[1738764000]\n0.01991293333333329 @[1738765800]\n0.016729016666666752 @[1738767600]\n0.01883421666666673 @[1738769400]\n0.02177671666666659 @[1738771200]\n0.019559616666666575 @[1738773000]\n0.020195816666666627 @[1738774800]\n0.012608933333333046 @[1738776600]\n0.018610116666667408 @[1738778400]\n0.01740263333333303 @[1738780200]\n0.023239700000000123 @[1738782000]\n0.02372341666666671 @[1738783800]\n0.023015216666666068 @[1738785600]\n0.016275483333333795 @[1738787400]\n0.023177533333334093 @[1738789200]\n0.024236600000000406 @[1738791000]\n0.026063066666667585 @[1738792800]\n0.0216360166666675 @[1738794600]\n0.022673200000000785 @[1738796400]\n0.02395593333333371 @[1738798200]\n0.014773549999999129 @[1738800000]\n0.015671816666665943 @[1738801800]\n0.02273926666666739 @[1738803600]\n0.01897968333333324 @[1738805400]\n0.024950483333333294 @[1738807200]\n0.023568016666666837 @[1738809000]\n0.017684516666666164 @[1738810800]\n0.0185656333333327 @[1738812600]\n0.02059590000000071 @[1738814400]\n0.021559400000001006 @[1738816200]\n0.021967050000000654 @[1738818000]\n0.01914846666666487 @[1738819800]\n0.016476299999999354 @[1738821600]\n0.019672433333334995 @[1738823400]\n0.021322200000001127 @[1738825200]\n0.021537833333331945 @[1738827000]\n0.01938433333333099 @[1738828800]\n0.023686049999999643 @[1738830600]\n0.020864433333330604 @[1738832400]\n0.013766233333331001 @[1738834200]\n0.020181050000000294 @[1738836000]\n0.02000871666666626 @[1738837800]\n0.021526416666669473 @[1738839600]\n0.023079250000000683 @[1738841400]\n0.015846366666664835 @[1738843200]\n0.02143505000000232 @[1738845000]\n0.01780233333333096 @[1738846800]\n0.01948414999999765 @[1738848600]\n0.02054166666666409 @[1738850400]\n0.025786883333330478 @[1738852200]\n0.01905176666666648 @[1738854000]\n0.02749778333333476 @[1738855800]\n0.02577524999999999 @[1738857600]\n0.02197073333333416 @[1738859400]\n0.01482734999999972 @[1738861200]\n0.025024099999995997 @[1738863000]\n0.02031931666666272 @[1738864800]\n0.02035041666667136 @[1738866600]\n0.024408249999995253 @[1738868400]\n0.0196265999999999 @[1738870200]\n0.020317416666663726 @[1738872000]\n0.019733766666665056 @[1738873800]\n0.018167416666665305 @[1738875600]\n0.022779833333333954 @[1738877400]\n0.021306250000005397 @[1738879200]\n0.019777433333327585 @[1738881000]\n0.023103166666669495 @[1738882800]\n0.02006345000000541 @[1738884600]\n0.020844416666667104 @[1738886400]\n0.017997216666663006 @[1738888200]\n0.01826691666666799 @[1738890000]\n0.02072333333333063 @[1738891800]\n0.021680899999993623 @[1738893600]\n0.016216066666667455 @[1738895400]\n0.019161216666664888 @[1738897200]\n0.020140533333331708 @[1738899000]\n0.021161500000001374 @[1738900800]\n0.023808466666673668 @[1738902600]\n0.020283950000005765 @[1738904400]\n0.021734116666668038 @[1738906200]\n0.01964450000000397 @[1738908000]\n0.017326349999999973 @[1738909800]\n0.024661283333330175 @[1738911600]\n0.016368116666664417 @[1738913400]\n0.01898909999999887 @[1738915200]\n0.018863866666667187 @[1738917000]\n0.01713924999999866 @[1738918800]\n0.022557399999997566 @[1738920600]\n0.019847866666668778 @[1738922400]\n0.01941698333333382 @[1738924200]\n0.01725221666667191 @[1738926000]\n0.023371016666669676 @[1738927800]\n{cluster=\"sandbox\", container=\"alertmanager\", cpu=\"total\", id=\"/kubepods.slice/kubepods-besteffort.slice/kubepods-besteffort-podb79ae181_6263_40eb_af13_484c266404cc.slice/cri-containerd-6e9f8c51471fd095a5c2c7bb6375028a85ad76e85a8bb14141e206ed3a3f9f1e.scope\", image=\"docker.io/prom/alertmanager:v0.24.0\", instance=\"gke-sandbox-e2-standard-4-20250202084-5e775834-wnpw\", job=\"kubelet\", metrics_path=\"/metrics/cadvisor\", name=\"6e9f8c51471fd095a5c2c7bb6375028a85ad76e85a8bb14141e206ed3a3f9f1e\", namespace=\"prometheus-benchmark\", node=\"gke-sandbox-e2-standard-4-20250202084-5e775834-wnpw\", pod=\"prometheus-benchmark-prometheus-benchmark-vmalert-vm-6cd555c9kq\", prometheus=\"monitoring/monitoring-vmagent\"} =>\n0.03540079999999991 @[1738929600]\n0.01962411666666668 @[1738931400]\n0.026752316666666807 @[1738933200]\n0.027676850000000287 @[1738935000]\n0.021588766666666478 @[1738936800]\n0.023908299999999844 @[1738938600]\n0.022300266666666364 @[1738940400]\n0.023560633333333195 @[1738942200]\n0.021077149999999278 @[1738944000]\n0.020854066666666428 @[1738945800]\n0.021093133333333944 @[1738947600]\n0.02085121666666699 @[1738949400]\n0.021995700000000323 @[1738951200]\n0.026405500000000377 @[1738953000]\n0.020350950000001453 @[1738954800]\n0.022273933333332253 @[1738956600]\n0.022170133333332842 @[1738958400]\n0.027404216666665586 @[1738960200]\n0.022086049999999583 @[1738962000]\n0.024119416666667347 @[1738963800]\n0.021426366666666277 @[1738965600]\n0.01826413333333221 @[1738967400]\n0.021080566666665846 @[1738969200]\n0.01764280000000061 @[1738971000]\n0.017662016666668022 @[1738972800]\n0.021743816666666287 @[1738974600]\n0.018452083333333272 @[1738976400]\n0.0231096999999977 @[1738978200]\n0.017257200000002134 @[1738980000]\n0.022757949999997133 @[1738981800]\n0.01708126666666582 @[1738983600]\n0.01830798333333329 @[1738985400]\n0.02576020000000199 @[1738987200]\n0.02334846666666408 @[1738989000]\n0.021032866666666906 @[1738990800]\n0.026907566666667056 @[1738992600]\n0.02489908333333233 @[1738994400]\n0.026825250000001688 @[1738996200]\n0.02009494999999788 @[1738998000]\n0.021176133333335657 @[1738999800]\n0.02199723333333547 @[1739001600]\n0.023787316666668328 @[1739003400]\n0.026322766666669394 @[1739005200]\n0.028288883333334524 @[1739007000]\n0.023231366666667932 @[1739008800]\n0.019147316666665876 @[1739010600]\n0.0213776166666662 @[1739012400]\n0.023416866666665707 @[1739014200]\n0.02024103333333566 @[1739016000]\n0.02599714999999681 @[1739017800]\n0.018416116666662673 @[1739019600]\n0.014762550000000374 @[1739021400]\n0.023042383333336146 @[1739023200]\n0.022820083333332755 @[1739025000]\n0.019966800000005 @[1739026800]\n0.022290766666666666 @[1739028600]\n0.024127449999999346 @[1739030400]\n0.022221016666670344 @[1739032200]\n0.021484816666664606 @[1739034000]\n0.017941816666666454 @[1739035800]\n0.021037566666670195 @[1739037600]\n0.02361159999999624 @[1739039400]\n0.025313500000000506 @[1739041200]\n0.022887183333333876 @[1739043000]\n0.02421075000000504 @[1739044800]\n0.020207366666666834 @[1739046600]\n0.02499156666666901 @[1739048400]\n0.019194283333331442 @[1739050200]\n0.01957903333333585 @[1739052000]\n0.020955049999997755 @[1739053800]\n0.026406333333337292 @[1739055600]\n0.02311219999999897 @[1739057400]\n0.021699216666668995 @[1739059200]\n0.023981699999997847 @[1739061000]\n0.021013050000002902 @[1739062800]\n0.017651666666665733 @[1739064600]\n0.023618049999997007 @[1739066400]\n0.01796518333333097 @[1739068200]\n0.02740486666666584 @[1739070000]\n0.025913649999999202 @[1739071800]\n0.020675966666666077 @[1739073600]\n0.021142483333339138 @[1739075400]\n0.02342986666666699 @[1739077200]\n0.023565349999997428 @[1739079000]\n0.024280033333328295 @[1739080800]\n0.021023283333336924 @[1739082600]\n0.02323511666666794 @[1739084400]\n0.02631375000000086 @[1739086200]\n0.023854516666665403 @[1739088000]\n0.020110799999997653 @[1739089800]\n0.023294366666664245 @[1739091600]\n0.0222486333333336 @[1739093400]\n0.025810900000002825 @[1739095200]\n0.018154216666668315 @[1739097000]\n0.021339883333333396 @[1739098800]\n0.019372099999994438 @[1739100600]\n0.02274336666666841 @[1739102400]\n0.021690783333338005 @[1739104200]\n0.020310399999993935 @[1739106000]\n0.02531883333333553 @[1739107800]\n0.023131566666658426 @[1739109600]\n0.02288418333334145 @[1739111400]\n0.023412866666664436 @[1739113200]\n0.02529373333333448 @[1739115000]\n0.01916001666666792 @[1739116800]\n0.022729866666668385 @[1739118600]\n0.020915333333338518 @[1739120400]\n0.022733216666665612 @[1739122200]\n0.020562533333319758 @[1739124000]\n0.018648399999998826 @[1739125800]\n0.020288716666664187 @[1739127600]\n0.019123866666677713 @[1739129400]\n0.02024823333334401 @[1739131200]\n0.018473666666659484 @[1739133000]\n0.028982383333338173 @[1739134800]\n0.020632933333339074 @[1739136600]\n0.01988178333334266 @[1739138400]\n0.022773116666667193 @[1739140200]\n0.01877549999999246 @[1739142000]\n0.018559066666663664 @[1739143800]\n0.017514899999999518 @[1739145600]\n0.02427983333333638 @[1739147400]\n0.026818533333334928 @[1739149200]\n0.017448716666664647 @[1739151000]\n0.025297116666676327 @[1739152800]\n0.020317633333327954 @[1739154600]\n0.021278916666657703 @[1739156400]\n0.022520016666673352 @[1739158200]\n0.021798000000004928 @[1739160000]\n0.021391016666666474 @[1739161800]\n0.022653333333331225 @[1739163600]\n0.021799616666673197 @[1739165400]\n0.023479916666671367 @[1739167200]\n0.019593666666666346 @[1739169000]\n0.021774500000007416 @[1739170800]\n0.02117275000000518 @[1739172600]\n0.022477783333336752 @[1739174400]\n0.013610049999988405 @[1739176200]\n0.021902966666675638 @[1739178000]\n0.02714258333333722 @[1739179800]\n0.021931566666641325 @[1739181600]\n0.0258543333333364 @[1739183400]\n0.027795933333330445 @[1739185200]\n{cluster=\"sandbox\", container=\"alertmanager\", cpu=\"total\", id=\"/kubepods.slice/kubepods-besteffort.slice/kubepods-besteffort-podba8caa1b_f730_4ac3_a3ce_677aa2cd27fa.slice/cri-containerd-d47703b69d919f3b335d18b560e3d7db7536633caa360cbf24c714250fe32750.scope\", image=\"docker.io/prom/alertmanager:v0.24.0\", instance=\"gke-sandbox-e2-standard-4-20250202084-5e775834-dd5k\", job=\"kubelet\", metrics_path=\"/metrics/cadvisor\", name=\"d47703b69d919f3b335d18b560e3d7db7536633caa360cbf24c714250fe32750\", namespace=\"prometheus-benchmark\", node=\"gke-sandbox-e2-standard-4-20250202084-5e775834-dd5k\", pod=\"prometheus-benchmark-prometheus-benchmark-vmalert-stable-6l4lj9\", prometheus=\"monitoring/monitoring-vmagent\"} =>\n0.022964433333333333 @[1738764000]\n0.02461968333333336 @[1738765800]\n0.026628733333333324 @[1738767600]\n0.025325266666666835 @[1738769400]\n0.020202050000000325 @[1738771200]\n0.0288778000000003 @[1738773000]\n0.027092266666665903 @[1738774800]\n0.0238135833333331 @[1738776600]\n0.024756583333333044 @[1738778400]\n0.030747449999999312 @[1738780200]\n0.028029966666666913 @[1738782000]\n0.024965233333333003 @[1738783800]\n0.029537066666665623 @[1738785600]\n0.02550196666666693 @[1738787400]\n0.019269216666665066 @[1738789200]\n0.02724975000000048 @[1738791000]\n0.023742133333333488 @[1738792800]\n0.025433283333332685 @[1738794600]\n0.029586616666665577 @[1738796400]\n0.01978605000000092 @[1738798200]\n0.02381436666666635 @[1738800000]\n0.028019900000000084 @[1738801800]\n0.0325374833333323 @[1738803600]\n0.020912633333330176 @[1738805400]\n0.018839216666666894 @[1738807200]\n0.02658644999999827 @[1738809000]\n0.023226049999997635 @[1738810800]\n0.027119999999998375 @[1738812600]\n0.024809350000001965 @[1738814400]\n0.02350180000000061 @[1738816200]\n0.025789899999999002 @[1738818000]\n0.023446400000000266 @[1738819800]\n0.02551821666666759 @[1738821600]\n0.028868516666663405 @[1738823400]\n0.01991329999999986 @[1738825200]\n0.024913633333335385 @[1738827000]\n0.023455166666667537 @[1738828800]\n0.02429694999999962 @[1738830600]\n0.027951466666668996 @[1738832400]\n0.018635966666666566 @[1738834200]\n0.020160249999999755 @[1738836000]\n0.023382116666668177 @[1738837800]\n0.022011300000000726 @[1738839600]\n0.01989361666666885 @[1738841400]\n0.02462355000000116 @[1738843200]\n0.02518356666666932 @[1738845000]\n0.025308816666673315 @[1738846800]\n0.024157500000001164 @[1738848600]\n0.023065166666666907 @[1738850400]\n0.021552666666669513 @[1738852200]\n0.02570031666666637 @[1738854000]\n0.02537890000000213 @[1738855800]\n0.02485506666666879 @[1738857600]\n0.027282466666671706 @[1738859400]\n0.018784799999995508 @[1738861200]\n0.023198549999998857 @[1738863000]\n0.024883749999996024 @[1738864800]\n0.028808349999993273 @[1738866600]\n0.02317721666666633 @[1738868400]\n0.026960733333339704 @[1738870200]\n0.026937049999999848 @[1738872000]\n0.02331493333333583 @[1738873800]\n0.024149199999995593 @[1738875600]\n0.022885716666663333 @[1738877400]\n0.027031433333331734 @[1738879200]\n0.02956816666666479 @[1738881000]\n0.02683590000000701 @[1738882800]\n0.024889699999994262 @[1738884600]\n0.02446424999999787 @[1738886400]\n0.02381159999999909 @[1738888200]\n0.022565949999996823 @[1738890000]\n0.018686450000003182 @[1738891800]\n0.019228899999999764 @[1738893600]\n0.02371416666666543 @[1738895400]\n0.022727033333330836 @[1738897200]\n0.020592183333330166 @[1738899000]\n0.018395383333336214 @[1738900800]\n0.02221023333333202 @[1738902600]\n0.021916383333336852 @[1738904400]\n0.022111216666667134 @[1738906200]\n0.017843200000000555 @[1738908000]\n0.02289861666666487 @[1738909800]\n0.025570549999997638 @[1738911600]\n0.024878399999996265 @[1738913400]\n0.02187295000000328 @[1738915200]\n0.02728348333333391 @[1738917000]\n0.025046183333332313 @[1738918800]\n0.019005283333338716 @[1738920600]\n0.01977426666666512 @[1738922400]\n0.02661191666666885 @[1738924200]\n0.02693179999999605 @[1738926000]\n0.01969258333333528 @[1738927800]\n{cluster=\"sandbox\", container=\"alertmanager\", cpu=\"total\", id=\"/kubepods.slice/kubepods-besteffort.slice/kubepods-besteffort-podc3f5e1ea_fc61_4f25_a977_45d39e19add0.slice/cri-containerd-70cb61c08b77522a7dceb8d522d9ad630882300487fa387268ca7a0672057388.scope\", image=\"docker.io/prom/alertmanager:v0.24.0\", instance=\"gke-sandbox-e2-standard-4-20250202084-5e775834-xjjl\", job=\"kubelet\", metrics_path=\"/metrics/cadvisor\", name=\"70cb61c08b77522a7dceb8d522d9ad630882300487fa387268ca7a0672057388\", namespace=\"prometheus-benchmark\", node=\"gke-sandbox-e2-standard-4-20250202084-5e775834-xjjl\", pod=\"prometheus-benchmark-prometheus-benchmark-vmalert-vm-6cd55xg4x2\", prometheus=\"monitoring/monitoring-vmagent\"} =>\n0.017327449999993406 @[1738647000]\n0.020863866666665367 @[1738648800]\n0.020564150000003185 @[1738650600]\n0.02274044999999963 @[1738652400]\n0.020729000000005725 @[1738654200]\n0.01695631666666486 @[1738656000]\n0.019473233333330123 @[1738657800]\n0.019214833333330718 @[1738659600]\n0.021927633333333082 @[1738661400]\n0.023304733333331266 @[1738663200]\n0.02150451666666413 @[1738665000]\n0.022737066666665365 @[1738666800]\n0.0220870166666676 @[1738668600]\n0.021550966666670016 @[1738670400]\n0.020700816666665862 @[1738672200]\n0.026761766666671367 @[1738674000]\n0.026246516666666744 @[1738675800]\n0.02410931666666632 @[1738677600]\n0.017817549999995207 @[1738679400]\n0.02338068333333467 @[1738681200]\n0.021497950000002673 @[1738683000]\n0.02366154999999708 @[1738684800]\n0.026617033333332075 @[1738686600]\n0.019077366666670058 @[1738688400]\n0.017536333333328002 @[1738690200]\n0.023948699999997793 @[1738692000]\n0.018593383333321375 @[1738693800]\n0.020286649999995156 @[1738695600]\n0.022870433333340164 @[1738697400]\n0.023603633333338318 @[1738699200]\n0.021761916666673643 @[1738701000]\n0.023869199999990088 @[1738702800]\n0.019374166666663466 @[1738704600]\n0.02117883333332126 @[1738706400]\n0.01912366666667064 @[1738708200]\n0.021673516666669456 @[1738710000]\n0.015605266666655855 @[1738711800]\n0.019706066666655413 @[1738713600]\n0.01743501666666513 @[1738715400]\n0.025538616666669137 @[1738717200]\n0.01862068333334719 @[1738719000]\n0.01743263333332834 @[1738720800]\n0.02513503333331452 @[1738722600]\n0.020886283333341756 @[1738724400]\n0.019461983333333894 @[1738726200]\n0.01909380000000359 @[1738728000]\n0.021033716666670442 @[1738729800]\n0.018852733333339224 @[1738731600]\n0.02198998333333293 @[1738733400]\n0.023062300000007478 @[1738735200]\n0.013995616666670685 @[1738737000]\n0.022134716666672223 @[1738738800]\n0.01949744999998681 @[1738740600]\n0.02278071666666316 @[1738742400]\n0.024198866666665708 @[1738744200]\n0.026464800000000347 @[1738746000]\n0.020989616666671887 @[1738747800]\n0.023480850000002343 @[1738749600]\n0.022774766666664923 @[1738751400]\n0.020191550000011677 @[1738753200]\n0.024043333333323366 @[1738755000]\n0.01793044999999438 @[1738756800]\n0.02296806666666574 @[1738758600]\n0.02446546666666715 @[1738760400]\n0.025939700000026277 @[1738762200]\n{cluster=\"sandbox\", container=\"alertmanager\", cpu=\"total\", id=\"/kubepods.slice/kubepods-besteffort.slice/kubepods-besteffort-podf59dcab2_ed63_47e8_9cd9_70c5dc1dacaf.slice/cri-containerd-ab762aa2914a4d24dcc7d7aa9801b8f93b5d38652fa5405fa23fea31d9630c32.scope\", image=\"docker.io/prom/alertmanager:v0.24.0\", instance=\"gke-sandbox-e2-standard-4-20250202084-5e775834-jnsm\", job=\"kubelet\", metrics_path=\"/metrics/cadvisor\", name=\"ab762aa2914a4d24dcc7d7aa9801b8f93b5d38652fa5405fa23fea31d9630c32\", namespace=\"prometheus-benchmark\", node=\"gke-sandbox-e2-standard-4-20250202084-5e775834-jnsm\", pod=\"prometheus-benchmark-prometheus-benchmark-vmalert-lts-74fdk4b2d\", prometheus=\"monitoring/monitoring-vmagent\"} =>\n0.03764691666666676 @[1738929600]\n0.020107683333333407 @[1738931400]\n0.02664864999999992 @[1738933200]\n0.01925173333333324 @[1738935000]\n0.017251650000000042 @[1738936800]\n0.02280186666666708 @[1738938600]\n0.025127466666666008 @[1738940400]\n0.021280283333333237 @[1738942200]\n0.019345766666666955 @[1738944000]\n0.01980923333333351 @[1738945800]\n0.01697756666666616 @[1738947600]\n0.022593566666666714 @[1738949400]\n0.02091111666666734 @[1738951200]\n0.018275249999999233 @[1738953000]\n0.023162516666665547 @[1738954800]\n0.021939216666665592 @[1738956600]\n0.020940100000001394 @[1738958400]\n0.015351550000000694 @[1738960200]\n0.022018866666665343 @[1738962000]\n0.025984999999999068 @[1738963800]\n0.024599999999999986 @[1738965600]\n0.019500433333333452 @[1738967400]\n0.019089133333333546 @[1738969200]\n0.022976183333332754 @[1738971000]\n0.01990126666666659 @[1738972800]\n0.016383483333332075 @[1738974600]\n0.018897666666667114 @[1738976400]\n0.01895113333333332 @[1738978200]\n0.018786483333334065 @[1738980000]\n0.01863059999999829 @[1738981800]\n0.013247216666665432 @[1738983600]\n0.018723850000003494 @[1738985400]\n0.0186214166666673 @[1738987200]\n0.01846256666666856 @[1738989000]\n0.01801623333333661 @[1738990800]\n0.01922424999999824 @[1738992600]\n0.013259366666666968 @[1738994400]\n0.023908616666665237 @[1738996200]\n0.0193058166666674 @[1738998000]\n0.018998483333333146 @[1738999800]\n0.020276449999998173 @[1739001600]\n0.016631916666669137 @[1739003400]\n0.016227766666668232 @[1739005200]\n0.023203249999998357 @[1739007000]\n0.01840430000000121 @[1739008800]\n0.01748138333333221 @[1739010600]\n0.019013366666668693 @[1739012400]\n0.020045083333332058 @[1739014200]\n0.020423599999999927 @[1739016000]\n0.01995006666666465 @[1739017800]\n0.019604766666664847 @[1739019600]\n0.019115083333334344 @[1739021400]\n0.01567649999999882 @[1739023200]\n0.016896666666669564 @[1739025000]\n0.01920714999999973 @[1739026800]\n0.02010773333333115 @[1739028600]\n0.019721116666664783 @[1739030400]\n0.020760683333332964 @[1739032200]\n0.02267855000000054 @[1739034000]\n0.015490233333336316 @[1739035800]\n0.01694363333332755 @[1739037600]\n0.019683516666661186 @[1739039400]\n0.017825633333336553 @[1739041200]\n0.0249908166666728 @[1739043000]\n0.014891066666662785 @[1739044800]\n0.021061550000005504 @[1739046600]\n0.02315051666666932 @[1739048400]\n0.020744649999998425 @[1739050200]\n0.015200483333334585 @[1739052000]\n0.020241616666665626 @[1739053800]\n0.020088583333335918 @[1739055600]\n0.019063049999999748 @[1739057400]\n0.017245299999998073 @[1739059200]\n0.016207200000000435 @[1739061000]\n0.01680584999999913 @[1739062800]\n0.021809983333332637 @[1739064600]\n0.020667916666669346 @[1739066400]\n0.02399239999999736 @[1739068200]\n0.015010516666666262 @[1739070000]\n0.023102349999999206 @[1739071800]\n0.01921080000000378 @[1739073600]\n0.021667600000000675 @[1739075400]\n0.019424049999997806 @[1739077200]\n0.020520316666663044 @[1739079000]\n0.019430933333334604 @[1739080800]\n0.016450400000000323 @[1739082600]\n0.019639483333336708 @[1739084400]\n0.018644766666663298 @[1739086200]\n0.019715816666666795 @[1739088000]\n0.018088583333337738 @[1739089800]\n0.020462483333335512 @[1739091600]\n0.01909261666666377 @[1739093400]\n0.023673749999996593 @[1739095200]\n0.01946903333333315 @[1739097000]\n0.016151716666665077 @[1739098800]\n0.020568116666663628 @[1739100600]\n0.024244233333327734 @[1739102400]\n0.01697663333333518 @[1739104200]\n0.019531533333330724 @[1739106000]\n0.019463666666661085 @[1739107800]\n0.019715133333329506 @[1739109600]\n0.02242264999999861 @[1739111400]\n0.0224091000000044 @[1739113200]\n0.019236233333337318 @[1739115000]\n0.01984941666667055 @[1739116800]\n0.01979389999999815 @[1739118600]\n0.022591949999999392 @[1739120400]\n0.01962101666666361 @[1739122200]\n0.02417086666666819 @[1739124000]\n0.019847766666665243 @[1739125800]\n0.017617099999999178 @[1739127600]\n0.021104716666665507 @[1739129400]\n0.01626051666667081 @[1739131200]\n0.019368499999988367 @[1739133000]\n0.02515183333333274 @[1739134800]\n0.016405566666662708 @[1739136600]\n0.014952099999997396 @[1739138400]\n0.01857284999999441 @[1739140200]\n0.01589574999999665 @[1739142000]\n0.017900333333333643 @[1739143800]\n0.02410061666666176 @[1739145600]\n0.01673520000000887 @[1739147400]\n0.019271966666671383 @[1739149200]\n0.0199224499999976 @[1739151000]\n0.021507500000006986 @[1739152800]\n0.017251183333337396 @[1739154600]\n0.023184516666666845 @[1739156400]\n0.01979153333333367 @[1739158200]\n0.016552616666679874 @[1739160000]\n0.01631003333333562 @[1739161800]\n0.022301999999990586 @[1739163600]\n0.025323983333328214 @[1739165400]\n0.020977116666654184 @[1739167200]\n0.02060599999999795 @[1739169000]\n0.02350821666665676 @[1739170800]\n0.02188858333332367 @[1739172600]\n0.01753801666667035 @[1739174400]\n0.019777849999991305 @[1739176200]\n0.022500400000005052 @[1739178000]\n0.016135249999994508 @[1739179800]\n0.018625249999998535 @[1739181600]\n0.018738533333331968 @[1739183400]\n0.02222556666667212 @[1739185200]\n{cluster=\"sandbox\", container=\"alertmanager\", cpu=\"total\", id=\"/kubepods.slice/kubepods-burstable.slice/kubepods-burstable-podb89491eb_6929_47f0_8754_10d6480c2f71.slice/cri-containerd-9d81f3bc99d3a7bd7e512297cc7008a8d5f3486a6fd503d7971e5cab575d8e92.scope\", image=\"docker.io/prom/alertmanager:v0.27.0\", instance=\"gke-sandbox-e2-standard-4-20250202084-5e775834-5m62\", job=\"kubelet\", metrics_path=\"/metrics/cadvisor\", name=\"9d81f3bc99d3a7bd7e512297cc7008a8d5f3486a6fd503d7971e5cab575d8e92\", namespace=\"monitoring\", node=\"gke-sandbox-e2-standard-4-20250202084-5e775834-5m62\", pod=\"vmalertmanager-main-0\", prometheus=\"monitoring/monitoring-vmagent\"} =>\n0.006862450000000002 @[1738929600]\n0.005217816666666645 @[1738931400]\n0.005007116666666711 @[1738933200]\n0.005201633333333315 @[1738935000]\n0.0048149833333333445 @[1738936800]\n0.004612933333333302 @[1738938600]\n0.004293216666666666 @[1738940400]\n0.005001533333333323 @[1738942200]\n0.004864950000000098 @[1738944000]\n0.004827433333333412 @[1738945800]\n0.0049106333333334366 @[1738947600]\n0.0051774166666668005 @[1738949400]\n0.006207733333333465 @[1738951200]\n0.005210800000000167 @[1738953000]\n0.005045966666666857 @[1738954800]\n0.005598216666666644 @[1738956600]\n0.005619166666666331 @[1738958400]\n0.0045912833333332514 @[1738960200]\n0.005462116666666361 @[1738962000]\n0.005050883333333426 @[1738963800]\n0.005128583333333363 @[1738965600]\n0.004745399999999715 @[1738967400]\n0.005374666666666883 @[1738969200]\n0.005282533333333106 @[1738971000]\n0.005314433333333094 @[1738972800]\n0.0045702333333333435 @[1738974600]\n0.005685499999999876 @[1738976400]\n0.004983000000000004 @[1738978200]\n0.005117833333333503 @[1738980000]\n0.004706066666666213 @[1738981800]\n0.0050621166666663464 @[1738983600]\n0.005365100000000211 @[1738985400]\n0.004644966666666051 @[1738987200]\n0.005244150000000521 @[1738989000]\n0.0045830166666661395 @[1738990800]\n0.004483266666665978 @[1738992600]\n0.004696816666666829 @[1738994400]\n0.005750599999999887 @[1738996200]\n0.004493500000000002 @[1738998000]\n0.004357950000000225 @[1738999800]\n0.004373633333333752 @[1739001600]\n0.004581783333333078 @[1739003400]\n0.004677033333333232 @[1739005200]\n0.004631083333332716 @[1739007000]\n0.004355416666666656 @[1739008800]\n0.004577583333333261 @[1739010600]\n0.004068933333332817 @[1739012400]\n0.004724983333333436 @[1739014200]\n0.0045339333333335695 @[1739016000]\n0.004471783333334163 @[1739017800]\n0.004387333333333269 @[1739019600]\n0.004626049999999774 @[1739021400]\n0.004962433333332683 @[1739023200]\n0.004241916666666156 @[1739025000]\n0.005502866666666743 @[1739026800]\n0.005060633333333915 @[1739028600]\n0.005889366666666737 @[1739030400]\n0.0052890666666665235 @[1739032200]\n0.005246550000000146 @[1739034000]\n0.005466616666667316 @[1739035800]\n0.005650966666667046 @[1739037600]\n0.00499288333333349 @[1739039400]\n0.00593201666666611 @[1739041200]\n0.005516033333333325 @[1739043000]\n0.005941966666667516 @[1739044800]\n0.0053844499999987265 @[1739046600]\n0.005140866666666474 @[1739048400]\n0.005747750000000451 @[1739050200]\n0.005169133333333775 @[1739052000]\n0.005049150000000206 @[1739053800]\n0.0052139666666657074 @[1739055600]\n0.005935016666666115 @[1739057400]\n0.00509050000000002 @[1739059200]\n0.005668566666668084 @[1739061000]\n0.005849783333333866 @[1739062800]\n0.004888633333333322 @[1739064600]\n0.0053404666666665435 @[1739066400]\n0.005340866666665533 @[1739068200]\n0.0053848166666663625 @[1739070000]\n0.004101150000000568 @[1739071800]\n0.004475866666666661 @[1739073600]\n0.004308549999999893 @[1739075400]\n0.004392799999999397 @[1739077200]\n0.004281766666665968 @[1739079000]\n0.004338016666666059 @[1739080800]\n0.004285099999998465 @[1739082600]\n0.004904916666665334 @[1739084400]\n0.004621116666667527 @[1739086200]\n0.004753283333333987 @[1739088000]\n0.005147116666665852 @[1739089800]\n0.004917999999999741 @[1739091600]\n0.004840533333333496 @[1739093400]\n0.005149999999999485 @[1739095200]\n0.00482601666666748 @[1739097000]\n0.0053052999999996095 @[1739098800]\n0.004562533333332415 @[1739100600]\n0.0049363333333341565 @[1739102400]\n0.005143499999998843 @[1739104200]\n0.005418533333335062 @[1739106000]\n0.004680766666666614 @[1739107800]\n0.004670516666665966 @[1739109600]\n0.00507690000000025 @[1739111400]\n0.007390616666666953 @[1739113200]\n0.004908499999999094 @[1739115000]\n0.00479608333333393 @[1739116800]\n0.004373000000000123 @[1739118600]\n0.004740299999999327 @[1739120400]\n0.004457583333332119 @[1739122200]\n0.005261666666666542 @[1739124000]\n0.004720566666666552 @[1739125800]\n0.004764216666666243 @[1739127600]\n0.005252416666667159 @[1739129400]\n0.004185283333333701 @[1739131200]\n0.004766399999999749 @[1739133000]\n0.004624916666667408 @[1739134800]\n0.005396749999999883 @[1739136600]\n0.005165850000001152 @[1739138400]\n0.005278400000001208 @[1739140200]\n0.005000499999999875 @[1739142000]\n0.005160283333333382 @[1739143800]\n0.00460565000000012 @[1739145600]\n0.005212033333335361 @[1739147400]\n0.005519383333330552 @[1739149200]\n0.005420783333333171 @[1739151000]\n0.0050104999999992595 @[1739152800]\n0.004759200000000874 @[1739154600]\n0.0055721500000004195 @[1739156400]\n0.0052374833333336335 @[1739158200]\n0.0048586666666665225 @[1739160000]\n0.004482933333334434 @[1739161800]\n0.00484835000000127 @[1739163600]\n0.004748683333336127 @[1739165400]\n0.004793616666665912 @[1739167200]\n0.0050621166666663464 @[1739169000]\n0.004766216666666878 @[1739170800]\n0.005104366666663888 @[1739172600]\n0.004878149999998035 @[1739174400]\n0.0047553999999991 @[1739176200]\n0.004532366666668016 @[1739178000]\n0.004517483333332469 @[1739179800]\n0.0047490666666665975 @[1739181600]\n0.005064966666664835 @[1739183400]\n0.004996316666669524 @[1739185200]\n0.006114133333331513 @[1739187000]\n0.005378199999999348 @[1739188800]\n0.005120166666665682 @[1739190600]\n0.005692199999998593 @[1739192400]\n0.005085466666669921 @[1739194200]\n0.0048987000000011 @[1739196000]\n0.005170950000001539 @[1739197800]\n0.005541066666667879 @[1739199600]\n0.0060862333333337425 @[1739201400]\n0.005131983333330936 @[1739203200]\n0.005646533333333537 @[1739205000]\n0.005056283333332582 @[1739206800]\n0.005464999999999994 @[1739208600]\n0.005815466666664785 @[1739210400]\n0.005111633333331156 @[1739212200]\n0.0059521333333312516 @[1739214000]\n0.005513233333336605 @[1739215800]\n0.004979366666664949 @[1739217600]\n0.005825499999999314 @[1739219400]\n0.005154383333331225 @[1739221200]\n0.004944366666666156 @[1739223000]\n0.005336950000003071 @[1739224800]\n0.00545440000000023 @[1739226600]\n0.005051566666664561 @[1739228400]\n0.004896549999997054 @[1739230200]\n0.005097183333331637 @[1739232000]\n0.006023016666665626 @[1739233800]\n0.005881483333333411 @[1739235600]\n0.005977916666665806 @[1739237400]\n0.005384183333334628 @[1739239200]\n0.005061950000000101 @[1739241000]\n0.005441749999999956 @[1739242800]\n0.004569133333332805 @[1739244600]\n0.004602749999999863 @[1739246400]\n0.0048996000000026164 @[1739248200]\n0.0050559666666686095 @[1739250000]\n0.005559433333329858 @[1739251800]\n{cluster=\"sandbox\", container=\"alertmanager\", cpu=\"total\", id=\"/kubepods.slice/kubepods-burstable.slice/kubepods-burstable-podbb871fe7_4691_4121_aa5b_2f1abe09783c.slice/cri-containerd-139170b1788b82929fe17d876678f4bed84c1a7e4c140da27b7ff56101eba31f.scope\", image=\"docker.io/prom/alertmanager:v0.27.0\", instance=\"gke-sandbox-e2-standard-4-20250202084-5e775834-pk4l\", job=\"kubelet\", metrics_path=\"/metrics/cadvisor\", name=\"139170b1788b82929fe17d876678f4bed84c1a7e4c140da27b7ff56101eba31f\", namespace=\"monitoring\", node=\"gke-sandbox-e2-standard-4-20250202084-5e775834-pk4l\", pod=\"vmalertmanager-main-0\", prometheus=\"monitoring/monitoring-vmagent\"} =>\n0.0033830833333335403 @[1738647000]\n0.0039638333333338474 @[1738648800]\n0.003621566666665406 @[1738650600]\n0.0033352499999997082 @[1738652400]\n0.004769216666664989 @[1738654200]\n0.004881583333332174 @[1738656000]\n0.0038378166666670193 @[1738657800]\n0.0038509000000014264 @[1738659600]\n0.0037760500000009263 @[1738661400]\n0.004342433333332943 @[1738663200]\n0.0038895666666671027 @[1738665000]\n0.0038175333333337375 @[1738666800]\n0.006753716666666302 @[1738668600]\n0.0052914000000005975 @[1738670400]\n0.0030677000000006653 @[1738672200]\n0.003652550000000095 @[1738674000]\n0.004463216666666389 @[1738675800]\n0.00423539999999889 @[1738677600]\n0.0026430166666671084 @[1738679400]\n0.004741800000001225 @[1738681200]\n0.004623049999999769 @[1738683000]\n0.004437250000000859 @[1738684800]\n0.005732583333334181 @[1738686600]\n0.00440249999999954 @[1738688400]\n0.004617666666666765 @[1738690200]\n0.004200133333334103 @[1738692000]\n0.004975016666666458 @[1738693800]\n0.004469216666666398 @[1738695600]\n0.004417099999998678 @[1738697400]\n0.0029407499999990704 @[1738699200]\n0.005149583333331975 @[1738701000]\n0.004560533333333675 @[1738702800]\n0.00282898333333416 @[1738704600]\n0.004023800000000696 @[1738706400]\n0.006084116666666735 @[1738708200]\n0.0039821499999997435 @[1738710000]\n0.005001799999998487 @[1738711800]\n0.0041526666666660125 @[1738713600]\n0.004528883333334003 @[1738715400]\n0.0038550000000024437 @[1738717200]\n0.002812183333332996 @[1738719000]\n0.004128966666667111 @[1738720800]\n0.005232933333331857 @[1738722600]\n0.003678966666666383 @[1738724400]\n0.003950599999999819 @[1738726200]\n0.0038745666666689734 @[1738728000]\n0.002716416666665585 @[1738729800]\n0.0037526166666680184 @[1738731600]\n0.005600949999999708 @[1738733400]\n0.005513699999998304 @[1738735200]\n0.004345250000001973 @[1738737000]\n0.004836366666665981 @[1738738800]\n0.003198266666663585 @[1738740600]\n0.004217183333332741 @[1738742400]\n0.003387983333330643 @[1738744200]\n0.004606316666668894 @[1738746000]\n0.004781916666665135 @[1738747800]\n0.00408826666666755 @[1738749600]\n0.004223633333333509 @[1738751400]\n0.003113949999999477 @[1738753200]\n0.004388849999998001 @[1738755000]\n0.004509949999999208 @[1738756800]\n0.00420846666666724 @[1738758600]\n0.002756966666667419 @[1738760400]\n0.0035632666666667017 @[1738762200]\n{cluster=\"sandbox\", container=\"alertmanager\", cpu=\"total\", id=\"/kubepods.slice/kubepods-burstable.slice/kubepods-burstable-podcdd4954e_2916_4cfb_a521_b4e73919d3d3.slice/cri-containerd-87f0178128a3e961037fa64d6c4de3242c61bac432a0fe418d0383d5c859e7e4.scope\", image=\"docker.io/prom/alertmanager:v0.27.0\", instance=\"gke-sandbox-e2-standard-4-20250202084-5e775834-pdsh\", job=\"kubelet\", metrics_path=\"/metrics/cadvisor\", name=\"87f0178128a3e961037fa64d6c4de3242c61bac432a0fe418d0383d5c859e7e4\", namespace=\"monitoring\", node=\"gke-sandbox-e2-standard-4-20250202084-5e775834-pdsh\", pod=\"vmalertmanager-main-0\", prometheus=\"monitoring/monitoring-vmagent\"} =>\n0.008610350000000004 @[1738764000]\n0.004691316666666682 @[1738765800]\n0.00496601666666668 @[1738767600]\n0.004601016666666702 @[1738769400]\n0.004388183333333255 @[1738771200]\n0.0048880500000000405 @[1738773000]\n0.004748649999999918 @[1738774800]\n0.004664766666666627 @[1738776600]\n0.0035660666666667376 @[1738778400]\n0.005571666666666649 @[1738780200]\n0.0040030500000000305 @[1738782000]\n0.00451446666666655 @[1738783800]\n0.004860349999999869 @[1738785600]\n0.004581983333333284 @[1738787400]\n0.0045689999999998085 @[1738789200]\n0.004746683333333361 @[1738791000]\n0.0039562833333330145 @[1738792800]\n0.004979166666666401 @[1738794600]\n0.004717716666666641 @[1738796400]\n0.004817233333333585 @[1738798200]\n0.0035799333333334476 @[1738800000]\n0.003787349999999871 @[1738801800]\n0.003945666666666625 @[1738803600]\n0.00540698333333296 @[1738805400]\n0.004615116666666571 @[1738807200]\n0.006366050000000219 @[1738809000]\n0.003940166666666774 @[1738810800]\n0.004880850000000218 @[1738812600]\n0.0044344999999997485 @[1738814400]\n0.0041247666666663465 @[1738816200]\n0.00448393333333333 @[1738818000]\n0.004341666666666318 @[1738819800]\n0.004536766666666381 @[1738821600]\n0.00456483333333324 @[1738823400]\n0.004431816666667032 @[1738825200]\n0.004696250000000646 @[1738827000]\n0.004567416666666683 @[1738828800]\n0.004139049999999618 @[1738830600]\n0.0041176499999996475 @[1738832400]\n0.0040312166666666375 @[1738834200]\n0.005652416666667174 @[1738836000]\n0.005345433333333934 @[1738837800]\n0.004185400000000073 @[1738839600]\n0.005085283333333261 @[1738841400]\n0.004621483333333269 @[1738843200]\n0.004626833333333972 @[1738845000]\n0.004451650000000503 @[1738846800]\n0.004006750000000162 @[1738848600]\n0.005735016666667055 @[1738850400]\n0.004706649999999968 @[1738852200]\n0.005311016666667001 @[1738854000]\n0.0049337833333330154 @[1738855800]\n0.004706550000000221 @[1738857600]\n0.005248299999999517 @[1738859400]\n0.0048331833333331055 @[1738861200]\n0.004685099999999428 @[1738863000]\n0.0050973333333331535 @[1738864800]\n0.0046413666666666135 @[1738866600]\n0.004333383333334003 @[1738868400]\n0.004550766666666087 @[1738870200]\n0.004189066666666008 @[1738872000]\n0.004563083333333869 @[1738873800]\n0.004266966666666387 @[1738875600]\n0.004272716666667027 @[1738877400]\n0.004495266666666945 @[1738879200]\n0.0043190000000000355 @[1738881000]\n0.003974049999999352 @[1738882800]\n0.0041251000000007325 @[1738884600]\n0.004703516666666019 @[1738886400]\n0.005860416666666879 @[1738888200]\n0.005480133333333015 @[1738890000]\n0.0027394166666681484 @[1738891800]\n0.0048289500000009864 @[1738893600]\n0.004437800000001365 @[1738895400]\n0.004714766666667932 @[1738897200]\n0.004218933333332112 @[1738899000]\n0.005687933333333225 @[1738900800]\n0.004307249999999385 @[1738902600]\n0.003903800000000501 @[1738904400]\n0.004153266666666392 @[1738906200]\n0.0039655999999998436 @[1738908000]\n0.004097616666666681 @[1738909800]\n0.004820900000000469 @[1738911600]\n0.004497633333333321 @[1738913400]\n0.004095800000000812 @[1738915200]\n0.004398216666667547 @[1738917000]\n0.004611916666666123 @[1738918800]\n0.004519750000000992 @[1738920600]\n0.004584633333333462 @[1738922400]\n0.0046698166666677325 @[1738924200]\n0.004652633333332309 @[1738926000]\n0.005605549999999463 @[1738927800]" warnings="[]"

@jacksontj
Copy link
Owner

Thanks for providing a repro case; SUPER helpful in these situations. So some bad news and good news.

Bad news: this is actually a known issue with VictoriaMetrics (where it doesn't return the correct timestamp) -- #202

Good news: there is a trivial workaround to this issue, I added a feature in promxy to pass in query parameters downstream and VM added a nocache param. So if you copy this section from the example config it works!

@rishabhkumar92
Copy link

@jacksontj is fix applicable only for victoria metrics backend?
I made this work with Mimir which is prometheus based backend by aligning lookback delta with interval here.

@jacksontj
Copy link
Owner

@jacksontj is fix applicable only for victoria metrics backend?

The fix I linked above only works on VM AFAIK. The underlying issue is that the downstream (VM in this case) isn't actually honoring the range from the query. To illustrate a bit; lets say the range query was from 100-200 with a step of 10. The API dictates (and prometheus implements) returning 100, 110, 120... through 200. VM has some logic internally to cache datapoints -- but will return "incorrect" times. So instead of the above VM might return something like 101, 111, 121... -- which is 1s "in the future". This mis-alignment is what causes the interaction with the lookback delta -- because the range query should have a datapoint EXACTLY at the time (no need for lookback).

Note: technically this means that VM (with caching enabled) is not conformant to prometheus

So if you are seeing similar issues in mimir I would expect that they have a similar caching/alignment issue. You'd be able to see this in the trace log results from promxy -- as the data returned from the downstream wouldn't align with the range/step that the query sent.

I'm not SUPER familiar with the specifics in mimir -- but this seems to be the case based on some searching I just did (seemingly this -- https://grafana.com/docs/mimir/latest/references/architecture/components/query-frontend/#caching).

So in VM there is an ability to disable this per-query (hence the no-cache query param); its unclear if mimir has that -- or if it requires the config flag.

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

No branches or pull requests

3 participants