mirror of
https://github.com/kyverno/kyverno.git
synced 2024-12-14 11:57:48 +00:00
ff9ba81440
Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
14 lines
316 B
Go
14 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")
|
|
)
|