Log data for an Elastic Pool

interface ElasticPoolLog {
    id?: number;
    level?: LogLevel;
    message?: string;
    operation?: OperationType;
    poolId?: number;
    timestamp?: Date;
}

Properties

id?: number

Log Id

level?: LogLevel

E.g. error, warning, info

message?: string

Log contents

operation?: OperationType

Operation that triggered the message being logged

poolId?: number

Id of the associated TaskAgentPool

timestamp?: Date

Datetime that the log occurred