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

ContextValue

import type { ContextValue } from "https://googleapis.deno.dev/v1/spanner:v1.ts";

A message representing context for a KeyRangeInfo, including a label, value, unit, and severity.

interface ContextValue {
severity?:
| "SEVERITY_UNSPECIFIED"
| "INFO"
| "WARNING"
| "ERROR"
| "FATAL";
unit?: string;
value?: number;
}

§Properties

§

The label for the context value. e.g. "latency".

§
severity?: "SEVERITY_UNSPECIFIED" | "INFO" | "WARNING" | "ERROR" | "FATAL"
[src]

The severity of this context.

§
unit?: string
[src]

The unit of the context value.

§
value?: number
[src]

The value for the context.