This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

1package main 2 3import ( 4 "github.com/prometheus/client_golang/prometheus" 5 "github.com/prometheus/client_golang/prometheus/promauto" 6) 7 8// HTTP metrics 9var ( 10 requestsTotal = promauto.NewCounterVec( 11 prometheus.CounterOpts{ 12 Name: "zoekt_dynamic_tangled_requests_total", 13 Help: "Total number of HTTP requests by status code, method, and route.", 14 }, 15 []string{"method", "route", "code"}, 16 ) 17)