Replies: 3 comments
|
This may be related to #24421 @pront @jszwedko @thomasqueirozb thoughts? That seems like a safe PR, especially if its theory is sound? |
|
Jagged metrics from the Window boundary artifacts Fix: use a longer aggregation window to smooth out irregularities, or add a Multiple Vector instances without deduplication Fix: use a single Vector aggregator instance (not sidecar) for metrics aggregation, or use Prometheus remote_write with deduplication at the receiver. Flush interval vs scrape interval mismatch Fix: set aggregate flush interval to match or be a multiple of your scrape interval. The aggregate transform reset behavior Is the jaggedness periodic (spike every N seconds) or random? |
|
I was actually able to resolve this issue using #24421. The event time aggregation is what we needed to ensure that metrics are consistent with baseline metrics. Note, we did need to add a timestamp_shift to prevent the event time aggregation logic from overwriting data when reflushing buckets (more details in that PR). |


I was actually able to resolve this issue using #24421. The event time aggregation is what we needed to ensure that metrics are consistent with baseline metrics. Note, we did need to add a timestamp_shift to prevent the event time aggregation logic from overwriting data when reflushing buckets (more details in that PR).