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
I may have had a moment of idiocy, but I did dig and look repeatedly.
According to the etsy statsd timing spec timers are supposed to have sum aggregates aswell, but telegraf does not seem create these when writing to influx.
Proposal:
Current behavior:
Telegraf creates mean, upper, lower, percentiles, stddev and count but not sum for timings.
Desired behavior:
Create <field>_sum field to match etsy statsd spec
Use case:
It simplifies queries, because now in order to get the sum I have to <field>_mean * <field>_count which isn't the end of the world, but not ideal as it requires subqueries pretty quickly when trying to doaggregations.
The text was updated successfully, but these errors were encountered:
danielnelson
added
the
feat
Improvement on an existing feature such as adding a new setting/mode to an existing plugin
label
May 17, 2017
Feature Request
I may have had a moment of idiocy, but I did dig and look repeatedly.
According to the etsy statsd timing spec timers are supposed to have
sum
aggregates aswell, but telegraf does not seem create these when writing to influx.Proposal:
Current behavior:
Telegraf creates
mean
,upper
,lower
, percentiles,stddev
andcount
but notsum
for timings.Desired behavior:
Create
<field>_sum
field to match etsy statsd specUse case:
It simplifies queries, because now in order to get the sum I have to
<field>_mean * <field>_count
which isn't the end of the world, but not ideal as it requires subqueries pretty quickly when trying to doaggregations.The text was updated successfully, but these errors were encountered: