micro/meter
Василий Толстов eab1a1dd40 api/server: move to dedicated repo
Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
2021-01-20 01:21:15 +03:00
..
wrapper rename metrics to meter 2021-01-19 16:26:00 +03:00
README.md rename metrics to meter 2021-01-19 16:26:00 +03:00
noop.go api/server: move to dedicated repo 2021-01-20 01:21:15 +03:00
options.go api/server: move to dedicated repo 2021-01-20 01:21:15 +03:00
reporter.go api/server: move to dedicated repo 2021-01-20 01:21:15 +03:00
reporter_test.go api/server: move to dedicated repo 2021-01-20 01:21:15 +03:00

README.md

metrics

The metrics package provides a simple metrics "Reporter" interface which allows the user to submit counters, gauges and timings (along with key/value tags).

Implementations

  • Prometheus (pull): will be first
  • Prometheus (push): certainly achievable
  • InfluxDB: could quite easily be done
  • Telegraf: almost identical to the InfluxDB implementation
  • Micro: Could we provide metrics over Micro's server interface?

Todo

  • Include a handler middleware which uses the Reporter interface to generate per-request level metrics
    • Throughput
    • Errors
    • Duration