CloudWatch metric sink is not sending http_client_rtt_seconds
(aggregated histogram) metrics to CloudWatch
#21851
-
Hi Everyone, I'm running Vector 0.37.1 with a configuration that has:
I'm seeing an issue in which a metric that I can see being emitted for my HTTP Sink,
I looked through the code for the CloudWatch Metrics Sink and saw that these I have two questions around this:
Thanks in advance for the help! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Indeed, it looks like the AWS CloudWatch sink does not support aggregated histograms: vector/src/sinks/aws_cloudwatch_metrics/mod.rs Lines 271 to 308 in 3d7f06d It should probably log a warning or something when dropping those metrics. I agree it should support them; probably by converting each bucket into a separate counter. Would you want to open a feature request? |
Beta Was this translation helpful? Give feedback.
Indeed, it looks like the AWS CloudWatch sink does not support aggregated histograms:
vector/src/sinks/aws_cloudwatch_metrics/mod.rs
Lines 271 to 308 in 3d7f06d