├── .gitignore ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── alerts ├── inode.rb ├── load.rb ├── memory.rb ├── rds_filesys_disk.rb └── swap.rb ├── config.yml ├── datadog.treetop ├── groups ├── admins.yaml └── root.yaml ├── host_sources ├── billow_rds.rb └── billow_sqs.rb ├── lib └── datadog_query_checker.rb ├── script └── pre-commit ├── spec ├── datadog_query_spec.rb └── spec_helper.rb └── test ├── check_query.rb └── check_syntax.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/alerts/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/alerts/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/alerts/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/alerts/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/alerts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/alerts/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/alerts/HEAD/Rakefile -------------------------------------------------------------------------------- /alerts/inode.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/alerts/HEAD/alerts/inode.rb -------------------------------------------------------------------------------- /alerts/load.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/alerts/HEAD/alerts/load.rb -------------------------------------------------------------------------------- /alerts/memory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/alerts/HEAD/alerts/memory.rb -------------------------------------------------------------------------------- /alerts/rds_filesys_disk.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/alerts/HEAD/alerts/rds_filesys_disk.rb -------------------------------------------------------------------------------- /alerts/swap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/alerts/HEAD/alerts/swap.rb -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/alerts/HEAD/config.yml -------------------------------------------------------------------------------- /datadog.treetop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/alerts/HEAD/datadog.treetop -------------------------------------------------------------------------------- /groups/admins.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/alerts/HEAD/groups/admins.yaml -------------------------------------------------------------------------------- /groups/root.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | name: root 3 | alias_for: admins 4 | -------------------------------------------------------------------------------- /host_sources/billow_rds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/alerts/HEAD/host_sources/billow_rds.rb -------------------------------------------------------------------------------- /host_sources/billow_sqs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/alerts/HEAD/host_sources/billow_sqs.rb -------------------------------------------------------------------------------- /lib/datadog_query_checker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/alerts/HEAD/lib/datadog_query_checker.rb -------------------------------------------------------------------------------- /script/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/alerts/HEAD/script/pre-commit -------------------------------------------------------------------------------- /spec/datadog_query_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/alerts/HEAD/spec/datadog_query_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/alerts/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /test/check_query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/alerts/HEAD/test/check_query.rb -------------------------------------------------------------------------------- /test/check_syntax.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | !(find . -name \*.rb -exec ruby -c '{}' \; 2>&1 | grep -v "Syntax OK") 4 | --------------------------------------------------------------------------------