Apache Ignite · Schema

MetricSet

Metrics set representation.

CachingCompute GridDistributed DatabaseIn-MemoryOpen SourceSQL

Properties

Name Type Description
name string Metric set name.
metrics array Metrics.
View JSON Schema on GitHub

JSON Schema

rest-api-metric-set-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-set-schema.json",
  "title": "MetricSet",
  "description": "Metrics set representation.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Metric set name."
    },
    "metrics": {
      "type": "array",
      "description": "Metrics.",
      "items": {
        "$ref": "#/components/schemas/Metric"
      }
    }
  },
  "required": [
    "metrics",
    "name"
  ]
}