graphite_exporter icon indicating copy to clipboard operation
graphite_exporter copied to clipboard

Server that accepts metrics via the Graphite protocol and exports them as Prometheus metrics

Results 33 graphite_exporter issues
Sort by recently updated
recently updated
newest added

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)....

enhancement

# 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,...

bug
help wanted

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.

enhancement
help wanted

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....

enhancement
help wanted

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....

enhancement

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...

bug
help wanted

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. *...

enhancement
help wanted
good first issue

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...

enhancement
help wanted
good first issue

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:...