micro/metrics/prometheus
Prawn da4159513e
Metrics interface and Prometheus implementation (#1929)
* Metrics interface

* Prometheus implementation

* NoOp implementation

Co-authored-by: chris <chris@Profanity.local>
2020-08-18 08:27:50 +01:00
..
metric_family.go Metrics interface and Prometheus implementation (#1929) 2020-08-18 08:27:50 +01:00
metrics.go Metrics interface and Prometheus implementation (#1929) 2020-08-18 08:27:50 +01:00
README.md Metrics interface and Prometheus implementation (#1929) 2020-08-18 08:27:50 +01:00
reporter_test.go Metrics interface and Prometheus implementation (#1929) 2020-08-18 08:27:50 +01:00
reporter.go Metrics interface and Prometheus implementation (#1929) 2020-08-18 08:27:50 +01:00

Prometheus

A Prometheus "pull" based implementation of the metrics Reporter interface.

Capabilities

  • Go runtime metrics are handled natively by the Prometheus client library (CPU / MEM / GC / GoRoutines etc).
  • User-defined metrics are registered in the Prometheus client dynamically (they must be pre-registered, hence all of the faffing around in metric_family.go).
  • The metrics are made available on a Prometheus-compatible HTTP endpoint, which can be scraped at any time. This means that the user can very easily access stats even running locally as a standalone binary.
  • Requires a micro.Server parameter (from which it gathers the service name and version). These are included as tags with every metric.

Usage

    prometheusReporter := metrics.New(server)
    tags := metrics.Tags{"greeter": "Janos"}
    err := prometheusReporter.Count("hellos", 1, tags)
    if err != nil {
        fmt.Printf("Error setting a Count metric: %v", err)
    }