4 writes to MaxLogCount
Aspire.Dashboard.Components.Tests (1)
Pages\StructuredLogsTests.cs (1)
299
TelemetryLimits = {
MaxLogCount
= 1 }
Aspire.Dashboard.Tests (3)
Model\TelemetryExportServiceTests.cs (1)
1352
TelemetryLimits = new TelemetryLimitOptions {
MaxLogCount
= 40_000 }
Shared\SqliteRepositoryTestHelpers.cs (1)
35
telemetryLimits.
MaxLogCount
= maxLogCount ?? telemetryLimits.MaxLogCount;
TelemetryRepositoryTests\TelemetryRepositoryTestBase.cs (1)
34
telemetryLimits.
MaxLogCount
= maxLogCount ?? telemetryLimits.MaxLogCount;
6 references to MaxLogCount
Aspire.Dashboard (4)
Components\Pages\StructuredLogs.razor.cs (1)
145
string.Format(CultureInfo.InvariantCulture, Loc[nameof(Dashboard.Resources.StructuredLogs.MessageExceededLimitBody)], DashboardOptions.Value.TelemetryLimits.
MaxLogCount
),
Otlp\Storage\SqliteTelemetryRepository.Logs.cs (3)
193
""", new { _otlpContext.Options.
MaxLogCount
}, transaction);
272
IsFull = totalCount >= _otlpContext.Options.
MaxLogCount
284
query.Parameters.Add("MaxLogCount", _otlpContext.Options.
MaxLogCount
);
Aspire.Dashboard.Tests (2)
Shared\SqliteRepositoryTestHelpers.cs (1)
35
telemetryLimits.MaxLogCount = maxLogCount ?? telemetryLimits.
MaxLogCount
;
TelemetryRepositoryTests\TelemetryRepositoryTestBase.cs (1)
34
telemetryLimits.MaxLogCount = maxLogCount ?? telemetryLimits.
MaxLogCount
;