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

[8.7] Description for host.name updated (FQDN issue) #2122

Merged
merged 5 commits into from
Jan 25, 2023
Merged
Show file tree
Hide file tree
Changes from 4 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
1 change: 1 addition & 0 deletions CHANGELOG.next.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ Thanks, you're awesome :-) -->
#### Added

#### Improvements
* description for `host.name` definition updated to encourage use of FDQN #2122

#### Deprecated

Expand Down
2 changes: 1 addition & 1 deletion docs/fields/field-details.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -5145,7 +5145,7 @@ example: `["00-00-5E-00-53-23", "00-00-5E-00-53-24"]`

a| Name of the host.

It can contain what `hostname` returns on Unix systems, the fully qualified domain name, or a name specified by the user. The sender decides which value to use.
It can contain what hostname returns on Unix systems, the fully qualified domain name (FQDN), or a name specified by the user. The recommended value is the lowercase FQDN of the host.

type: keyword

Expand Down
6 changes: 3 additions & 3 deletions experimental/generated/beats/fields.ecs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4066,9 +4066,9 @@
ignore_above: 1024
description: 'Name of the host.

It can contain what `hostname` returns on Unix systems, the fully qualified
domain name, or a name specified by the user. The sender decides which value
to use.'
It can contain what hostname returns on Unix systems, the fully qualified
domain name (FQDN), or a name specified by the user. The recommended value
is the lowercase FQDN of the host.'
- name: network.egress.bytes
level: extended
type: long
Expand Down
5 changes: 3 additions & 2 deletions experimental/generated/ecs/ecs_flat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5814,8 +5814,9 @@ host.name:
dashed_name: host-name
description: 'Name of the host.

It can contain what `hostname` returns on Unix systems, the fully qualified domain
name, or a name specified by the user. The sender decides which value to use.'
It can contain what hostname returns on Unix systems, the fully qualified domain
name (FQDN), or a name specified by the user. The recommended value is the lowercase
FQDN of the host.'
flat_name: host.name
ignore_above: 1024
level: core
Expand Down
6 changes: 3 additions & 3 deletions experimental/generated/ecs/ecs_nested.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7217,9 +7217,9 @@ host:
dashed_name: host-name
description: 'Name of the host.

It can contain what `hostname` returns on Unix systems, the fully qualified
domain name, or a name specified by the user. The sender decides which value
to use.'
It can contain what hostname returns on Unix systems, the fully qualified
domain name (FQDN), or a name specified by the user. The recommended value
is the lowercase FQDN of the host.'
flat_name: host.name
ignore_above: 1024
level: core
Expand Down
6 changes: 3 additions & 3 deletions generated/beats/fields.ecs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4016,9 +4016,9 @@
ignore_above: 1024
description: 'Name of the host.

It can contain what `hostname` returns on Unix systems, the fully qualified
domain name, or a name specified by the user. The sender decides which value
to use.'
It can contain what hostname returns on Unix systems, the fully qualified
domain name (FQDN), or a name specified by the user. The recommended value
is the lowercase FQDN of the host.'
- name: network.egress.bytes
level: extended
type: long
Expand Down
5 changes: 3 additions & 2 deletions generated/ecs/ecs_flat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5745,8 +5745,9 @@ host.name:
dashed_name: host-name
description: 'Name of the host.

It can contain what `hostname` returns on Unix systems, the fully qualified domain
name, or a name specified by the user. The sender decides which value to use.'
It can contain what hostname returns on Unix systems, the fully qualified domain
name (FQDN), or a name specified by the user. The recommended value is the lowercase
FQDN of the host.'
flat_name: host.name
ignore_above: 1024
level: core
Expand Down
6 changes: 3 additions & 3 deletions generated/ecs/ecs_nested.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7137,9 +7137,9 @@ host:
dashed_name: host-name
description: 'Name of the host.

It can contain what `hostname` returns on Unix systems, the fully qualified
domain name, or a name specified by the user. The sender decides which value
to use.'
It can contain what hostname returns on Unix systems, the fully qualified
domain name (FQDN), or a name specified by the user. The recommended value
is the lowercase FQDN of the host.'
flat_name: host.name
ignore_above: 1024
level: core
Expand Down
7 changes: 3 additions & 4 deletions schemas/host.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
Host types include hardware, virtual machines, Docker containers, and Kubernetes nodes.
type: group
fields:

- name: hostname
level: core
type: keyword
Expand All @@ -44,9 +43,9 @@
description: >
Name of the host.

It can contain what `hostname` returns on Unix systems, the fully
qualified domain name, or a name specified by the user. The sender
decides which value to use.
It can contain what hostname returns on Unix systems, the fully
qualified domain name (FQDN), or a name specified by the user.
The recommended value is the lowercase FQDN of the host.

- name: id
level: core
Expand Down