5 references to ShortenedIdLength
Aspire.Dashboard (5)
Otlp\Model\OtlpHelpers.cs (1)
503
if (incomingId.Length >=
ShortenedIdLength
)
Otlp\Storage\SqliteTelemetryRepository.Traces.Reads.cs (3)
467
context.TraceId.Length >= OtlpHelpers.
ShortenedIdLength
470
sql.Append(context.TraceId.Length >= OtlpHelpers.
ShortenedIdLength
668
var usePrefix = traceId.Length >= OtlpHelpers.
ShortenedIdLength
;
src\Shared\Otlp\OtlpHelpers.cs (1)
33
public static string ToShortenedId(string id) => TruncateString(id, maxLength:
ShortenedIdLength
);