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

DataSamplingReport

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

Contains per-worker telemetry about the data sampling feature.

interface DataSamplingReport {
bytesWrittenDelta?: bigint;
elementsSampledBytes?: bigint;
elementsSampledCount?: bigint;
exceptionsSampledCount?: bigint;
pcollectionsSampledCount?: bigint;
persistenceErrorsCount?: bigint;
translationErrorsCount?: bigint;
}

§Properties

§
bytesWrittenDelta?: bigint
[src]

Optional. Delta of bytes written to file from previous report.

§
elementsSampledBytes?: bigint
[src]

Optional. Delta of bytes sampled from previous report.

§
elementsSampledCount?: bigint
[src]

Optional. Delta of number of elements sampled from previous report.

§
exceptionsSampledCount?: bigint
[src]

Optional. Delta of number of samples taken from user code exceptions from previous report.

§
pcollectionsSampledCount?: bigint
[src]

Optional. Delta of number of PCollections sampled from previous report.

§
persistenceErrorsCount?: bigint
[src]

Optional. Delta of errors counts from persisting the samples from previous report.

§
translationErrorsCount?: bigint
[src]

Optional. Delta of errors counts from retrieving, or translating the samples from previous report.