Skip to content

Commit

Permalink
Cherry-pick to 7.0: Add filters and pie chart in EC2 Kibana Dashboard (
Browse files Browse the repository at this point in the history
…#10596) (#10838)

* Add filters to AWS EC2 kibana dashboard and pie chart to show instance state (#10596)

* Add filter to EC2 Overview dashboard

* remove buttons from filters

* Combine filters into one panel

* Add Instance state pie chart

* Add changelog

(cherry picked from commit 59061d4)
  • Loading branch information
kaiyan-sheng authored Feb 23, 2019
1 parent a6b3af9 commit 76e61da
Show file tree
Hide file tree
Showing 6 changed files with 768 additions and 578 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@ https://github.com/elastic/beats/compare/v7.0.0-beta1...master[Check the HEAD di

*Metricbeat*

- Add filters and pie chart for AWS EC2 dashboard. {pull}10596[10596]

*Packetbeat*

*Functionbeat*
Expand Down
3 changes: 2 additions & 1 deletion metricbeat/docs/modules/aws.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ in <<configuration-metricbeat>>. Here is an example configuration:
metricbeat.modules:
- module: aws
period: 300s
metricsets: ["ec2"]
metricsets:
- "ec2"
access_key_id: '${AWS_ACCESS_KEY_ID:""}'
secret_access_key: '${AWS_SECRET_ACCESS_KEY:""}'
session_token: '${AWS_SESSION_TOKEN:""}'
Expand Down
3 changes: 2 additions & 1 deletion x-pack/metricbeat/metricbeat.reference.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,8 @@ metricbeat.modules:
#--------------------------------- Aws Module ---------------------------------
- module: aws
period: 300s
metricsets: ["ec2"]
metricsets:
- "ec2"
access_key_id: '${AWS_ACCESS_KEY_ID:""}'
secret_access_key: '${AWS_SECRET_ACCESS_KEY:""}'
session_token: '${AWS_SESSION_TOKEN:""}'
Expand Down
3 changes: 2 additions & 1 deletion x-pack/metricbeat/module/aws/_meta/config.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
- module: aws
period: 300s
metricsets: ["ec2"]
metricsets:
- "ec2"
access_key_id: '${AWS_ACCESS_KEY_ID:""}'
secret_access_key: '${AWS_SECRET_ACCESS_KEY:""}'
session_token: '${AWS_SESSION_TOKEN:""}'
Expand Down
Loading

0 comments on commit 76e61da

Please sign in to comment.