1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-06 07:57:07 +00:00
kyverno/pkg/metrics/attributes.go

15 lines
316 B
Go
Raw Normal View History

package metrics
import "go.opentelemetry.io/otel/attribute"
const (
// keys
RequestWebhookKey = attribute.Key("request_webhook")
)
var (
// keyvalues
WebhookMutating = RequestWebhookKey.String("MutatingWebhookConfiguration")
WebhookValidating = RequestWebhookKey.String("ValidatingWebhookConfiguration")
)