-
I’m using Vector with Prometheus Remote Write (beta) as a source and InfluxDB v2 as a sink. Prometheus sends gauge metrics (e.g., cpu_usage) every 15 seconds, but I want to batch these data points over 2 minutes before writing them to InfluxDB. Current Behavior:
Attempted Solutions:
Configuration Example:
Question: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Info: Therefore, this behavior is correct and intentional. Possible Solutions:
Example:
|
Beta Was this translation helpful? Give feedback.
Info:
Batching generally means that timestamp information will be aggregated away, and metric-specific compression will be applied to improve pipeline performance.
Therefore, this behavior is correct and intentional.
Possible Solutions:
→ This calculates the respective value depending on the selected mode.
→ Depending on the use case, important information might be lost.
→ This doesn't align with Vector's intended purpose, but it enables the use of buffer …