IBM WebSphere · Schema

MetricsResponse

Application ServerCloud NativeEnterprise JavaJ2EEMicroservicesMiddleware
View JSON Schema on GitHub

JSON Schema

websphere-metricsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MetricsResponse",
  "title": "MetricsResponse",
  "type": "object",
  "additionalProperties": {
    "type": "object",
    "properties": {
      "displayName": {
        "type": "string"
      },
      "description": {
        "type": "string"
      },
      "unit": {
        "type": "string"
      },
      "type": {
        "type": "string",
        "enum": [
          "counter",
          "gauge",
          "timer",
          "histogram",
          "simple_timer",
          "concurrent_gauge"
        ]
      },
      "value": {
        "type": "number"
      },
      "tags": {
        "type": "object",
        "additionalProperties": {
          "type": "string"
        }
      }
    }
  }
}