Apache Ignite · JSON Structure

Rest Api Metric Set Structure

Metrics set representation.

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

MetricSet 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 metrics

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