├── .DS_Store ├── 01_dashboards └── guidance.txt ├── 02_cloudwatchagent └── guidance.txt ├── 03_instancereachability └── Cloudwatch_add_reachability_check.sh ├── 04_cloudwatchevents └── guidance.txt ├── 05_alarms ├── db_freespace.sh ├── ec2_events │ ├── add_cw_event_ec2_retirement.sh │ └── template.json └── guidance.txt ├── 06_snstoslack └── snstoslack_lambda.js ├── 07_cismetricfilters ├── cisbenchmark.yaml └── url_for_cf.txt ├── README.md └── helpful_links.txt /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpcefxl/awsmonitoringstrategies/HEAD/.DS_Store -------------------------------------------------------------------------------- /01_dashboards/guidance.txt: -------------------------------------------------------------------------------- 1 | build a dashboard using the AWS console 2 | -------------------------------------------------------------------------------- /02_cloudwatchagent/guidance.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpcefxl/awsmonitoringstrategies/HEAD/02_cloudwatchagent/guidance.txt -------------------------------------------------------------------------------- /03_instancereachability/Cloudwatch_add_reachability_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpcefxl/awsmonitoringstrategies/HEAD/03_instancereachability/Cloudwatch_add_reachability_check.sh -------------------------------------------------------------------------------- /04_cloudwatchevents/guidance.txt: -------------------------------------------------------------------------------- 1 | Create CloudWatch Event rules in the AWS Console 2 | -------------------------------------------------------------------------------- /05_alarms/db_freespace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpcefxl/awsmonitoringstrategies/HEAD/05_alarms/db_freespace.sh -------------------------------------------------------------------------------- /05_alarms/ec2_events/add_cw_event_ec2_retirement.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpcefxl/awsmonitoringstrategies/HEAD/05_alarms/ec2_events/add_cw_event_ec2_retirement.sh -------------------------------------------------------------------------------- /05_alarms/ec2_events/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpcefxl/awsmonitoringstrategies/HEAD/05_alarms/ec2_events/template.json -------------------------------------------------------------------------------- /05_alarms/guidance.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpcefxl/awsmonitoringstrategies/HEAD/05_alarms/guidance.txt -------------------------------------------------------------------------------- /06_snstoslack/snstoslack_lambda.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpcefxl/awsmonitoringstrategies/HEAD/06_snstoslack/snstoslack_lambda.js -------------------------------------------------------------------------------- /07_cismetricfilters/cisbenchmark.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpcefxl/awsmonitoringstrategies/HEAD/07_cismetricfilters/cisbenchmark.yaml -------------------------------------------------------------------------------- /07_cismetricfilters/url_for_cf.txt: -------------------------------------------------------------------------------- 1 | https://github.com/rewindio/aws-security-hub-CIS-metrics/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpcefxl/awsmonitoringstrategies/HEAD/README.md -------------------------------------------------------------------------------- /helpful_links.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpcefxl/awsmonitoringstrategies/HEAD/helpful_links.txt --------------------------------------------------------------------------------