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)
7 references to RecordError
Aspire.Dashboard (7)
Components\Dialogs\ManageDataDialog.razor.cs (3)
589ErrorRecorder.RecordError("Failed to remove data", ex, writeToLogging: true); 625ErrorRecorder.RecordError("Failed to import data", ex, writeToLogging: true); 656ErrorRecorder.RecordError("Failed to export data", ex, writeToLogging: true);
Model\GenAI\GenAIVisualizerDialogViewModel.cs (3)
122errorRecorder.RecordError($"Error parsing tool definitions for span {viewModel.Span.SpanId}", ex, writeToLogging: true); 135errorRecorder.RecordError($"Error reading GenAI telemetry messages for span {viewModel.Span.SpanId}", ex, writeToLogging: true); 164errorRecorder.RecordError($"Error parsing GenAI evaluation results for span {viewModel.Span.SpanId}", ex, writeToLogging: true);
Telemetry\TelemetryLoggerProvider.cs (1)
53errorRecorder.RecordError("Blazor global error", exception);