Amazon X-Ray · Schema

HistogramEntry

An entry in a histogram for a statistic. A histogram maps the range of observed values on the X axis, and the prevalence of each value on the Y axis.

Application PerformanceDebuggingDistributed TracingMonitoringObservability

Properties

Name Type Description
Value object
Count object
View JSON Schema on GitHub

JSON Schema

xray-histogram-entry-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "Value": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Double"
        },
        {
          "description": "The value of the entry."
        }
      ]
    },
    "Count": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Integer"
        },
        {
          "description": "The prevalence of the entry."
        }
      ]
    }
  },
  "description": "An entry in a histogram for a statistic. A histogram maps the range of observed values on the X axis, and the prevalence of each value on the Y axis.",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "HistogramEntry",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-xray/refs/heads/main/json-schema/xray-histogram-entry-schema.json"
}