Metrics data for a specific monitor category.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/bfe/refs/heads/main/json-schema/bfe-monitor-metrics-response-schema.json", "title": "MonitorMetricsResponse", "description": "Metrics data for a specific monitor category.", "type": "object", "properties": { "name": { "type": "string", "description": "Name of the monitor category.", "example": "connections" }, "metrics": { "type": "object", "description": "Key-value pairs of metric names and values.", "additionalProperties": { "type": "number" } } } }