| 80 | } |
| 81 | |
| 82 | type instrumentedGate struct { |
| 83 | gate Gate |
| 84 | |
| 85 | max prometheus.Gauge |
| 86 | inflight prometheus.Gauge |
| 87 | duration *prometheus.HistogramVec |
| 88 | } |
| 89 | |
| 90 | func (g *instrumentedGate) Start(ctx context.Context) error { |
| 91 | start := time.Now() |
nothing calls this directly
no outgoing calls
no test coverage detected