mirror of
https://github.com/prometheus/prometheus.git
synced 2025-01-26 05:01:23 -08:00
Merge pull request #71 from prometheus/refactor/new-registry-api
The Prometheus Go client has a new handler API.
This commit is contained in:
commit
79fc056090
|
@ -30,10 +30,9 @@ var (
|
|||
|
||||
func StartServing(persistence metric.MetricPersistence) {
|
||||
gorest.RegisterService(api.NewMetricsService(persistence))
|
||||
exporter := registry.DefaultRegistry.YieldExporter()
|
||||
|
||||
http.Handle("/", gorest.Handle())
|
||||
http.Handle("/metrics.json", exporter)
|
||||
http.Handle("/metrics.json", registry.DefaultHandler)
|
||||
http.Handle("/static/", http.StripPrefix("/static/", http.FileServer(http.Dir("web/static"))))
|
||||
|
||||
go http.ListenAndServe(*listenAddress, nil)
|
||||
|
|
Loading…
Reference in a new issue