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

CollectdPayloadError

import type { CollectdPayloadError } from "https://googleapis.deno.dev/v1/monitoring:v3.ts";

Describes the error status for payloads that were not written.

interface CollectdPayloadError {
error?: Status;
index?: number;
valueErrors?: CollectdValueError[];
}

§Properties

§
error?: Status
[src]

Records the error status for the payload. If this field is present, the partial errors for nested values won't be populated.

§
index?: number
[src]

The zero-based index in CreateCollectdTimeSeriesRequest.collectd_payloads.

§
valueErrors?: CollectdValueError[]
[src]

Records the error status for values that were not written due to an error.Failed payloads for which nothing is written will not include partial value errors.