(path, method string, statusCode int)
| 762 | } |
| 763 | |
| 764 | func (s *Server) recordHTTPMetric(path, method string, statusCode int) { |
| 765 | if s.httpReqCounter == nil { |
| 766 | return |
| 767 | } |
| 768 | s.httpReqCounter.WithLabelValues(path, method, strconv.Itoa(statusCode)).Inc() |
| 769 | } |
| 770 | |
| 771 | func (s *Server) initPrometheusMetrics() { |
| 772 | reg := prometheus.NewRegistry() |
no outgoing calls
no test coverage detected