Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

HistogramEntry

import type { HistogramEntry } from "https://aws-api.deno.dev/v0.4/services/xray.ts?docs=full";

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.

interface HistogramEntry {
Count?: number | null;
Value?: number | null;
}

§Properties

§
Count?: number | null
[src]

The prevalence of the entry.

§
Value?: number | null
[src]

The value of the entry.