Apache Ignite · JSON Structure

Rest Api Metric Source Structure

A list of metric sources provided by modules.

Type: object Properties: 2 Required: 2
CachingCompute GridDistributed DatabaseIn-MemoryOpen SourceSQL

MetricSource is a JSON Structure definition published by Apache Ignite, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name enabled

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "type": "object",
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-ignite/refs/heads/main/json-structure/rest-api-metric-source-structure.json",
  "name": "MetricSource",
  "description": "A list of metric sources provided by modules.",
  "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"
  ]
}