13 instantiations of OtlpAnyValueJson
Aspire.Dashboard (6)
Model\TelemetryExportService.cs (6)
268Body = new OtlpAnyValueJson { StringValue = log.Message }, 624Value = new OtlpAnyValueJson { StringValue = resourceView.Resource.ResourceName } 629Value = new OtlpAnyValueJson { StringValue = resourceView.Resource.InstanceId } 639Value = new OtlpAnyValueJson { StringValue = property.Value } 676Value = new OtlpAnyValueJson { StringValue = attributes[i].Value } 687Value = new OtlpAnyValueJson { StringValue = additionalAttributes[i].Value }
Aspire.Dashboard.Tests (7)
Model\TelemetryImportServiceTests.cs (7)
439new OtlpKeyValueJson { Key = "service.name", Value = new OtlpAnyValueJson { StringValue = serviceName } }, 440new OtlpKeyValueJson { Key = "service.instance.id", Value = new OtlpAnyValueJson { StringValue = instanceId } } 455Body = new OtlpAnyValueJson { StringValue = message } 484new OtlpKeyValueJson { Key = "service.name", Value = new OtlpAnyValueJson { StringValue = serviceName } }, 485new OtlpKeyValueJson { Key = "service.instance.id", Value = new OtlpAnyValueJson { StringValue = instanceId } } 529new OtlpKeyValueJson { Key = "service.name", Value = new OtlpAnyValueJson { StringValue = serviceName } }, 530new 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)
Otlp\Model\Serialization\OtlpJsonSerializerContext.cs (1)
22[JsonSerializable(typeof(OtlpAnyValueJson))]
src\Shared\Otlp\Serialization\OtlpCommonJson.cs (2)
67public OtlpAnyValueJson[]? Values { get; set; } 97public OtlpAnyValueJson? Value { get; set; }
src\Shared\Otlp\Serialization\OtlpLogsJson.cs (1)
91public OtlpAnyValueJson? Body { get; set; }