Update destination attribute briefs (#243)

This commit is contained in:
Trask Stalnaker 2023-08-10 09:56:09 -07:00 committed by GitHub
parent 761ddca493
commit 313092ccf1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -221,8 +221,8 @@ Destination fields capture details about the receiver of a network exchange/pack
| Attribute | Type | Description | Examples | Requirement Level |
|---|---|---|---|---|
| `destination.domain` | string | The domain name of the destination system. [1] | `foo.example.com` | Recommended |
| `destination.address` | string | Peer address, for example IP address or UNIX socket name. | `10.5.3.2` | Recommended |
| `destination.port` | int | Peer port number | `3389`; `2888` | Recommended |
| `destination.address` | string | Destination address, for example IP address or UNIX socket name. | `10.5.3.2` | Recommended |
| `destination.port` | int | Destination port number | `3389`; `2888` | Recommended |
**[1]:** This value may be a host name, a fully qualified domain name, or another host naming format.
<!-- endsemconv -->

View File

@ -16,9 +16,9 @@ groups:
note: This value may be a host name, a fully qualified domain name, or another host naming format.
- id: address
type: string
brief: 'Peer address, for example IP address or UNIX socket name.'
brief: 'Destination address, for example IP address or UNIX socket name.'
examples: ['10.5.3.2']
- id: port
type: int
brief: 'Peer port number'
brief: 'Destination port number'
examples: [3389, 2888]