diff --git a/rfcs/text/0000-host-and-hostname-fields.md b/rfcs/text/0000-host-and-hostname-fields.md new file mode 100644 index 0000000000..f11f16099a --- /dev/null +++ b/rfcs/text/0000-host-and-hostname-fields.md @@ -0,0 +1,112 @@ +# 0000: host and hostname fields + + +- Stage: **0 (strawperson)** +- Date: **TBD** + + + + + +Include host information (serial number, manufacturer, and model), bring hostname across other applicable fieldsets. These fields represent fields not currently represented in the ECS standard that we see in our data sources Tenable SC, Tanium, etc.) that we believe are important enough to create an ECS field to capture for our ELK Siem users. + + + + + +## Fields + + + + + +## Usage + + + +## Source data + + + + + + + +## Scope of impact + + + +## Concerns + + + + + + + +## People + +The following are the people that consulted on the contents of this RFC. + +* @hadadata59 | author + + + + +## References + + + +### RFC Pull Requests + + + +* Stage 0: https://github.com/elastic/ecs/pull/1512 + + diff --git a/rfcs/text/0000/agent.yml b/rfcs/text/0000/agent.yml new file mode 100644 index 0000000000..fcc7e1df3d --- /dev/null +++ b/rfcs/text/0000/agent.yml @@ -0,0 +1,7 @@ +- name: agent + fields: + - name: hostname + type: keyword + level: extended + description: The agent hostname. + diff --git a/rfcs/text/0000/destination.yml b/rfcs/text/0000/destination.yml new file mode 100644 index 0000000000..a457db75e6 --- /dev/null +++ b/rfcs/text/0000/destination.yml @@ -0,0 +1,7 @@ +- name: destination + fields: + - name: hostname + type: keyword + level: extended + description: The destination hostname. + diff --git a/rfcs/text/0000/host.yml b/rfcs/text/0000/host.yml new file mode 100644 index 0000000000..50c76d3d9d --- /dev/null +++ b/rfcs/text/0000/host.yml @@ -0,0 +1,25 @@ +- name: host + fields: + - name: model + type: keyword + level: extended + short: Model of the host. + example: "Latitude 5580" + description: > + The model associated with the host. + + - name: manufacturer + type: keyword + level: extended + short: Manufacturer of the host. + example: "Dell Inc." + description: > + The manufacturer associated with the host. + + - name: serial_number + type: keyword + level: extended + short: Serial number of the host. + description: > + The serial number (unique identifier) associated with the host. + diff --git a/rfcs/text/0000/source.yml b/rfcs/text/0000/source.yml new file mode 100644 index 0000000000..3c2b719610 --- /dev/null +++ b/rfcs/text/0000/source.yml @@ -0,0 +1,7 @@ +- name: source + fields: + - name: hostname + type: keyword + level: extended + description: The source hostname. +