4 references to TruncateString
Aspire.Dashboard (4)
Otlp\Model\OtlpHelpers.cs (2)
211var value = TruncateString(attribute.Value.GetString(), context.Options.MaxAttributeLength); 288var value = TruncateString(attribute.Value.GetString(), context.Options.MaxAttributeLength);
Otlp\Model\OtlpLogEntry.cs (1)
71? OtlpHelpers.TruncateString(body.GetString(), context.Options.MaxAttributeLength)
src\Shared\Otlp\OtlpHelpers.cs (1)
33public static string ToShortenedId(string id) => TruncateString(id, maxLength: ShortenedIdLength);