2 writes to MaxAttributeCount
Aspire.Dashboard.Components.Tests (1)
tests\Shared\Telemetry\TelemetryTestHelpers.cs (1)
224options.MaxAttributeCount = maxAttributeCount.Value;
Aspire.Dashboard.Tests (1)
tests\Shared\Telemetry\TelemetryTestHelpers.cs (1)
224options.MaxAttributeCount = maxAttributeCount.Value;
4 references to MaxAttributeCount
Aspire.Dashboard (4)
Otlp\Model\OtlpHelpers.cs (4)
179var values = new KeyValuePair<string, string>[Math.Min(attributes.Count, options.MaxAttributeCount)]; 192var readLimit = Math.Min(attributes.Count, options.MaxAttributeCount); 218copyCount = Math.Min(parentAttributes.Length + attributes.Count, options.MaxAttributeCount); 236var copyCount = Math.Min(attributes.Count + index, options.MaxAttributeCount);