aboutsummaryrefslogtreecommitdiff
path: root/.venv/lib/python3.12/site-packages/opentelemetry/semconv/attributes/network_attributes.py
diff options
context:
space:
mode:
Diffstat (limited to '.venv/lib/python3.12/site-packages/opentelemetry/semconv/attributes/network_attributes.py')
-rw-r--r--.venv/lib/python3.12/site-packages/opentelemetry/semconv/attributes/network_attributes.py84
1 files changed, 84 insertions, 0 deletions
diff --git a/.venv/lib/python3.12/site-packages/opentelemetry/semconv/attributes/network_attributes.py b/.venv/lib/python3.12/site-packages/opentelemetry/semconv/attributes/network_attributes.py
new file mode 100644
index 00000000..c09fe2e0
--- /dev/null
+++ b/.venv/lib/python3.12/site-packages/opentelemetry/semconv/attributes/network_attributes.py
@@ -0,0 +1,84 @@
+# Copyright The OpenTelemetry Authors
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+from enum import Enum
+from typing import Final
+
+NETWORK_LOCAL_ADDRESS: Final = "network.local.address"
+"""
+Local address of the network connection - IP address or Unix domain socket name.
+"""
+
+NETWORK_LOCAL_PORT: Final = "network.local.port"
+"""
+Local port number of the network connection.
+"""
+
+NETWORK_PEER_ADDRESS: Final = "network.peer.address"
+"""
+Peer address of the network connection - IP address or Unix domain socket name.
+"""
+
+NETWORK_PEER_PORT: Final = "network.peer.port"
+"""
+Peer port number of the network connection.
+"""
+
+NETWORK_PROTOCOL_NAME: Final = "network.protocol.name"
+"""
+[OSI application layer](https://wikipedia.org/wiki/Application_layer) or non-OSI equivalent.
+Note: The value SHOULD be normalized to lowercase.
+"""
+
+NETWORK_PROTOCOL_VERSION: Final = "network.protocol.version"
+"""
+The actual version of the protocol used for network communication.
+Note: If protocol version is subject to negotiation (for example using [ALPN](https://www.rfc-editor.org/rfc/rfc7301.html)), this attribute SHOULD be set to the negotiated version. If the actual protocol version is not known, this attribute SHOULD NOT be set.
+"""
+
+NETWORK_TRANSPORT: Final = "network.transport"
+"""
+[OSI transport layer](https://wikipedia.org/wiki/Transport_layer) or [inter-process communication method](https://wikipedia.org/wiki/Inter-process_communication).
+Note: The value SHOULD be normalized to lowercase.
+
+Consider always setting the transport when setting a port number, since
+a port number is ambiguous without knowing the transport. For example
+different processes could be listening on TCP port 12345 and UDP port 12345.
+"""
+
+NETWORK_TYPE: Final = "network.type"
+"""
+[OSI network layer](https://wikipedia.org/wiki/Network_layer) or non-OSI equivalent.
+Note: The value SHOULD be normalized to lowercase.
+"""
+
+
+class NetworkTransportValues(Enum):
+ TCP = "tcp"
+ """TCP."""
+ UDP = "udp"
+ """UDP."""
+ PIPE = "pipe"
+ """Named or anonymous pipe."""
+ UNIX = "unix"
+ """Unix domain socket."""
+ QUIC = "quic"
+ """QUIC."""
+
+
+class NetworkTypeValues(Enum):
+ IPV4 = "ipv4"
+ """IPv4."""
+ IPV6 = "ipv6"
+ """IPv6."""