A list of metric sources for a node.
{ "$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" ] }