You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kratos/metrics/metrics.go

26 lines
504 B

4 years ago
package metrics
// Counter is metrics counter.
// Deprecated: use otel metrcis instead.
4 years ago
type Counter interface {
With(lvs ...string) Counter
Inc()
Add(delta float64)
}
// Gauge is metrics gauge.
// Deprecated: use otel metrcis instead.
4 years ago
type Gauge interface {
With(lvs ...string) Gauge
Set(value float64)
Add(delta float64)
Sub(delta float64)
}
// Observer is metrics observer.
// Deprecated: use otel metrcis instead.
4 years ago
type Observer interface {
With(lvs ...string) Observer
Observe(float64)
}