metrics/README.md

63 lines
2.1 KiB
Markdown
Raw Normal View History

2019-04-08 16:29:16 +03:00
[![GoDoc](https://godoc.org/github.com/VictoriaMetrics/metrics?status.svg)](http://godoc.org/github.com/VictoriaMetrics/metrics)
[![Go Report](https://goreportcard.com/badge/github.com/VictoriaMetrics/metrics)](https://goreportcard.com/report/github.com/VictoriaMetrics/metrics)
2019-04-08 17:05:34 +03:00
# metrics - lightweight package for exporting metrics in Prometheus format
2019-04-08 16:29:16 +03:00
### Features
* Lightweight. Has minimal number of third-party dependencies and all these deps are small.
See [this article](https://medium.com/@valyala/stripping-dependency-bloat-in-victoriametrics-docker-image-983fb5912b0d) for details.
* Easy to use. See the [API docs](http://godoc.org/github.com/VictoriaMetrics/metrics).
* Fast.
### Limitations
* It doesn't implement advanced functionality from [github.com/prometheus/client_golang/prometheus](https://godoc.org/github.com/prometheus/client_golang/prometheus).
2019-04-08 16:37:53 +03:00
### Usage
```go
2019-04-08 17:05:34 +03:00
import "github.com/VictoriaMetrics/metrics"
// Register various time series.
// Time series name may contain labels in Prometheus format - see below.
2019-04-08 16:37:53 +03:00
var (
// Register counter without labels.
2019-04-08 16:37:53 +03:00
requestsTotal = metrics.NewCounter("requests_total")
// Register summary with a single label.
2019-04-08 21:11:48 +03:00
requestDuration = metrics.NewSummary(`requests_duration_seconds{handler="/my/super/handler"}`)
// Register gauge with two labels.
queueSize = metrics.NewGauge(`queue_size{queue="foobar",topic="baz"}`, func() float64 {
2019-04-08 16:37:53 +03:00
return float64(foobarQueue.Len())
})
)
2019-04-08 16:37:53 +03:00
2019-04-08 17:05:34 +03:00
// ...
2019-04-08 16:37:53 +03:00
func requestHandler() {
startTime := time.Now()
2019-04-08 17:05:34 +03:00
// ...
2019-04-08 16:37:53 +03:00
requestsTotal.Inc()
requestDuration.UpdateDuration(startTime)
}
// ...
// `/metrics` handler for exposing the registered metrics.
http.HandleFunc("/metrics", func(w http.ResponseWriter, req *http.Request) {
metrics.WritePrometheus(w, true)
})
2019-04-08 16:37:53 +03:00
```
See [docs](http://godoc.org/github.com/VictoriaMetrics/metrics) for more info.
2019-04-08 16:29:16 +03:00
### Users
* `Metrics` has been extracted from [VictoriaMetrics](https://github.com/VictoriaMetrics/VictoriaMetrics) sources.
See [this article](https://medium.com/devopslinks/victoriametrics-creating-the-best-remote-storage-for-prometheus-5d92d66787ac)
for more info about `VictoriaMetrics`.