github.com/avenga/couper@v1.12.2/telemetry/instrumentation/instrumentation.go (about)

     1  package instrumentation
     2  
     3  const (
     4  	Name   = "github.com/avenga/couper/telemetry"
     5  	Prefix = "couper_"
     6  
     7  	BackendInstrumentationName = "couper/backend"
     8  
     9  	BackendConnections         = Prefix + "backend_connections_count"
    10  	BackendConnectionsLifetime = Prefix + "backend_connections_lifetime_seconds"
    11  	BackendConnectionsTotal    = Prefix + "backend_connections"
    12  	BackendHealthState         = Prefix + "backend_up"
    13  	BackendRequest             = Prefix + "backend_request"
    14  	BackendRequestDuration     = Prefix + "backend_request_duration_seconds"
    15  	ClientConnections          = Prefix + "client_connections_count"
    16  	ClientConnectionsTotal     = Prefix + "client_connections"
    17  	ClientRequest              = Prefix + "client_request"
    18  	ClientRequestDuration      = Prefix + "client_request_duration_seconds"
    19  )