/** * General purpose networking attributes defined by the OpenTelemetry Semantic Conventions Specification * https://github.com/open-telemetry/opentelemetry-specification/blob/master/specification/trace/semantic_conventions/span-general.md */ export declare const GeneralAttribute: { NET_PEER_IP: string; NET_PEER_ADDRESS: string; NET_PEER_HOSTNAME: string; NET_PEER_PORT: string; NET_PEER_NAME: string; NET_PEER_IPV4: string; NET_PEER_IPV6: string; NET_PEER_SERVICE: string; NET_HOST_IP: string; NET_HOST_PORT: string; NET_HOST_NAME: string; NET_TRANSPORT: string; IP_TCP: string; IP_UDP: string; INPROC: string; PIPE: string; UNIX: string; };