-
Notifications
You must be signed in to change notification settings - Fork 896
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add source and destination and fix some nits
- Loading branch information
Showing
6 changed files
with
88 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
groups: | ||
- id: destination | ||
prefix: destination | ||
type: attribute_group | ||
brief: These attributes may be used to describe the receiver of a network exchange/packet. | ||
These fields are populated from a network event, packet, or other event containing details of a network transaction. | ||
attributes: | ||
- id: domain | ||
type: string | ||
brief: The domain name of the destination system. | ||
examples: ['foo.example.com'] | ||
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.' | ||
examples: ['10.5.3.2'] | ||
- id: port | ||
type: int | ||
brief: 'Peer port number' | ||
examples: [3389, 2888] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
groups: | ||
- id: source | ||
prefix: source | ||
type: attribute_group | ||
brief: These attributes may be used to describe the sender of a network exchange/packet. | ||
These fields are populated from a network event, packet, or other event containing details of a network transaction. | ||
attributes: | ||
- id: domain | ||
type: string | ||
brief: The domain name of the source system. | ||
examples: ['foo.example.com'] | ||
note: This value may be a host name, a fully qualified domain name, or another host naming format. | ||
- id: address | ||
type: string | ||
brief: 'Source address, fo example IP address or UNIX socket name.' | ||
examples: ['10.5.3.2'] | ||
- id: port | ||
type: int | ||
brief: 'Source port number' | ||
examples: [3389, 2888] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters