Apache Ignite · Schema

NodeMetricSources

A list of metric sources for a node.

CachingCompute GridDistributed DatabaseIn-MemoryOpen SourceSQL

Properties

Name Type Description
node string Consistent id of the node.
sources array Metric sources.
View JSON Schema on GitHub

JSON Schema

rest-api-node-metric-sources-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-node-metric-sources-schema.json",
  "title": "NodeMetricSources",
  "description": "A list of metric sources for a node.",
  "type": "object",
  "properties": {
    "node": {
      "type": "string",
      "description": "Consistent id of the node."
    },
    "sources": {
      "type": "array",
      "description": "Metric sources.",
      "items": {
        "$ref": "#/components/schemas/MetricSource"
      }
    }
  },
  "required": [
    "node",
    "sources"
  ]
}