51 references to OtlpHelpers
Aspire.Dashboard (36)
Components\Controls\Chart\ChartContainer.razor.cs (1)
136var value = OtlpHelpers.GetValue(attributes, filter.Name);
Components\Controls\Chart\PlotlyChart.razor.cs (1)
158: $"{Loc[nameof(ControlsStrings.PlotlyChartTrace)]}: {OtlpHelpers.ToShortenedId(exemplar.TraceId)}";
Components\Dialogs\ExemplarsDialog.razor.cs (1)
58: $"{Loc[nameof(Resources.Dialogs.ExemplarsDialogTrace)]}: {OtlpHelpers.ToShortenedId(exemplar.TraceId)}";
Model\BrowserLinkOutgoingPeerResolver.cs (2)
38var url = OtlpHelpers.GetValue(attributes, "url.full") ?? OtlpHelpers.GetValue(attributes, "http.url");
Model\MetricsHelpers.cs (1)
39Message = string.Format(CultureInfo.InvariantCulture, loc[nameof(Dialogs.OpenTraceDialogMessage)], OtlpHelpers.ToShortenedId(traceId)),
Model\Otlp\SpanWaterfallViewModel.cs (16)
62if (!string.IsNullOrEmpty(OtlpHelpers.GetValue(span.Attributes, "http.method"))) 64var httpMethod = OtlpHelpers.GetValue(span.Attributes, "http.method"); 65var statusCode = OtlpHelpers.GetValue(span.Attributes, "http.status_code"); 69else if (!string.IsNullOrEmpty(OtlpHelpers.GetValue(span.Attributes, "db.system"))) 71var dbSystem = OtlpHelpers.GetValue(span.Attributes, "db.system"); 75else if (!string.IsNullOrEmpty(OtlpHelpers.GetValue(span.Attributes, "rpc.system"))) 77var rpcSystem = OtlpHelpers.GetValue(span.Attributes, "rpc.system"); 78var rpcService = OtlpHelpers.GetValue(span.Attributes, "rpc.service"); 79var rpcMethod = OtlpHelpers.GetValue(span.Attributes, "rpc.method"); 83var grpcStatusCode = OtlpHelpers.GetValue(span.Attributes, "rpc.grpc.status_code"); 95else if (!string.IsNullOrEmpty(OtlpHelpers.GetValue(span.Attributes, "messaging.system"))) 97var messagingSystem = OtlpHelpers.GetValue(span.Attributes, "messaging.system"); 98var messagingOperation = OtlpHelpers.GetValue(span.Attributes, "messaging.operation"); 99var destinationName = OtlpHelpers.GetValue(span.Attributes, "messaging.destination.name"); 151var hasPeerService = OtlpHelpers.GetPeerAddress(span.Attributes) != null; 192return OtlpHelpers.GetPeerAddress(span.Attributes);
Model\ResourceOutgoingPeerResolver.cs (1)
69var address = OtlpHelpers.GetPeerAddress(attributes);
Otlp\Model\MetricValues\DimensionScope.cs (5)
34var start = OtlpHelpers.UnixNanoSecondsToDateTime(d.StartTimeUnixNano); 35var end = OtlpHelpers.UnixNanoSecondsToDateTime(d.TimeUnixNano); 82var start = OtlpHelpers.UnixNanoSecondsToDateTime(h.StartTimeUnixNano); 83var end = OtlpHelpers.UnixNanoSecondsToDateTime(h.TimeUnixNano); 124var start = OtlpHelpers.UnixNanoSecondsToDateTime(exemplar.TimeUnixNano);
Otlp\Model\OtlpLogEntry.cs (2)
29TimeStamp = OtlpHelpers.UnixNanoSecondsToDateTime(record.TimeUnixNano); 56? OtlpHelpers.TruncateString(body.GetString(), context.Options.MaxAttributeLength)
Otlp\Model\OtlpTrace.cs (1)
153TraceId = OtlpHelpers.ToHexString(traceId);
Otlp\Storage\TelemetryRepository.cs (5)
409return OtlpHelpers.GetItems(results, context.StartIndex, context.Count); 554var pagedResults = OtlpHelpers.GetItems(results, context.StartIndex, context.Count, copyFunc); 1006StartTime = OtlpHelpers.UnixNanoSecondsToDateTime(span.StartTimeUnixNano), 1007EndTime = OtlpHelpers.UnixNanoSecondsToDateTime(span.EndTimeUnixNano), 1023Time = OtlpHelpers.UnixNanoSecondsToDateTime(e.TimeUnixNano),
Aspire.Dashboard.Components.Tests (1)
tests\Shared\Telemetry\TelemetryTestHelpers.cs (1)
41return OtlpHelpers.ToHexString(id);
Aspire.Dashboard.Tests (14)
Model\ApplicationsSelectHelpersTests.cs (1)
215var applicationKey = OtlpHelpers.GetApplicationKey(resource);
TelemetryRepositoryTests\MetricsTests.cs (1)
310var end = OtlpHelpers.UnixNanoSecondsToDateTime(nanoSeconds);
TelemetryRepositoryTests\OtlpHelpersTests.cs (11)
25var s = OtlpHelpers.GetString(anyValue); 41var s = OtlpHelpers.GetString(anyValue); 54var s = OtlpHelpers.GetString(anyValue); 77var s = OtlpHelpers.GetString(anyValue); 140var s = OtlpHelpers.GetString(anyValue); 153OtlpHelpers.CopyKeyValuePairs( 180OtlpHelpers.CopyKeyValuePairs( 220OtlpHelpers.CopyKeyValuePairs( 264OtlpHelpers.CopyKeyValuePairs( 298OtlpHelpers.CopyKeyValuePairs( 339OtlpHelpers.CopyKeyValuePairs(
tests\Shared\Telemetry\TelemetryTestHelpers.cs (1)
41return OtlpHelpers.ToHexString(id);