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 wonder if there's a way to have a catch-all rule that saves the received metric to a file or to the stdout, so i can add track/add the unmatched metrics? I checked the statsd_exporter github and was unable to find all the possible actions there, maybe you know?
The text was updated successfully, but these errors were encountered:
At the moment, there is no such feature. You can get some insight by enabling debug logging, which logs all incoming events. However, this can be very high volume.
I think this is a good idea, but we need to be careful about the log volume. We should probably only log each metric once. This leaves open what should happen with metrics that come with their own tagging; I guess since we only allow matching on metric names, we would still only need to log once per metric name without loss in visibility? What would the path forward be for someone who receives and drops very bad metrics with unbounded cardinality, i.e. a different name each time?
For graphite exporter mappings i see there's a special action: "drop" for a catch-all rule that can discard the incoming that dont match.
I wonder if there's a way to have a catch-all rule that saves the received metric to a file or to the stdout, so i can add track/add the unmatched metrics? I checked the statsd_exporter github and was unable to find all the possible actions there, maybe you know?
The text was updated successfully, but these errors were encountered: