You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the case of AWS cloudwatch, data has already been collected and aggregated over a 60 second period. Cloudwatch provides access to min, max, avg, sum, and sample count values for this 60 second period. I'd like a way to route these raw data points through l2met without any additional aggregation happening on them. For example, sending the following event to l2met:
The metrics would all have a source of elb018876.us-east-1d and would be timestamped at the value of measure.time (1366295100).
I'm not tied to the exact formatting of the above, I mainly wanted a concrete example to show the desired result of passing pre-aggregated metrics through l2met. This example seeks to use l2met not as an aggregation tool, but simply as a way to route structured log data to a metric storage service in a way that does not require the originating application to be tightly coupled to the metric storage and visualization service. i.e STDOUT plus drains.
The text was updated successfully, but these errors were encountered:
In the case of AWS cloudwatch, data has already been collected and aggregated over a 60 second period. Cloudwatch provides access to min, max, avg, sum, and sample count values for this 60 second period. I'd like a way to route these raw data points through l2met without any additional aggregation happening on them. For example, sending the following event to l2met:
Would produce the following metrics:
The metrics would all have a source of
elb018876.us-east-1d
and would be timestamped at the value ofmeasure.time
(1366295100).I'm not tied to the exact formatting of the above, I mainly wanted a concrete example to show the desired result of passing pre-aggregated metrics through l2met. This example seeks to use l2met not as an aggregation tool, but simply as a way to route structured log data to a metric storage service in a way that does not require the originating application to be tightly coupled to the metric storage and visualization service. i.e
STDOUT
plus drains.The text was updated successfully, but these errors were encountered: