mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 07:57:07 +00:00
15 lines
316 B
Go
15 lines
316 B
Go
|
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")
|
||
|
)
|