Data controlling a single diagnostic setting for a subscription.

interface SubscriptionTracing {
    enabled: boolean;
    endDate?: Date;
    maxTracedEntries?: number;
    startDate?: Date;
    tracedEntries?: number;
}

Properties

enabled: boolean

Indicates whether the diagnostic tracing is enabled or not.

endDate?: Date

Trace until the specified end date.

maxTracedEntries?: number

The maximum number of result details to trace.

startDate?: Date

The date and time tracing started.

tracedEntries?: number

Trace until remaining count reaches 0.