11 lines
311 B
Go
11 lines
311 B
Go
package rate
|
|
|
|
import "github.com/armon/go-metrics/prometheus"
|
|
|
|
var Counters = []prometheus.CounterDefinition{
|
|
{
|
|
Name: []string{"rpc", "rate_limit", "log_dropped"},
|
|
Help: "Increments whenever a log that is emitted because an RPC exceeded a rate limit gets dropped because the output buffer is full.",
|
|
},
|
|
}
|