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

StreamingScalingReport

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

Contains per-user worker telemetry used in streaming autoscaling.

interface StreamingScalingReport {
activeBundleCount?: number;
activeThreadCount?: number;
maximumBundleCount?: number;
maximumBytes?: bigint;
maximumBytesCount?: number;
maximumThreadCount?: number;
outstandingBundleCount?: number;
outstandingBytes?: bigint;
outstandingBytesCount?: number;
}

§Properties

§
activeBundleCount?: number
[src]
§
activeThreadCount?: number
[src]

Current acive thread count.

§
maximumBundleCount?: number
[src]

Maximum bundle count.

§
maximumBytes?: bigint
[src]

Maximum bytes.

§
maximumBytesCount?: number
[src]
§
maximumThreadCount?: number
[src]

Maximum thread count limit.

§
outstandingBundleCount?: number
[src]

Current outstanding bundle count.

§
outstandingBytes?: bigint
[src]

Current outstanding bytes.

§
outstandingBytesCount?: number
[src]