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
Right now if you submit a counter from dogstream it just sends that value multiple times for the same timestamp. It should sum across before sending the metric.
The text was updated successfully, but these errors were encountered:
checks.datadog.Dogstream._aggregate() takes the median value for each second, regardless of whether a value is a counter or a gauge.
Thus, a single packet sent to datadog can include multiple values for a counter (at different seconds); however, all but one value per second will be discarded -- whereas for a counter, the correct behavior is clearly to sum them.
Right now if you submit a counter from dogstream it just sends that value multiple times for the same timestamp. It should sum across before sending the metric.
The text was updated successfully, but these errors were encountered: