15 lines
320 B
Go
Raw Permalink Normal View History

2021-12-04 16:42:11 +00:00
package metrics_test
import (
"net/http"
"github.com/VictoriaMetrics/metrics"
)
func ExampleWritePrometheus() {
// Export all the registered metrics in Prometheus format at `/metrics` http path.
http.HandleFunc("/metrics", func(w http.ResponseWriter, req *http.Request) {
metrics.WritePrometheus(w, true)
})
}