OpenTelemetry.WildcardHelper
namespace OpenTelemetry
{
internal static class WildcardHelper
{
public static bool ContainsWildcard(string value);
public static Regex GetWildcardRegex(IEnumerable<string> patterns);
public static bool IsMatch(Regex regex, string input);
}
}