graphite_exporter
graphite_exporter copied to clipboard
Server that accepts metrics via the Graphite protocol and exports them as Prometheus metrics
The graphite and statsd exporters diverged long ago, but basically do the same thing with different line processing and collection (all metrics are gauges and only use the latest value)....
# Summary: The exporter remembers metrics by Graphite name. It is possible to get into situations where multiple samples (graphite metrics) result in the same Prometheus metric. At the moment,...
It would be useful to support the Graphite [Pickle protocol](https://graphite.readthedocs.io/en/latest/feeding-carbon.html#the-pickle-protocol). Looks like there is a [Go library](https://github.com/lomik/graphite-pickle) that does this already. Shouldn't be to hard to implement.
Break-out from #80: The exporter's metric parsing currently fails if any component of the Graphite metric name contains underscores, unless there is a mapping that constructs a valid Prometheus name....
The graphite exporter keeps the metrics for up to 5 minutes. It even records the time in `Timestamp`. But it doesn't export the time it received the metrics to Prometheus....
The results from this issue were broken up into several issues. The part that remains here is: * graphite_exporter should implement a counter of rejected metrics and expose it as...
Breakout from #80: * Provide examples using regex not just glob in the documentation * Provide an example using a catch-all regex for metrics not matching an existing regex. *...
Hi all: I tried graphite_exporter for the first time. I have graphite and graphite_exporter running on different hosts already, but how can i send the metrics which graphite received to...
Propagating changes from prometheus/prometheus default branch.
Hi, I'm using graphite_exporter `0.15.0` successfully with the following simple mapping file: ``` mappings: - match: cback.*.summary.*.* name: cback_summary_$3 labels: group: $1 role: $2 - match: cback.*.*.*.* name: cback_job_$4 labels:...