NSX-T Data Center REST API

HistogramBucket (type)

{
  "description": "A bucket is a bounded container that contains the metric value within the bounds.",
  "id": "HistogramBucket",
  "module_id": "SystemHealth",
  "properties": {
    "count": {
      "description": "The count of the bucket values",
      "required": false,
      "title": "Bucket values count",
      "type": "integer"
    },
    "lower_bound": {
      "description": "This indicates the lower boundary of the bucket. The lower boundary is a closed interval.",
      "required": false,
      "title": "Histogram bucket lower bound",
      "type": "number"
    },
    "upper_bound": {
      "description": "This indicates the upper boundary of the bucket. The upper boundaries are open intervals except the last one.",
      "required": false,
      "title": "Histogram bucket upper bound",
      "type": "number"
    },
    "values": {
      "description": "Metric original values in the bucket.",
      "items": {
        "type": "number"
      },
      "required": false,
      "title": "Histogram metric values",
      "type": "array"
    }
  },
  "title": "Histogram bucket",
  "type": "object"
}