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

LogAnomalyClass

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

Information about an anomalous log event found within a log group.

interface LogAnomalyClass {
Explanation?: string | null;
LogAnomalyToken?: string | null;
LogAnomalyType?: LogAnomalyType | null;
LogEventId?: string | null;
LogEventTimestamp?: Date | number | null;
LogStreamName?: string | null;
NumberOfLogLinesOccurrences?: number | null;
}

§Properties

§
Explanation?: string | null
[src]

The explanation for why the log event is considered an anomaly.

§
LogAnomalyToken?: string | null
[src]

The token where the anomaly was detected. This may refer to an exception or another location, or it may be blank for log anomalies such as format anomalies.

§
LogAnomalyType?: LogAnomalyType | null
[src]

The type of log anomaly that has been detected.

§
LogEventId?: string | null
[src]

The ID of the log event.

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

The time of the first occurrence of the anomalous log event.

§
LogStreamName?: string | null
[src]

The name of the Amazon CloudWatch log stream that the anomalous log event belongs to. A log stream is a sequence of log events that share the same source.

§
NumberOfLogLinesOccurrences?: number | null
[src]

The number of log lines where this anomalous log event occurs.