2021-11-16 18:04:01 +00:00
|
|
|
//go:build !consulent
|
2020-09-02 15:24:17 +00:00
|
|
|
// +build !consulent
|
|
|
|
|
|
|
|
package usagemetrics
|
|
|
|
|
2020-10-09 16:01:45 +00:00
|
|
|
import (
|
|
|
|
"github.com/armon/go-metrics"
|
2021-08-18 14:27:15 +00:00
|
|
|
|
|
|
|
"github.com/hashicorp/serf/serf"
|
|
|
|
|
2020-10-09 16:01:45 +00:00
|
|
|
"github.com/hashicorp/consul/agent/consul/state"
|
|
|
|
)
|
2020-09-02 15:24:17 +00:00
|
|
|
|
2021-08-18 14:27:15 +00:00
|
|
|
func (u *UsageMetricsReporter) emitNodeUsage(nodeUsage state.NodeUsage) {
|
|
|
|
metrics.SetGaugeWithLabels(
|
|
|
|
[]string{"consul", "state", "nodes"},
|
|
|
|
float32(nodeUsage.Nodes),
|
|
|
|
u.metricLabels,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (u *UsageMetricsReporter) emitMemberUsage(members []serf.Member) {
|
|
|
|
var (
|
|
|
|
servers int
|
|
|
|
clients int
|
|
|
|
)
|
|
|
|
for _, m := range members {
|
|
|
|
switch m.Tags["role"] {
|
|
|
|
case "node":
|
|
|
|
clients++
|
|
|
|
case "consul":
|
|
|
|
servers++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
metrics.SetGaugeWithLabels(
|
|
|
|
[]string{"consul", "members", "clients"},
|
|
|
|
float32(clients),
|
|
|
|
u.metricLabels,
|
|
|
|
)
|
|
|
|
|
|
|
|
metrics.SetGaugeWithLabels(
|
|
|
|
[]string{"consul", "members", "servers"},
|
|
|
|
float32(servers),
|
|
|
|
u.metricLabels,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-10-09 16:01:45 +00:00
|
|
|
func (u *UsageMetricsReporter) emitServiceUsage(serviceUsage state.ServiceUsage) {
|
|
|
|
metrics.SetGaugeWithLabels(
|
|
|
|
[]string{"consul", "state", "services"},
|
|
|
|
float32(serviceUsage.Services),
|
|
|
|
u.metricLabels,
|
|
|
|
)
|
|
|
|
|
|
|
|
metrics.SetGaugeWithLabels(
|
|
|
|
[]string{"consul", "state", "service_instances"},
|
|
|
|
float32(serviceUsage.ServiceInstances),
|
|
|
|
u.metricLabels,
|
|
|
|
)
|
2021-09-30 21:15:26 +00:00
|
|
|
|
|
|
|
for k, i := range serviceUsage.ConnectServiceInstances {
|
|
|
|
metrics.SetGaugeWithLabels(
|
|
|
|
[]string{"consul", "state", "connect_instances"},
|
|
|
|
float32(i),
|
|
|
|
append(u.metricLabels, metrics.Label{Name: "kind", Value: k}),
|
|
|
|
)
|
|
|
|
}
|
2020-10-09 16:01:45 +00:00
|
|
|
}
|
2021-09-17 19:36:34 +00:00
|
|
|
|
|
|
|
func (u *UsageMetricsReporter) emitKVUsage(kvUsage state.KVUsage) {
|
|
|
|
metrics.SetGaugeWithLabels(
|
|
|
|
[]string{"consul", "state", "kv_entries"},
|
|
|
|
float32(kvUsage.KVCount),
|
|
|
|
u.metricLabels,
|
|
|
|
)
|
|
|
|
}
|
2021-10-01 18:22:30 +00:00
|
|
|
|
2021-10-07 21:19:55 +00:00
|
|
|
func (u *UsageMetricsReporter) emitConfigEntryUsage(configUsage state.ConfigEntryUsage) {
|
2021-10-01 18:22:30 +00:00
|
|
|
for k, i := range configUsage.ConfigByKind {
|
|
|
|
metrics.SetGaugeWithLabels(
|
|
|
|
[]string{"consul", "state", "config_entries"},
|
|
|
|
float32(i),
|
|
|
|
append(u.metricLabels, metrics.Label{Name: "kind", Value: k}),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|