Pusher is an ingester server that accepts pushes.
| 35 | |
| 36 | // Pusher is an ingester server that accepts pushes. |
| 37 | type Pusher interface { |
| 38 | Push(context.Context, *cortexpb.WriteRequest) (*cortexpb.WriteResponse, error) |
| 39 | } |
| 40 | |
| 41 | type PusherAppender struct { |
| 42 | failedWrites prometheus.Counter |
no outgoing calls
no test coverage detected