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

DataflowHistogramValue

import type { DataflowHistogramValue } from "https://googleapis.deno.dev/v1/dataflow:v1b3.ts";

Summary statistics for a population of values. HistogramValue contains a sequence of buckets and gives a count of values that fall into each bucket. Bucket boundares are defined by a formula and bucket widths are either fixed or exponentially increasing.

interface DataflowHistogramValue {
bucketCounts?: bigint[];
bucketOptions?: BucketOptions;
count?: bigint;
outlierStats?: OutlierStats;
}

§Properties

§
bucketCounts?: bigint[]
[src]

Optional. The number of values in each bucket of the histogram, as described in bucket_options. bucket_counts should contain N values, where N is the number of buckets specified in bucket_options. If bucket_counts has fewer than N values, the remaining values are assumed to be 0.

§
bucketOptions?: BucketOptions
[src]

Describes the bucket boundaries used in the histogram.

§
count?: bigint
[src]

Number of values recorded in this histogram.

§
outlierStats?: OutlierStats
[src]

Statistics on the values recorded in the histogram that fall out of the bucket boundaries.