RegisterInstrumentation on the given router.
(router *mux.Router)
| 577 | |
| 578 | // RegisterInstrumentation on the given router. |
| 579 | func RegisterInstrumentation(router *mux.Router) { |
| 580 | RegisterInstrumentationWithGatherer(router, prometheus.DefaultGatherer) |
| 581 | } |
| 582 | |
| 583 | // RegisterInstrumentationWithGatherer on the given router. |
| 584 | func RegisterInstrumentationWithGatherer(router *mux.Router, gatherer prometheus.Gatherer) { |
nothing calls this directly
no test coverage detected