4 instantiations of OtlpResourceLogsJson
Aspire.Dashboard (3)
Model\TelemetryExportService.cs (3)
242return new OtlpResourceLogsJson 374new OtlpResourceLogsJson 464return new OtlpResourceLogsJson
Aspire.Dashboard.Tests (1)
Model\TelemetryImportServiceTests.cs (1)
433new OtlpResourceLogsJson
14 references to OtlpResourceLogsJson
Aspire.Dashboard (11)
Model\TelemetryExportService.cs (1)
451private static OtlpResourceLogsJson[]? ConvertLogsToResourceLogs(List<OtlpLogEntry>? logs)
Model\TelemetryImportService.cs (1)
162private void ImportLogs(OtlpResourceLogsJson[] resourceLogs)
Otlp\Model\Serialization\OtlpCommonJson.cs (1)
25public OtlpResourceLogsJson[]? ResourceLogs { get; set; }
Otlp\Model\Serialization\OtlpJsonProtobufConverter.cs (2)
46foreach (var rl in json.ResourceLogs) 248private static ResourceLogs ToProtobuf(OtlpResourceLogsJson json)
Otlp\Model\Serialization\OtlpJsonSerializerContext.cs (1)
39[JsonSerializable(typeof(OtlpResourceLogsJson))]
src\Shared\ConsoleLogs\SharedAIHelpers.cs (4)
59IList<OtlpResourceLogsJson>? resourceLogs, 88IList<OtlpResourceLogsJson>? resourceLogs, 425public static List<OtlpLogEntryDto> GetLogRecordsFromOtlpData(IList<OtlpResourceLogsJson>? resourceLogs) 434foreach (var resourceLog in resourceLogs)
src\Shared\Otlp\Serialization\OtlpLogsJson.cs (1)
141public OtlpResourceLogsJson[]? ResourceLogs { get; set; }
Aspire.Dashboard.Tests (3)
Model\TelemetryExportServiceTests.cs (3)
67var resourceLogs = result.ResourceLogs[0]; 175var resourceLogs = result.ResourceLogs[0]; 849var resourceLogs = logsData.ResourceLogs[0];