Skip to content

Commit

Permalink
adding field names for aws_ec2 provider (#16403)
Browse files Browse the repository at this point in the history
  • Loading branch information
kaiyan-sheng committed Feb 20, 2020
1 parent 075f44a commit 4b69bf2
Showing 1 changed file with 47 additions and 2 deletions.
49 changes: 47 additions & 2 deletions x-pack/libbeat/autodiscover/providers/aws/ec2/_meta/fields.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,56 @@
- key: ec2_listener
- key: aws.ec2
title: "EC2 Listener"
description: >
AWS EC2 Listeners
short_config: false
release: experimental
fields:
- name: ec2_listener
- name: aws.ec2
type: group
description: >
Represents an AWS EC2 Listener, e.g. state of an EC2.
fields:
- name: architecture
type: keyword
description: The EC2 instance architecture (i386 | x86_64 | arm64 ).
- name: image.id
type: keyword
description: The ID of the image used to launch the instance.
- name: kernel.id
type: keyword
description: The kernel associated with this instance, if applicable.
- name: monitoring.state
type: keyword
description: Indicates whether detailed monitoring is enabled (disabled | enabled).
- name: private.dns_name
type: keyword
description: The private DNS name.
- name: private.ip
type: keyword
description: The IPv4 address of the network interface within the subnet.
- name: public.dns_name
type: keyword
description: The public DNS name.
- name: public.ip
type: keyword
description: The public IPv4 address assigned to the instance, if applicable.
- name: root_device_name
type: keyword
description: The device name of the root device volume (for example, /dev/sda1).
- name: state.code
type: keyword
description: The reason code for the state change.
- name: state.name
type: keyword
description: A message that describes the state change.
- name: subnet.id
type: keyword
description: The ID of the subnet in which the instance is running.
- name: vpc.id
type: keyword
description: The ID of the VPC that the instance is running in.
- name: tags.*
type: object
object_type: keyword
object_type_mapping_type: "*"
description: Tag key value pairs from aws resources.

0 comments on commit 4b69bf2

Please sign in to comment.