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

StageSummary

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

Information about a particular execution stage of a job.

interface StageSummary {
endTime?: Date;
metrics?: MetricUpdate[];
progress?: ProgressTimeseries;
stageId?: string;
startTime?: Date;
state?:
| "EXECUTION_STATE_UNKNOWN"
| "EXECUTION_STATE_NOT_STARTED"
| "EXECUTION_STATE_RUNNING"
| "EXECUTION_STATE_SUCCEEDED"
| "EXECUTION_STATE_FAILED"
| "EXECUTION_STATE_CANCELLED";
stragglerSummary?: StragglerSummary;
}

§Properties

§
endTime?: Date
[src]

End time of this stage. If the work item is completed, this is the actual end time of the stage. Otherwise, it is the predicted end time.

§
metrics?: MetricUpdate[]
[src]

Metrics for this stage.

§

Progress for this stage. Only applicable to Batch jobs.

§
stageId?: string
[src]

ID of this stage

§
startTime?: Date
[src]

Start time of this stage.

§
state?: "EXECUTION_STATE_UNKNOWN" | "EXECUTION_STATE_NOT_STARTED" | "EXECUTION_STATE_RUNNING" | "EXECUTION_STATE_SUCCEEDED" | "EXECUTION_STATE_FAILED" | "EXECUTION_STATE_CANCELLED"
[src]

State of this stage.

§
stragglerSummary?: StragglerSummary
[src]

Straggler summary for this stage.