(ctx context.Context, incr int64, options ...metric.AddOption)
| 26 | // IntCounter is metric.Int64Counter or metric.Int64UpDownCounter |
| 27 | type IntCounter interface { |
| 28 | Add(ctx context.Context, incr int64, options ...metric.AddOption) |
| 29 | } |
| 30 | |
| 31 | type MetricOption interface { |
no outgoing calls