mirror of
https://github.com/restic/rest-server.git
synced 2025-10-19 15:43:21 +00:00
dep ensure for Prometheus deps
This commit is contained in:
parent
4cd82b6802
commit
ff6270ab62
115 changed files with 7486 additions and 8793 deletions
7
vendor/github.com/prometheus/client_golang/examples/simple/main.go
generated
vendored
7
vendor/github.com/prometheus/client_golang/examples/simple/main.go
generated
vendored
|
@ -16,16 +16,15 @@ package main
|
|||
|
||||
import (
|
||||
"flag"
|
||||
"log"
|
||||
"net/http"
|
||||
|
||||
"github.com/prometheus/client_golang/prometheus/promhttp"
|
||||
"github.com/prometheus/client_golang/prometheus"
|
||||
)
|
||||
|
||||
var addr = flag.String("listen-address", ":8080", "The address to listen on for HTTP requests.")
|
||||
|
||||
func main() {
|
||||
flag.Parse()
|
||||
http.Handle("/metrics", promhttp.Handler())
|
||||
log.Fatal(http.ListenAndServe(*addr, nil))
|
||||
http.Handle("/metrics", prometheus.Handler())
|
||||
http.ListenAndServe(*addr, nil)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue