Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update destination attribute briefs #243

Merged
merged 2 commits into from
Aug 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/general/attributes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 -->
Expand Down
4 changes: 2 additions & 2 deletions model/destination.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Loading