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

InsightEvent

import type { InsightEvent } from "https://aws-api.deno.dev/v0.4/services/xray.ts?docs=full";

X-Ray reevaluates insights periodically until they are resolved, and records each intermediate state in an event. You can review incident events in the Impact Timeline on the Inspect page in the X-Ray console.

interface InsightEvent {
ClientRequestImpactStatistics?: RequestImpactStatistics | null;
EventTime?: Date | number | null;
RootCauseServiceRequestImpactStatistics?: RequestImpactStatistics | null;
Summary?: string | null;
TopAnomalousServices?: AnomalousService[] | null;
}

§Properties

§
ClientRequestImpactStatistics?: RequestImpactStatistics | null
[src]

The impact statistics of the client side service. This includes the number of requests to the client service and whether the requests were faults or okay.

§
EventTime?: Date | number | null
[src]

The time, in Unix seconds, at which the event was recorded.

§
RootCauseServiceRequestImpactStatistics?: RequestImpactStatistics | null
[src]

The impact statistics of the root cause service. This includes the number of requests to the client service and whether the requests were faults or okay.

§
Summary?: string | null
[src]

A brief description of the event.

§
TopAnomalousServices?: AnomalousService[] | null
[src]

The service during the event that is most impacted by the incident.