2019-09-08 14:50:30 +03:00
[![Build Status ](https://github.com/VictoriaMetrics/metrics/workflows/main/badge.svg )](https://github.com/VictoriaMetrics/metrics/actions)
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-11 12:59:53 +03:00
[![codecov ](https://codecov.io/gh/VictoriaMetrics/metrics/branch/master/graph/badge.svg )](https://codecov.io/gh/VictoriaMetrics/metrics)
2019-04-08 16:29:16 +03:00
2019-04-11 13:07:29 +03:00
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.
2019-06-01 23:26:53 +03:00
* Allows exporting distinct metric sets via distinct endpoints. See [Set ](http://godoc.org/github.com/VictoriaMetrics/metrics#Set ).
2019-11-23 14:04:24 +03:00
* Supports [easy-to-use histograms ](http://godoc.org/github.com/VictoriaMetrics/metrics#Histogram ), which just work without any tuning.
2019-11-27 15:01:15 +03:00
Read more about VictoriaMetrics histograms at [this article ](https://medium.com/@valyala/improving-histogram-usability-for-prometheus-and-grafana-bc7e5df0e350 ).
2019-04-08 16:29:16 +03:00
### Limitations
2019-04-10 16:16:34 +03:00
* It doesn't implement advanced functionality from [github.com/prometheus/client_golang ](https://godoc.org/github.com/prometheus/client_golang ).
2019-04-08 16:29:16 +03:00
2019-04-08 16:37:53 +03:00
### Usage
```go
2019-04-08 17:05:34 +03:00
import "github.com/VictoriaMetrics/metrics"
2019-04-10 15:14:47 +03:00
// Register various time series.
// Time series name may contain labels in Prometheus format - see below.
2019-04-08 16:37:53 +03:00
var (
2019-04-10 15:14:47 +03:00
// Register counter without labels.
2019-04-08 16:37:53 +03:00
requestsTotal = metrics.NewCounter("requests_total")
2019-04-10 15:14:47 +03:00
// Register summary with a single label.
2019-04-10 17:24:35 +03:00
requestDuration = metrics.NewSummary(`requests_duration_seconds{path="/foobar/baz"}`)
2019-04-08 21:11:48 +03:00
2019-04-10 15:14:47 +03:00
// 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-11-23 14:04:24 +03:00
// Register histogram with a single label.
responseSize = metrics.NewHistogram(`response_size{path="/foo/bar"}`)
2019-04-10 15:14:47 +03:00
)
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() {
2019-04-10 17:24:35 +03:00
// Increment requestTotal counter.
2019-04-08 16:37:53 +03:00
requestsTotal.Inc()
2019-04-10 17:24:35 +03:00
startTime := time.Now()
processRequest()
// Update requestDuration summary.
2019-04-08 16:37:53 +03:00
requestDuration.UpdateDuration(startTime)
2019-11-23 14:04:24 +03:00
// Update responseSize histogram.
responseSize.Update(responseSize)
2019-04-08 16:37:53 +03:00
}
2019-04-08 20:51:06 +03:00
2019-04-10 17:24:35 +03:00
// Expose the registered metrics at `/metrics` path.
2019-04-08 20:51:06 +03:00
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` .
2019-04-10 16:16:34 +03:00
### FAQ
#### Why the `metrics` API isn't compatible with `github.com/prometheus/client_golang`?
Because the `github.com/prometheus/client_golang` is too complex and is hard to use.
#### Why the `metrics.WritePrometheus` doesn't expose documentation for each metric?
Because this documentation is ignored by Prometheus. The documentation is for users.
2022-07-20 12:50:27 +03:00
Just give [meaningful names to the exported metrics ](https://prometheus.io/docs/practices/naming/#metric-names )
or add comments in the source code or in other suitable place explaining each metric exposed from your application.
2019-04-11 12:59:53 +03:00
#### How to implement [CounterVec](https://godoc.org/github.com/prometheus/client_golang/prometheus#CounterVec) in `metrics`?
Just use [GetOrCreateCounter ](http://godoc.org/github.com/VictoriaMetrics/metrics#GetOrCreateCounter )
2021-02-17 02:17:17 +03:00
instead of `CounterVec.With` . See [this example ](https://pkg.go.dev/github.com/VictoriaMetrics/metrics#example-Counter-Vec ) for details.
2019-11-23 14:04:24 +03:00
#### Why [Histogram](http://godoc.org/github.com/VictoriaMetrics/metrics#Histogram) buckets contain `vmrange` labels instead of `le` labels like in Prometheus histograms?
2021-03-18 19:49:19 +03:00
Buckets with `vmrange` labels occupy less disk space compared to Promethes-style buckets with `le` labels,
2019-11-23 14:04:24 +03:00
because `vmrange` buckets don't include counters for the previous ranges. [VictoriaMetrics ](https://github.com/VictoriaMetrics/VictoriaMetrics ) provides `prometheus_buckets`
function, which converts `vmrange` buckets to Prometheus-style buckets with `le` labels. This is useful for building heatmaps in Grafana.
Additionally, its' `histogram_quantile` function transparently handles histogram buckets with `vmrange` labels.