475fe0eede
* Add token creation counters. * Created a utility to change TTL to bucket name. * Add counter covering token creation for response wrapping. * Fix namespace label, with a new utility function.
88 lines
2.6 KiB
Go
88 lines
2.6 KiB
Go
package metricsutil
|
|
|
|
import (
|
|
"strings"
|
|
"time"
|
|
|
|
metrics "github.com/armon/go-metrics"
|
|
"github.com/hashicorp/vault/helper/namespace"
|
|
)
|
|
|
|
// ClusterMetricSink serves as a shim around go-metrics
|
|
// and inserts a "cluster" label.
|
|
//
|
|
// It also provides a mechanism to limit the cardinality of the labels on a gauge
|
|
// (at each reporting interval, which isn't sufficient if there is variability in which
|
|
// labels are the top N) and a backoff mechanism for gauge computation.
|
|
type ClusterMetricSink struct {
|
|
// ClusterName is either the cluster ID, or a name provided
|
|
// in the telemetry configuration stanza.
|
|
ClusterName string
|
|
|
|
MaxGaugeCardinality int
|
|
GaugeInterval time.Duration
|
|
|
|
// Sink is the go-metrics sink to send to
|
|
Sink metrics.MetricSink
|
|
}
|
|
|
|
// Convenience alias
|
|
type Label = metrics.Label
|
|
|
|
func (m *ClusterMetricSink) SetGaugeWithLabels(key []string, val float32, labels []Label) {
|
|
m.Sink.SetGaugeWithLabels(key, val,
|
|
append(labels, Label{"cluster", m.ClusterName}))
|
|
}
|
|
|
|
func (m *ClusterMetricSink) IncrCounterWithLabels(key []string, val float32, labels []Label) {
|
|
m.Sink.IncrCounterWithLabels(key, val,
|
|
append(labels, Label{"cluster", m.ClusterName}))
|
|
}
|
|
|
|
func (m *ClusterMetricSink) AddSampleWithLabels(key []string, val float32, labels []Label) {
|
|
m.Sink.AddSampleWithLabels(key, val,
|
|
append(labels, Label{"cluster", m.ClusterName}))
|
|
}
|
|
|
|
func (m *ClusterMetricSink) AddDurationWithLabels(key []string, d time.Duration, labels []Label) {
|
|
val := float32(d) / float32(time.Millisecond)
|
|
m.AddSampleWithLabels(key, val, labels)
|
|
}
|
|
|
|
func (m *ClusterMetricSink) MeasureSinceWithLabels(key []string, start time.Time, labels []Label) {
|
|
elapsed := time.Now().Sub(start)
|
|
val := float32(elapsed) / float32(time.Millisecond)
|
|
m.AddSampleWithLabels(key, val, labels)
|
|
}
|
|
|
|
// BlackholeSink is a default suitable for use in unit tests.
|
|
func BlackholeSink() *ClusterMetricSink {
|
|
return &ClusterMetricSink{
|
|
ClusterName: "",
|
|
Sink: &metrics.BlackholeSink{},
|
|
}
|
|
}
|
|
|
|
// SetDefaultClusterName changes the cluster name from its default value,
|
|
// if it has not previously been configured.
|
|
func (m *ClusterMetricSink) SetDefaultClusterName(clusterName string) {
|
|
if m.ClusterName == "" {
|
|
m.ClusterName = clusterName
|
|
}
|
|
}
|
|
|
|
// NamespaceLabel creates a metrics label for the given
|
|
// Namespace: root is "root"; others are path with the
|
|
// final '/' removed.
|
|
func NamespaceLabel(ns *namespace.Namespace) metrics.Label {
|
|
switch {
|
|
case ns == nil:
|
|
return metrics.Label{"namespace", "root"}
|
|
case ns.ID == namespace.RootNamespaceID:
|
|
return metrics.Label{"namespace", "root"}
|
|
default:
|
|
return metrics.Label{"namespace",
|
|
strings.Trim(ns.Path, "/")}
|
|
}
|
|
}
|