Add `net.peer.ip` and `net.host.ip` to deprecated yaml (#1029)
Co-authored-by: Trask Stalnaker <trask.stalnaker@gmail.com>
This commit is contained in:
parent
7c3b66874c
commit
597364dc58
|
|
@ -0,0 +1,22 @@
|
|||
# Use this changelog template to create an entry for release notes.
|
||||
#
|
||||
# If your change doesn't affect end users you should instead start
|
||||
# your pull request title with [chore] or use the "Skip Changelog" label.
|
||||
|
||||
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
|
||||
change_type: bug_fix
|
||||
|
||||
# The name of the area of concern in the attributes-registry, (e.g. http, cloud, db)
|
||||
component: net
|
||||
|
||||
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
|
||||
note: Add previously deprecated net attributes to registry
|
||||
|
||||
# Mandatory: One or more tracking issues related to the change. You can use the PR number here if no issue exists.
|
||||
# The values here must be integers.
|
||||
issues: [1029]
|
||||
|
||||
# (Optional) One or more lines of additional information to render under the primary note.
|
||||
# These lines will be padded with 2 spaces and then inserted directly into the document.
|
||||
# Use pipe (|) for multiline entries.
|
||||
subtext: These attributes were deprecated in 1.13
|
||||
|
|
@ -107,8 +107,10 @@ These attributes may be used for any network related operation.
|
|||
|
||||
| Attribute | Type | Description | Examples | Stability |
|
||||
| ---------------------- | ------ | -------------------------------------------------------------------------------------- | -------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| `net.host.ip` | string | Deprecated, use `network.local.address`. | `192.168.0.1` | <br>Replaced by `network.local.address`. |
|
||||
| `net.host.name` | string | Deprecated, use `server.address`. | `example.com` | <br>Replaced by `server.address`. |
|
||||
| `net.host.port` | int | Deprecated, use `server.port`. | `8080` | <br>Replaced by `server.port`. |
|
||||
| `net.peer.ip` | string | Deprecated, use `network.peer.address`. | `127.0.0.1` | <br>Replaced by `network.peer.address`. |
|
||||
| `net.peer.name` | string | Deprecated, use `server.address` on client spans and `client.address` on server spans. | `example.com` | <br>Replaced by `server.address` on client spans and `client.address` on server spans. |
|
||||
| `net.peer.port` | int | Deprecated, use `server.port` on client spans and `client.port` on server spans. | `8080` | <br>Replaced by `server.port` on client spans and `client.port` on server spans. |
|
||||
| `net.protocol.name` | string | Deprecated, use `network.protocol.name`. | `amqp`; `http`; `mqtt` | <br>Replaced by `network.protocol.name`. |
|
||||
|
|
|
|||
|
|
@ -35,12 +35,24 @@ groups:
|
|||
stability: experimental
|
||||
brief: Deprecated, use `server.port` on client spans and `client.port` on server spans.
|
||||
examples: [8080]
|
||||
- id: peer.ip
|
||||
type: string
|
||||
deprecated: "Replaced by `network.peer.address`."
|
||||
stability: experimental
|
||||
brief: Deprecated, use `network.peer.address`.
|
||||
examples: '127.0.0.1'
|
||||
- id: host.name
|
||||
type: string
|
||||
deprecated: "Replaced by `server.address`."
|
||||
stability: experimental
|
||||
brief: Deprecated, use `server.address`.
|
||||
examples: ['example.com']
|
||||
- id: host.ip
|
||||
type: string
|
||||
deprecated: "Replaced by `network.local.address`."
|
||||
stability: experimental
|
||||
brief: Deprecated, use `network.local.address`.
|
||||
examples: '192.168.0.1'
|
||||
- id: host.port
|
||||
type: int
|
||||
deprecated: "Replaced by `server.port`."
|
||||
|
|
|
|||
Loading…
Reference in New Issue