Apache Ignite · JSON Structure

Rest Api Node Metric Sources Structure

A list of metric sources for a node.

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

NodeMetricSources 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

node sources

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