Skip to content

Commit

Permalink
Add filters to AWS EC2 kibana dashboard and pie chart to show instanc…
Browse files Browse the repository at this point in the history
…e state (#10596)

* Add filter to EC2 Overview dashboard

* remove buttons from filters

* Combine filters into one panel

* Add Instance state pie chart

* Add changelog
  • Loading branch information
kaiyan-sheng authored Feb 19, 2019
1 parent 46ff9bf commit 59061d4
Show file tree
Hide file tree
Showing 6 changed files with 767 additions and 578 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d
- Release AWS module as GA. {pull}10345[10345]
- Add overview dashboard to Zookeeper Metricbeat module {pull}10379[10379]
- Add Consul Metricbeat module with Agent Metricset {pull}8631[8631]
- Add filters and pie chart for AWS EC2 dashboard. {pull}10596[10596]

*Packetbeat*

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 59061d4

Please sign in to comment.