statsd_exporter
statsd_exporter copied to clipboard
StatsD to Prometheus metrics exporter
Similar to https://github.com/prometheus/statsd_exporter/issues/186, we have found another way to poison the `/metrics` endpoint. As we've started migrating to using the exporter, we found this codepath can break the statsd-exporter in...
Split from #438: in the regex match type, it is possible to use `$0` to reference the original metric name. Since the glob type _used_ to be translated to regular...
prometheus doesn't support cardinality explosion by default, so when applications send a lot of metrics by mistake both statsd exporter and prometheus can get overwhelmed and lead to statsd exporter...
This exporter is pretty stable, it would be nice to make it 1.0 with update stability for the mapping config file.
Use the [exporter toolkit](https://pkg.go.dev/github.com/prometheus/exporter-toolkit/web) to add support for TLS on the HTTP interface. See prometheus/graphite_exporter#175 for an example.
Hello all :wave: I've recently integrated `statsd_exporter` into a legacy service that is still using StatsD metrics, and I noticed that matching using the exact metric name doesn't seem to...
Now that we have more benchmarks, it would be good if CI ran benchmarks on all PR's and commented with the result and the benchcmp/benchstat output. Not sure how other...
Such as those sent by the Ruby client: https://github.com/prometheus/statsd_exporter/issues/109#issuecomment-616209202 this looks like an instance of #109 but raising the buffer size does not help. The whole logic of splitting a...
In statsd, the set type counts unique occurrences between flushes. This is not supported in statsd_exporter because "between flushes" is pretty meaningless in a pull system, especially if there are...
Hello, when calling `statsd_exporter --version` the output is printed to `stderr` instead of `stdout`. This can be verified by: ```sh statsd_exporter --version 2> /dev/null ``` which prints nothing on console....