Kong · Schema

Single value chart

A chart that can render a single number. This chart works with a single metric and no dimensions.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
chart_title string The title of the chart, which is displayed in the tile's header.
type string
decimal_points number The number of figures to render after the decimal. Most metrics only support up to 2 decimals, but some may support more.
View JSON Schema on GitHub

JSON Schema

kong-singlevaluechart-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SingleValueChart",
  "title": "Single value chart",
  "description": "A chart that can render a single number.  This chart works with a single metric and no dimensions.",
  "type": "object",
  "properties": {
    "chart_title": {
      "description": "The title of the chart, which is displayed in the tile's header.",
      "type": "string",
      "nullable": false
    },
    "type": {
      "type": "string",
      "enum": [
        "single_value"
      ]
    },
    "decimal_points": {
      "description": "The number of figures to render after the decimal.  Most metrics only support up to 2 decimals, but some may support more.",
      "type": "number"
    }
  },
  "additionalProperties": false,
  "required": [
    "type"
  ]
}