-
Notifications
You must be signed in to change notification settings - Fork 458
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- add multi_fields to aws.cloudtrail.request_parameters aws.cloudtrail.response_elements aws.cloudtrail.additional_eventdata aws.cloudtrail.service_event_details - add new flattened versions of those fields at: aws.cloudtrail.flattened.request_parameters aws.cloudtrail.flattened.response_elements aws.cloudtrail.flattened.additional_eventdata aws.cloudtrail.flattened.service_event_details - add event.ingested - move ecs fields to ecs.yml Closes #167
- Loading branch information
Showing
5 changed files
with
184 additions
and
114 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
--- | ||
- name: event.action | ||
type: keyword | ||
description: The action captured by the event. | ||
- name: event.original | ||
type: keyword | ||
description: Raw text message of entire event. Used to demonstrate log integrity. | ||
- name: user.name | ||
type: keyword | ||
description: Short name or login of the user. | ||
- name: user.id | ||
type: keyword | ||
description: Unique identifier of the user. | ||
- name: cloud.account.id | ||
type: keyword | ||
description: The cloud account or organization id used to identify different entities | ||
in a multi-tenant environment. | ||
- name: event.provider | ||
type: keyword | ||
description: Source of the event. | ||
- name: cloud.region | ||
type: keyword | ||
description: Region in which this host is running. | ||
- name: source.address | ||
type: keyword | ||
description: Some event source addresses are defined ambiguously. The event will | ||
sometimes list an IP, a domain or a unix socket. You should always store the raw | ||
address in the .address field. | ||
- name: source.ip | ||
type: ip | ||
description: IP address of the source (IPv4 or IPv6). | ||
- name: user_agent.device.name | ||
type: keyword | ||
description: Name of the device. | ||
- name: user_agent.name | ||
type: keyword | ||
description: Name of the user agent. | ||
- name: user_agent.original | ||
type: keyword | ||
description: Unparsed user_agent string. | ||
- name: related.user | ||
type: keyword | ||
description: All the user names seen on your event. | ||
- name: event.kind | ||
type: keyword | ||
description: Event kind (e.g. event, alert, metric, state, pipeline_error, signal) | ||
- name: event.type | ||
type: keyword | ||
description: Event severity (e.g. info, error) | ||
- name: source.as.number | ||
type: long | ||
description: >- | ||
Unique number allocated to the autonomous system. The autonomous | ||
system number (ASN) uniquely identifies each network on the | ||
Internet. | ||
- name: source.as.organization.name | ||
type: keyword | ||
ignore_above: 1024 | ||
multi_fields: | ||
- name: text | ||
type: text | ||
norms: false | ||
default_field: false | ||
description: Organization name. | ||
- name: source.geo.city_name | ||
type: keyword | ||
ignore_above: 1024 | ||
description: City name. | ||
- name: source.geo.continent_name | ||
type: keyword | ||
ignore_above: 1024 | ||
description: Name of the continent. | ||
- name: source.geo.country_iso_code | ||
type: keyword | ||
ignore_above: 1024 | ||
description: Country ISO code. | ||
- name: source.geo.country_name | ||
type: keyword | ||
ignore_above: 1024 | ||
description: Country name. | ||
- name: source.geo.location | ||
type: geo_point | ||
description: Longitude and latitude. | ||
- name: source.geo.region_iso_code | ||
type: keyword | ||
ignore_above: 1024 | ||
description: Region ISO code. | ||
- name: source.geo.region_name | ||
type: keyword | ||
ignore_above: 1024 | ||
description: Region name. |
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
Oops, something went wrong.