Enable Prometheus metrics on port 2019

This commit is contained in:
Azat
2026-02-02 22:31:23 +01:00
parent 79ea29b7c5
commit a6fde7d651
2 changed files with 15 additions and 1 deletions

View File

@@ -1,4 +1,17 @@
# Default Caddyfile - customize as needed
# Global options
{
# Enable Prometheus metrics on :2019
servers {
metrics
}
}
# Admin API with metrics endpoint
:2019 {
metrics /metrics
}
# Default site
:80 {
respond "VibeStack Agent - Caddy is running!"
}