NSX-T Data Center REST API

HistogramMetricValue (type)

{
  "description": "This type is to display histogram type metrics value.",
  "id": "HistogramMetricValue",
  "module_id": "SystemHealth",
  "properties": {
    "buckets": {
      "description": "Histogram buckets contain a list of bucket upper bound and metrics value.",
      "items": {
        "$ref": "HistogramBucket"
      },
      "required": false,
      "title": "Histogram buckets",
      "type": "array"
    },
    "count": {
      "description": "The count of all metric values",
      "required": false,
      "title": "Metric values count",
      "type": "integer"
    },
    "max": {
      "description": "The maximum of all metric values",
      "required": false,
      "title": "Maximum metric value",
      "type": "number"
    },
    "mean": {
      "description": "The mean of all metric values",
      "required": false,
      "title": "Mean of metric values",
      "type": "number"
    },
    "median": {
      "description": "The median of all metric values",
      "required": false,
      "title": "Median of metric values",
      "type": "number"
    },
    "min": {
      "description": "The minimum of all metric values",
      "required": false,
      "title": "Minimum metric values",
      "type": "number"
    },
    "stddev": {
      "description": "The standard deviation of all metric values",
      "required": false,
      "title": "Standard deviation of metric values",
      "type": "number"
    },
    "total": {
      "description": "The total sum of all metric values",
      "required": false,
      "title": "Metric values total",
      "type": "number"
    }
  },
  "title": "Histogram metric value",
  "type": "object"
}