forked from TrueCloudLab/frostfs-node
Dmitrii Stepanov
03aa210145
To unify label naming all lable keys and other consts are moved to one file. Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
73 lines
2.1 KiB
Go
73 lines
2.1 KiB
Go
package metrics
|
|
|
|
import (
|
|
"strconv"
|
|
"time"
|
|
|
|
morphmetrics "git.frostfs.info/TrueCloudLab/frostfs-node/pkg/morph/metrics"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-observability/metrics"
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
)
|
|
|
|
type morphClientMetrics struct {
|
|
switchCount prometheus.Counter
|
|
lastBlock prometheus.Gauge
|
|
notificationCount *prometheus.CounterVec
|
|
invokeDuration *prometheus.HistogramVec
|
|
}
|
|
|
|
func NewMorphClientMetrics() morphmetrics.Register {
|
|
return &morphClientMetrics{
|
|
switchCount: metrics.NewCounter(prometheus.CounterOpts{
|
|
Namespace: namespace,
|
|
Subsystem: morphSubsystem,
|
|
Name: "switches_total",
|
|
Help: "Number of endpoint switches",
|
|
}),
|
|
lastBlock: metrics.NewGauge(prometheus.GaugeOpts{
|
|
Namespace: namespace,
|
|
Subsystem: morphSubsystem,
|
|
Name: "last_block",
|
|
Help: "Index of the last received block",
|
|
}),
|
|
notificationCount: metrics.NewCounterVec(prometheus.CounterOpts{
|
|
Namespace: namespace,
|
|
Subsystem: morphSubsystem,
|
|
Name: "notifications_total",
|
|
Help: "Number of notifications received by notification type",
|
|
}, []string{notificationTypeLabel}),
|
|
invokeDuration: metrics.NewHistogramVec(prometheus.HistogramOpts{
|
|
Namespace: namespace,
|
|
Subsystem: morphSubsystem,
|
|
Name: "invoke_duration_seconds",
|
|
Help: "Cummulative duration of contract invocations",
|
|
}, []string{invokeTypeLabel, contractLabel, methodLabel, successLabel}),
|
|
}
|
|
}
|
|
|
|
func (m *morphClientMetrics) IncSwitchCount() {
|
|
m.switchCount.Inc()
|
|
}
|
|
|
|
func (m *morphClientMetrics) SetLastBlock(index uint32) {
|
|
m.lastBlock.Set(float64(index))
|
|
}
|
|
|
|
func (m *morphClientMetrics) IncNotificationCount(typ string) {
|
|
m.notificationCount.With(
|
|
prometheus.Labels{
|
|
notificationTypeLabel: typ,
|
|
},
|
|
).Inc()
|
|
}
|
|
|
|
func (m *morphClientMetrics) ObserveInvoke(typ string, contract string, method string, success bool, d time.Duration) {
|
|
m.invokeDuration.With(
|
|
prometheus.Labels{
|
|
invokeTypeLabel: typ,
|
|
contractLabel: contract,
|
|
methodLabel: method,
|
|
successLabel: strconv.FormatBool(success),
|
|
},
|
|
).Observe(d.Seconds())
|
|
}
|