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
The text was updated successfully, but these errors were encountered:
nicolasgarnil
changed the title
Send Datadog tags to statsd [exometer_report_statsd reporter]
Send Datadog tags to statsd [exometer_report_statsd]
Aug 19, 2017
Passing tags in the update operation would be difficult. However, it would be possible to add tags as part of Extra for a given subscription entry, and extend the exometer_report_statsd module to look for a tags option and append those tags to the output line. One could also add a tags option when initializing a statsd reporter. Actually, both these could be implemented, and the exometer_report callback could check both for tags in Extra and in the reporter state.
Problem
The reporter exometer_report_statsd doesn't support including Datadog tags in the datagram which is sent to statsd.
Solution
Be able to pass the tags to
:exometer.update
as well as the metric value.E.g:
:exometer.update[:app_name, :webapp, :resp_time], %{value: 25, tags: [algorithm: "one"]}
The text was updated successfully, but these errors were encountered: