The OTLP/OTAP exporters use ProxyConfig::should_bypass()to decide whether to route a request through a proxy. Today, NO_PROXY is split/trimmed/lowercased and CIDRs are parsed on every check, causing avoidable allocations and repeated work in a hot path. Introduce a pre-parsed/compiled representation of NO_PROXY rules (exact hosts, suffix/wildcards, parsed CIDRs) and reuse it across requests, preserving current matching semantics.