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)
8 references to RecordError
Aspire.Dashboard (8)
Components\Dialogs\ManageDataDialog.razor.cs (3)
534ErrorRecorder.RecordError("Failed to remove data", ex, writeToLogging: true); 570ErrorRecorder.RecordError("Failed to import data", ex, writeToLogging: true); 601ErrorRecorder.RecordError("Failed to export data", ex, writeToLogging: true);
Model\Assistant\AIContextProvider.cs (1)
126_telemetryErrorRecorder.RecordError("Error while executing AIContextProvider subscriptions.", ex, writeToLogging: true);
Model\GenAI\GenAIVisualizerDialogViewModel.cs (3)
120errorRecorder.RecordError($"Error parsing tool definitions for span {viewModel.Span.SpanId}", ex, writeToLogging: true); 133errorRecorder.RecordError($"Error reading GenAI telemetry messages for span {viewModel.Span.SpanId}", ex, writeToLogging: true); 162errorRecorder.RecordError($"Error parsing GenAI evaluation results for span {viewModel.Span.SpanId}", ex, writeToLogging: true);
Telemetry\TelemetryLoggerProvider.cs (1)
53errorRecorder.RecordError("Blazor global error", exception);