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