2 writes to MaxAttributeLength
Aspire.Dashboard.Components.Tests (1)
tests\Shared\Telemetry\TelemetryTestHelpers.cs (1)
228options.MaxAttributeLength = maxAttributeLength.Value;
Aspire.Dashboard.Tests (1)
tests\Shared\Telemetry\TelemetryTestHelpers.cs (1)
228options.MaxAttributeLength = maxAttributeLength.Value;
3 references to MaxAttributeLength
Aspire.Dashboard (3)
Otlp\Model\OtlpHelpers.cs (2)
203var value = TruncateString(attribute.Value.GetString(), options.MaxAttributeLength); 242var value = TruncateString(attribute.Value.GetString(), options.MaxAttributeLength);
Otlp\Model\OtlpLogEntry.cs (1)
53Message = OtlpHelpers.TruncateString(record.Body.GetString(), options.MaxAttributeLength);