Package version:

Represents a session for collecting logs from an edge device.

interface LogCollectionJobSession {
    correlationId?: string;
    endTime?: string;
    logSize?: number;
    startTime?: string;
    status?: string;
    timeCollected?: string;
}

Properties

correlationId?: string

A unique identifier for correlating this log collection session with other operations or sessions.

endTime?: string

The timestamp when log collection ended, in ISO 8601 format.

logSize?: number

The size of the collected logs in bytes.

startTime?: string

The timestamp when log collection started, in ISO 8601 format.

status?: string

The status of the log collection session.

timeCollected?: string

The total time logs were collected for, in ISO 8601 duration format.