Apache Ignite · Schema

MetricSource

A list of metric sources provided by modules.

CachingCompute GridDistributed DatabaseIn-MemoryOpen SourceSQL

Properties

Name Type Description
name string Metric source name.
enabled boolean If True, the metric is tracked. Otherwise, the metric is not tracked.
View JSON Schema on GitHub

JSON Schema

rest-api-metric-source-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-ignite/refs/heads/main/json-schema/rest-api-metric-source-schema.json",
  "title": "MetricSource",
  "description": "A list of metric sources provided by modules.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Metric source name."
    },
    "enabled": {
      "type": "boolean",
      "description": "If True, the metric is tracked. Otherwise, the metric is not tracked."
    }
  },
  "required": [
    "enabled",
    "name"
  ]
}