13 instantiations of OtlpAnyValueJson
Aspire.Dashboard (6)
Model\TelemetryExportService.cs (6)
262
Body = new
OtlpAnyValueJson
{ StringValue = log.Message },
618
Value = new
OtlpAnyValueJson
{ StringValue = resourceView.Resource.ResourceName }
623
Value = new
OtlpAnyValueJson
{ StringValue = resourceView.Resource.InstanceId }
633
Value = new
OtlpAnyValueJson
{ StringValue = property.Value }
670
Value = new
OtlpAnyValueJson
{ StringValue = attributes[i].Value }
681
Value = new
OtlpAnyValueJson
{ StringValue = additionalAttributes[i].Value }
Aspire.Dashboard.Tests (7)
Model\TelemetryImportServiceTests.cs (7)
438
new OtlpKeyValueJson { Key = "service.name", Value = new
OtlpAnyValueJson
{ StringValue = serviceName } },
439
new OtlpKeyValueJson { Key = "service.instance.id", Value = new
OtlpAnyValueJson
{ StringValue = instanceId } }
454
Body = new
OtlpAnyValueJson
{ StringValue = message }
483
new OtlpKeyValueJson { Key = "service.name", Value = new
OtlpAnyValueJson
{ StringValue = serviceName } },
484
new OtlpKeyValueJson { Key = "service.instance.id", Value = new
OtlpAnyValueJson
{ StringValue = instanceId } }
528
new OtlpKeyValueJson { Key = "service.name", Value = new
OtlpAnyValueJson
{ StringValue = serviceName } },
529
new OtlpKeyValueJson { Key = "service.instance.id", Value = new
OtlpAnyValueJson
{ StringValue = instanceId } }
6 references to OtlpAnyValueJson
Aspire.Dashboard (6)
Otlp\Model\Serialization\OtlpJsonProtobufConverter.cs (2)
796
private static AnyValue ToProtobuf(
OtlpAnyValueJson
json)
835
foreach (
var
v in json.Values)
src\Shared\Otlp\Serialization\OtlpCommonJson.cs (2)
67
public
OtlpAnyValueJson
[]? Values { get; set; }
97
public
OtlpAnyValueJson
? Value { get; set; }
src\Shared\Otlp\Serialization\OtlpJsonSerializerContext.cs (1)
26
[JsonSerializable(typeof(
OtlpAnyValueJson
))]
src\Shared\Otlp\Serialization\OtlpLogsJson.cs (1)
91
public
OtlpAnyValueJson
? Body { get; set; }