101 lines
3.7 KiB
YAML
101 lines
3.7 KiB
YAML
groups:
|
|
- id: network-deprecated
|
|
prefix: net
|
|
type: attribute_group
|
|
brief: >
|
|
These attributes may be used for any network related operation.
|
|
attributes:
|
|
- id: sock.peer.name
|
|
type: string
|
|
deprecated: "Removed."
|
|
brief: Deprecated, no replacement at this time.
|
|
examples: ['/var/my.sock']
|
|
- id: sock.peer.addr
|
|
type: string
|
|
deprecated: "Replaced by `network.peer.address`."
|
|
brief: Deprecated, use `network.peer.address`.
|
|
examples: ['192.168.0.1']
|
|
- id: sock.peer.port
|
|
type: int
|
|
deprecated: "Replaced by `network.peer.port`."
|
|
examples: [65531]
|
|
brief: Deprecated, use `network.peer.port`.
|
|
- id: peer.name
|
|
type: string
|
|
deprecated: "Replaced by `server.address` on client spans and `client.address` on server spans."
|
|
brief: Deprecated, use `server.address` on client spans and `client.address` on server spans.
|
|
examples: ['example.com']
|
|
- id: peer.port
|
|
type: int
|
|
deprecated: "Replaced by `server.port` on client spans and `client.port` on server spans."
|
|
brief: Deprecated, use `server.port` on client spans and `client.port` on server spans.
|
|
examples: [8080]
|
|
- id: host.name
|
|
type: string
|
|
deprecated: "Replaced by `server.address`."
|
|
brief: Deprecated, use `server.address`.
|
|
examples: ['example.com']
|
|
- id: host.port
|
|
type: int
|
|
deprecated: "Replaced by `server.port`."
|
|
brief: Deprecated, use `server.port`.
|
|
examples: [8080]
|
|
- id: sock.host.addr
|
|
type: string
|
|
deprecated: "Replaced by `network.local.address`."
|
|
brief: Deprecated, use `network.local.address`.
|
|
examples: ['/var/my.sock']
|
|
- id: sock.host.port
|
|
type: int
|
|
deprecated: "Replaced by `network.local.port`."
|
|
brief: Deprecated, use `network.local.port`.
|
|
examples: [8080]
|
|
- id: transport
|
|
type:
|
|
allow_custom_values: true
|
|
members:
|
|
- id: ip_tcp
|
|
value: "ip_tcp"
|
|
- id: ip_udp
|
|
value: "ip_udp"
|
|
- id: pipe
|
|
value: "pipe"
|
|
brief: 'Named or anonymous pipe.'
|
|
- id: inproc
|
|
value: "inproc"
|
|
brief: 'In-process communication.'
|
|
note: >
|
|
Signals that there is only in-process communication not using a "real" network protocol
|
|
in cases where network attributes would normally be expected. Usually all other network
|
|
attributes can be left out in that case.
|
|
- id: other
|
|
value: "other"
|
|
brief: 'Something else (non IP-based).'
|
|
deprecated: "Replaced by `network.transport`."
|
|
brief: Deprecated, use `network.transport`.
|
|
- id: protocol.name
|
|
type: string
|
|
deprecated: "Replaced by `network.protocol.name`."
|
|
brief: Deprecated, use `network.protocol.name`.
|
|
examples: ['amqp', 'http', 'mqtt']
|
|
- id: protocol.version
|
|
type: string
|
|
deprecated: "Replaced by `network.protocol.version`."
|
|
brief: Deprecated, use `network.protocol.version`.
|
|
examples: '3.1.1'
|
|
- id: sock.family
|
|
type:
|
|
allow_custom_values: true
|
|
members:
|
|
- id: inet
|
|
value: 'inet'
|
|
brief: "IPv4 address"
|
|
- id: inet6
|
|
value: 'inet6'
|
|
brief: "IPv6 address"
|
|
- id: unix
|
|
value: 'unix'
|
|
brief: "Unix domain socket path"
|
|
deprecated: "Split to `network.transport` and `network.type`."
|
|
brief: Deprecated, use `network.transport` and `network.type`.
|