13 instantiations of OtlpAnyValueJson
Aspire.Dashboard (6)
Model\TelemetryExportService.cs (6)
260Body = new OtlpAnyValueJson { StringValue = log.Message }, 614Value = new OtlpAnyValueJson { StringValue = property.Value } 631Value = new OtlpAnyValueJson { StringValue = resource.ResourceName } 636Value = new OtlpAnyValueJson { StringValue = resource.InstanceId } 669Value = new OtlpAnyValueJson { StringValue = attributes[i].Value } 680Value = new OtlpAnyValueJson { StringValue = additionalAttributes[i].Value }
Aspire.Dashboard.Tests (7)
Model\TelemetryImportServiceTests.cs (7)
492new OtlpKeyValueJson { Key = "service.name", Value = new OtlpAnyValueJson { StringValue = serviceName } }, 493new OtlpKeyValueJson { Key = "service.instance.id", Value = new OtlpAnyValueJson { StringValue = instanceId } } 508Body = new OtlpAnyValueJson { StringValue = message } 537new OtlpKeyValueJson { Key = "service.name", Value = new OtlpAnyValueJson { StringValue = serviceName } }, 538new OtlpKeyValueJson { Key = "service.instance.id", Value = new OtlpAnyValueJson { StringValue = instanceId } } 582new OtlpKeyValueJson { Key = "service.name", Value = new OtlpAnyValueJson { StringValue = serviceName } }, 583new OtlpKeyValueJson { Key = "service.instance.id", Value = new OtlpAnyValueJson { StringValue = instanceId } }
6 references to OtlpAnyValueJson
Aspire.Dashboard (6)
Otlp\Model\Serialization\OtlpJsonProtobufConverter.cs (2)
796private static AnyValue ToProtobuf(OtlpAnyValueJson json) 835foreach (var v in json.Values)
src\Shared\Otlp\Serialization\OtlpCommonJson.cs (2)
67public OtlpAnyValueJson[]? Values { get; set; } 97public OtlpAnyValueJson? Value { get; set; }
src\Shared\Otlp\Serialization\OtlpJsonSerializerContext.cs (1)
27[JsonSerializable(typeof(OtlpAnyValueJson))]
src\Shared\Otlp\Serialization\OtlpLogsJson.cs (1)
91public OtlpAnyValueJson? Body { get; set; }