BFE · Schema

MonitorCategoriesResponse

List of available monitor metric categories.

Load BalancerNetworkingOpen SourceTraffic ManagementCNCFBaidu

Properties

Name Type Description
categories array Available monitor category names.
View JSON Schema on GitHub

JSON Schema

bfe-monitor-categories-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-categories-response-schema.json",
  "title": "MonitorCategoriesResponse",
  "description": "List of available monitor metric categories.",
  "type": "object",
  "properties": {
    "categories": {
      "type": "array",
      "description": "Available monitor category names.",
      "items": {
        "type": "string"
      },
      "example": [
        "connections",
        "requests",
        "routing",
        "upstream"
      ]
    }
  }
}