| 20 | }, []string{"operation", "status_code"}) |
| 21 | |
| 22 | type instrumentedTransport struct { |
| 23 | observer prometheus.ObserverVec |
| 24 | next http.RoundTripper |
| 25 | } |
| 26 | |
| 27 | func NewTransport(next http.RoundTripper) http.RoundTripper { |
| 28 | return instrumentedTransport{ |
nothing calls this directly
no outgoing calls
no test coverage detected