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
Is there a way to set the time unit specifically for certain metrics?
E.g. I want meter1 to be per minute rate but meter2 per sec
Dropwizard metrics seemed to have dropped this feature at one point and wanted to let metrics reporter libraries to deal with it (like metrics-datadog).
So far my work around has been to make Datadog derive rates from count.
The text was updated successfully, but these errors were encountered:
xiaochuanyu
changed the title
Ability to set timeunit per metric
Ability to set time unit per metric
Feb 24, 2017
Hi @xiaochuanyu ! We currently only support setting the time unit for all metrics. Doing this for certain metrics would be possible with some additional configuration and implementation work.
Personally, I don't see a strong need for this feature, as 1) I find myself doing a lot of metric massaging downstream in Datadog anyway (e.g. applying the rate function as you mention) and 2) I like the consistency of having all metrics reported with one duration unit, as opposed to having engineers guess as to which metrics are in seconds vs minutes. That said, PRs are welcome so long as they don't break backward compatibility.
Is there a way to set the time unit specifically for certain metrics?
E.g. I want meter1 to be per minute rate but meter2 per sec
Dropwizard metrics seemed to have dropped this feature at one point and wanted to let metrics reporter libraries to deal with it (like metrics-datadog).
So far my work around has been to make Datadog derive rates from count.
The text was updated successfully, but these errors were encountered: