BFE · Schema

MonitorMetricsResponse

Metrics data for a specific monitor category.

Load BalancerNetworkingOpen SourceTraffic ManagementCNCFBaidu

Properties

Name Type Description
name string Name of the monitor category.
metrics object Key-value pairs of metric names and values.
View JSON Schema on GitHub

JSON Schema

bfe-monitor-metrics-response-schema.json Raw ↑
{
  "$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"
      }
    }
  }
}