Platform

Application Prometheus metrics

Exposes the WUTS application metrics in Prometheus text exposition format on an isolated registry: Go runtime stats, process collector stats, and webhook delivery counters and histograms. Intended for internal scraping and requires no authentication.

GET
/metrics

Exposes the WUTS application metrics in Prometheus text exposition format on an isolated registry: Go runtime stats, process collector stats, and webhook delivery counters and histograms. Intended for internal scraping and requires no authentication.

Response Body

text/plain

curl -X GET "https://example.com/metrics"
"# HELP go_goroutines Number of goroutines that currently exist.\n# TYPE go_goroutines gauge\ngo_goroutines 142\n# HELP wuts_webhook_deliveries_total Total number of webhook deliveries attempted.\n# TYPE wuts_webhook_deliveries_total counter\nwuts_webhook_deliveries_total{result=\"success\"} 530112\n# HELP wuts_webhook_delivery_duration_seconds Webhook delivery latency distribution.\n# TYPE wuts_webhook_delivery_duration_seconds histogram\nwuts_webhook_delivery_duration_seconds_bucket{le=\"0.1\"} 498230\nwuts_webhook_delivery_duration_seconds_sum 18420.45\nwuts_webhook_delivery_duration_seconds_count 530112\n"