4 references to ExceptionStackMaxLength
Microsoft.DotNet.Cli.Telemetry (4)
Implementation\AzureMonitorLogSerializer.cs (2)
171
var hasFullStack = stack is not null && stack.Length <= BreezeSchema.
ExceptionStackMaxLength
;
183
Stack = BreezeSchema.Truncate(stack, BreezeSchema.
ExceptionStackMaxLength
),
Implementation\AzureMonitorTelemetrySerializer.cs (2)
196
var hasFullStack = exceptionStack is not null && exceptionStack.Length <= BreezeSchema.
ExceptionStackMaxLength
;
206
Stack = BreezeSchema.Truncate(exceptionStack, BreezeSchema.
ExceptionStackMaxLength
),