summaryrefslogtreecommitdiff
path: root/prometheus.go
blob: c9ac835da78198697e1489c9cf033c28386ae3fb (plain)
1
2
3
4
5
6
7
8
9
10
11
package main

import (
	"net/http"

	"github.com/prometheus/client_golang/prometheus"
)

func init() {
	http.Handle("/metrics", prometheus.Handler())
}