4 instantiations of OtlpResourceLogsJson
Aspire.Dashboard (3)
Model\TelemetryExportService.cs (3)
236return new OtlpResourceLogsJson 368new OtlpResourceLogsJson 458return new OtlpResourceLogsJson
Aspire.Dashboard.Tests (1)
Model\TelemetryImportServiceTests.cs (1)
432new OtlpResourceLogsJson
14 references to OtlpResourceLogsJson
Aspire.Dashboard (11)
Model\TelemetryExportService.cs (1)
445private static OtlpResourceLogsJson[]? ConvertLogsToResourceLogs(List<OtlpLogEntry>? logs)
Model\TelemetryImportService.cs (1)
162private void ImportLogs(OtlpResourceLogsJson[] resourceLogs)
Otlp\Model\Serialization\OtlpJsonProtobufConverter.cs (2)
46foreach (var rl in json.ResourceLogs) 248private static ResourceLogs ToProtobuf(OtlpResourceLogsJson json)
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\OtlpCommonJson.cs (1)
116public OtlpResourceLogsJson[]? ResourceLogs { get; set; }
src\Shared\Otlp\Serialization\OtlpJsonSerializerContext.cs (1)
43[JsonSerializable(typeof(OtlpResourceLogsJson))]
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];