Ambassador · Schema

DiagnosticsOverview

Diagnostic overview of an Ambassador instance

API DevelopmentGatewaysIngressKubernetesMock ServersMocksPlatformTesting

Properties

Name Type Description
system object System-level information
ambassador_config object Active Ambassador configuration summary
envoy_status object Status of the underlying Envoy proxy
route_info array Summary of active routes
errors array List of configuration errors
View JSON Schema on GitHub

JSON Schema

ambassador-diagnostics-overview-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "DiagnosticsOverview",
  "type": "object",
  "description": "Diagnostic overview of an Ambassador instance",
  "properties": {
    "system": {
      "type": "object",
      "description": "System-level information"
    },
    "ambassador_config": {
      "type": "object",
      "description": "Active Ambassador configuration summary"
    },
    "envoy_status": {
      "type": "object",
      "description": "Status of the underlying Envoy proxy"
    },
    "route_info": {
      "type": "array",
      "description": "Summary of active routes"
    },
    "errors": {
      "type": "array",
      "description": "List of configuration errors"
    }
  }
}