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

Symptom

import type { Symptom } from "https://googleapis.deno.dev/v1/tpu:v2.ts";

A Symptom instance.

interface Symptom {
createTime?: Date;
details?: string;
symptomType?:
| "SYMPTOM_TYPE_UNSPECIFIED"
| "LOW_MEMORY"
| "OUT_OF_MEMORY"
| "EXECUTE_TIMED_OUT"
| "MESH_BUILD_FAIL"
| "HBM_OUT_OF_MEMORY"
| "PROJECT_ABUSE";
workerId?: string;
}

§Properties

§
createTime?: Date
[src]

Timestamp when the Symptom is created.

§
details?: string
[src]

Detailed information of the current Symptom.

§
symptomType?: "SYMPTOM_TYPE_UNSPECIFIED" | "LOW_MEMORY" | "OUT_OF_MEMORY" | "EXECUTE_TIMED_OUT" | "MESH_BUILD_FAIL" | "HBM_OUT_OF_MEMORY" | "PROJECT_ABUSE"
[src]

Type of the Symptom.

§
workerId?: string
[src]

A string used to uniquely distinguish a worker within a TPU node.