upda/server/constants_prometheus.go
Varakh 3532af74f2
All checks were successful
/ build (push) Successful in 3m37s
feat(actions): Add actions and secrets (with proper asynchronous enqueue and dequeue mechanism) (#22)
Reviewed-on: #22
Co-authored-by: Varakh <varakh@varakh.de>
Co-committed-by: Varakh <varakh@varakh.de>
2024-04-26 12:37:50 +00:00

24 lines
699 B
Go

package server
const (
metricUpdatesTotal = "updates_all"
metricUpdatesTotalHelp = "amount of all updates"
metricUpdatesPending = "updates_pending"
metricUpdatesPendingHelp = "amount of all updates in pending state"
metricUpdatesIgnored = "updates_ignored"
metricUpdatesIgnoredHelp = "amount of all updates in ignored state"
metricUpdatesApproved = "updates_approved"
metricUpdatesApprovedHelp = "amount of all updates in approved state"
metricWebhooks = "webhooks"
metricWebhooksHelp = "amount of all webhooks"
metricEvents = "events"
metricEventsHelp = "amount of all events"
metricActions = "actions"
metricActionsHelp = "amount of all actions"
)