Metrics
Validate an external impact-metrics source URL.
Enterprise feature
Tests an external impact-metrics source URL on the fly without persisting it. Returns the list of metric names found at the URL on success, or an error string explaining what went wrong. Always responds with 200; failures are reported in the body.
post/api/admin/impact-metrics/external-source/validate
Request body
Example request
{
"url": "https://metrics.example.com"
}Response
validateExternalImpactMetricsSourceResultSchema
Example response
{
"metrics": [
"http_requests_total",
"process_cpu_seconds_total"
],
"error": "External source returned HTTP 401"
}