mirror of https://github.com/hashicorp/consul
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.
138 lines
4.3 KiB
138 lines
4.3 KiB
2 years ago
|
package middleware
|
||
4 years ago
|
|
||
|
import (
|
||
|
"context"
|
||
|
"sync/atomic"
|
||
|
|
||
|
"github.com/armon/go-metrics"
|
||
4 years ago
|
"github.com/armon/go-metrics/prometheus"
|
||
4 years ago
|
"google.golang.org/grpc"
|
||
|
"google.golang.org/grpc/stats"
|
||
|
)
|
||
|
|
||
4 years ago
|
var StatsGauges = []prometheus.GaugeDefinition{
|
||
|
{
|
||
4 years ago
|
Name: []string{"grpc", "server", "connections"},
|
||
4 years ago
|
Help: "Measures the number of active gRPC connections open on the server.",
|
||
4 years ago
|
},
|
||
|
{
|
||
4 years ago
|
Name: []string{"grpc", "client", "connections"},
|
||
4 years ago
|
Help: "Measures the number of active gRPC connections open from the client agent to any Consul servers.",
|
||
4 years ago
|
},
|
||
|
{
|
||
4 years ago
|
Name: []string{"grpc", "server", "streams"},
|
||
4 years ago
|
Help: "Measures the number of active gRPC streams handled by the server.",
|
||
4 years ago
|
},
|
||
|
}
|
||
|
var StatsCounters = []prometheus.CounterDefinition{
|
||
|
{
|
||
4 years ago
|
Name: []string{"grpc", "client", "request", "count"},
|
||
4 years ago
|
Help: "Counts the number of gRPC requests made by the client agent to a Consul server.",
|
||
4 years ago
|
},
|
||
|
{
|
||
4 years ago
|
Name: []string{"grpc", "server", "request", "count"},
|
||
4 years ago
|
Help: "Counts the number of gRPC requests received by the server.",
|
||
4 years ago
|
},
|
||
|
{
|
||
4 years ago
|
Name: []string{"grpc", "client", "connection", "count"},
|
||
4 years ago
|
Help: "Counts the number of new gRPC connections opened by the client agent to a Consul server.",
|
||
4 years ago
|
},
|
||
|
{
|
||
4 years ago
|
Name: []string{"grpc", "server", "connection", "count"},
|
||
4 years ago
|
Help: "Counts the number of new gRPC connections received by the server.",
|
||
4 years ago
|
},
|
||
|
{
|
||
4 years ago
|
Name: []string{"grpc", "server", "stream", "count"},
|
||
4 years ago
|
Help: "Counts the number of new gRPC streams received by the server.",
|
||
4 years ago
|
},
|
||
|
}
|
||
4 years ago
|
|
||
4 years ago
|
// statsHandler is a grpc/stats.StatsHandler which emits connection and
|
||
|
// request metrics to go-metrics.
|
||
|
type statsHandler struct {
|
||
3 years ago
|
// activeConns is used with sync/atomic and MUST be 64-bit aligned. To ensure
|
||
|
// alignment on 32-bit platforms this field must remain the first field in
|
||
|
// the struct. See https://golang.org/pkg/sync/atomic/#pkg-note-BUG.
|
||
|
activeConns uint64
|
||
4 years ago
|
metrics *metrics.Metrics
|
||
2 years ago
|
labels []metrics.Label
|
||
4 years ago
|
}
|
||
|
|
||
2 years ago
|
func NewStatsHandler(m *metrics.Metrics, labels []metrics.Label) *statsHandler {
|
||
|
return &statsHandler{metrics: m, labels: labels}
|
||
4 years ago
|
}
|
||
|
|
||
4 years ago
|
// TagRPC implements grpcStats.StatsHandler
|
||
|
func (c *statsHandler) TagRPC(ctx context.Context, _ *stats.RPCTagInfo) context.Context {
|
||
|
// No-op
|
||
|
return ctx
|
||
|
}
|
||
|
|
||
|
// HandleRPC implements grpcStats.StatsHandler
|
||
|
func (c *statsHandler) HandleRPC(_ context.Context, s stats.RPCStats) {
|
||
|
label := "server"
|
||
|
if s.IsClient() {
|
||
|
label = "client"
|
||
|
}
|
||
|
switch s.(type) {
|
||
|
case *stats.InHeader:
|
||
2 years ago
|
c.metrics.IncrCounterWithLabels([]string{"grpc", label, "request", "count"}, 1, c.labels)
|
||
4 years ago
|
}
|
||
|
}
|
||
|
|
||
|
// TagConn implements grpcStats.StatsHandler
|
||
|
func (c *statsHandler) TagConn(ctx context.Context, _ *stats.ConnTagInfo) context.Context {
|
||
|
// No-op
|
||
|
return ctx
|
||
|
}
|
||
|
|
||
|
// HandleConn implements grpcStats.StatsHandler
|
||
|
func (c *statsHandler) HandleConn(_ context.Context, s stats.ConnStats) {
|
||
|
label := "server"
|
||
|
if s.IsClient() {
|
||
|
label = "client"
|
||
|
}
|
||
|
var count uint64
|
||
|
switch s.(type) {
|
||
|
case *stats.ConnBegin:
|
||
|
count = atomic.AddUint64(&c.activeConns, 1)
|
||
2 years ago
|
c.metrics.IncrCounterWithLabels([]string{"grpc", label, "connection", "count"}, 1, c.labels)
|
||
4 years ago
|
case *stats.ConnEnd:
|
||
|
// Decrement!
|
||
|
count = atomic.AddUint64(&c.activeConns, ^uint64(0))
|
||
|
}
|
||
2 years ago
|
c.metrics.SetGaugeWithLabels([]string{"grpc", label, "connections"}, float32(count), c.labels)
|
||
4 years ago
|
}
|
||
|
|
||
|
type activeStreamCounter struct {
|
||
3 years ago
|
// count is used with sync/atomic and MUST be 64-bit aligned. To ensure
|
||
|
// alignment on 32-bit platforms this field must remain the first field in
|
||
|
// the struct. See https://golang.org/pkg/sync/atomic/#pkg-note-BUG.
|
||
|
count uint64
|
||
4 years ago
|
metrics *metrics.Metrics
|
||
2 years ago
|
labels []metrics.Label
|
||
|
}
|
||
|
|
||
|
func NewActiveStreamCounter(m *metrics.Metrics, labels []metrics.Label) *activeStreamCounter {
|
||
|
return &activeStreamCounter{metrics: m, labels: labels}
|
||
4 years ago
|
}
|
||
|
|
||
|
// GRPCCountingStreamInterceptor is a grpc.ServerStreamInterceptor that emits a
|
||
|
// a metric of the count of open streams.
|
||
|
func (i *activeStreamCounter) Intercept(
|
||
|
srv interface{},
|
||
|
ss grpc.ServerStream,
|
||
|
_ *grpc.StreamServerInfo,
|
||
|
handler grpc.StreamHandler,
|
||
|
) error {
|
||
|
count := atomic.AddUint64(&i.count, 1)
|
||
2 years ago
|
i.metrics.SetGaugeWithLabels([]string{"grpc", "server", "streams"}, float32(count), i.labels)
|
||
|
i.metrics.IncrCounterWithLabels([]string{"grpc", "server", "stream", "count"}, 1, i.labels)
|
||
4 years ago
|
defer func() {
|
||
|
count := atomic.AddUint64(&i.count, ^uint64(0))
|
||
2 years ago
|
i.metrics.SetGaugeWithLabels([]string{"grpc", "server", "streams"}, float32(count), i.labels)
|
||
4 years ago
|
}()
|
||
|
|
||
|
return handler(srv, ss)
|
||
|
}
|