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

KeyRangeInfo

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

A message representing information for a key range (possibly one key).

interface KeyRangeInfo {
contextValues?: ContextValue[];
endKeyIndex?: number;
keysCount?: bigint;
metric?: LocalizedString;
startKeyIndex?: number;
timeOffset?: number;
value?: number;
}

§Properties

§
contextValues?: ContextValue[]
[src]

The list of context values for this key range.

§
endKeyIndex?: number
[src]

The index of the end key in indexed_keys.

§

Information about this key range, for all metrics.

§
keysCount?: bigint
[src]

The number of keys this range covers.

§

The name of the metric. e.g. "latency".

§
startKeyIndex?: number
[src]

The index of the start key in indexed_keys.

§
timeOffset?: number
[src]

The time offset. This is the time since the start of the time interval.

§

The unit of the metric. This is an unstructured field and will be mapped as is to the user.

§
value?: number
[src]

The value of the metric.