3 implementations of RecordError
Aspire.Dashboard (1)
Telemetry\TelemetryErrorRecorder.cs (1)
27public void RecordError(string message, Exception exception, bool writeToLogging = false)
Aspire.Dashboard.Components.Tests (1)
Shared\TestTelemetryErrorRecorder.cs (1)
10public void RecordError(string message, Exception exception, bool writeToLogging = false)
Aspire.Dashboard.Tests (1)
Model\TestTelemetryErrorRecorder.cs (1)
10public void RecordError(string message, Exception exception, bool writeToLogging = false)
3 references to RecordError
Aspire.Dashboard (3)
Model\Assistant\AIContextProvider.cs (1)
126_telemetryErrorRecorder.RecordError("Error while executing AIContextProvider subscriptions.", ex, writeToLogging: true);
Model\GenAI\GenAIVisualizerDialogViewModel.cs (1)
82errorRecorder.RecordError($"Error reading GenAI telemetry messages for span {viewModel.Span.SpanId}", ex, writeToLogging: true);
Telemetry\TelemetryLoggerProvider.cs (1)
53errorRecorder.RecordError("Blazor global error", exception);