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

TimeEvents

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

A collection of TimeEvents. A TimeEvent is a time-stamped annotation on the span, consisting of either user-supplied key:value pairs, or details of a message sent/received between Spans.

interface TimeEvents {
droppedAnnotationsCount?: number;
droppedMessageEventsCount?: number;
timeEvent?: TimeEvent[];
}

§Properties

§
droppedAnnotationsCount?: number
[src]

The number of dropped annotations in all the included time events. If the value is 0, then no annotations were dropped.

§
droppedMessageEventsCount?: number
[src]

The number of dropped message events in all the included time events. If the value is 0, then no message events were dropped.

§
timeEvent?: TimeEvent[]
[src]

A collection of TimeEvents.