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)
5 references to RecordError
Aspire.Dashboard (5)
Model\Assistant\AIContextProvider.cs (1)
126_telemetryErrorRecorder.RecordError("Error while executing AIContextProvider subscriptions.", ex, writeToLogging: true);
Model\GenAI\GenAIVisualizerDialogViewModel.cs (3)
116errorRecorder.RecordError($"Error parsing tool definitions for span {viewModel.Span.SpanId}", ex, writeToLogging: true); 129errorRecorder.RecordError($"Error reading GenAI telemetry messages for span {viewModel.Span.SpanId}", ex, writeToLogging: true); 158errorRecorder.RecordError($"Error parsing GenAI evaluation results for span {viewModel.Span.SpanId}", ex, writeToLogging: true);
Telemetry\TelemetryLoggerProvider.cs (1)
53errorRecorder.RecordError("Blazor global error", exception);