metrics/README.md
2019-04-08 17:10:39 +03:00

1.7 KiB

GoDoc Go Report

metrics - lightweight package for exporting metrics in Prometheus format

Features

  • Lightweight. Has minimal number of third-party dependencies and all these deps are small. See this article for details.
  • Easy to use. See the API docs.
  • Fast.

Limitations

Usage

import "github.com/VictoriaMetrics/metrics"
// ...
var (
	requestsTotal = metrics.NewCounter("requests_total")

	queueSize = metrics.NewGauge(`queue_size{queue="foobar"}`, func() float64 {
		return float64(foobarQueue.Len())
	})

	requestDuration = metrics.NewSummary(`requests_duration_seconds{handler="/my/super/handler"}`)
)
// ...
func requestHandler() {
	startTime := time.Now()
	// ...
	requestsTotal.Inc()
	requestDuration.UpdateDuration(startTime)
}

See docs for more info.

Users