├── .circleci └── config.yml ├── .document ├── .gitignore ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── Procfile ├── README.md ├── Rakefile ├── VERSION ├── config.ru ├── dot.rvmrc ├── lib ├── librato-services.rb └── librato-services │ ├── authentication.rb │ ├── helpers │ ├── alert_helpers.rb │ └── snapshot_helpers.rb │ ├── numbers.rb │ ├── output.rb │ └── service.rb ├── librato-services.gemspec ├── services ├── big_panda.rb ├── campfire.rb ├── flowdock.rb ├── hipchat.rb ├── mail.rb ├── neptune.rb ├── opsgenie.rb ├── pagerduty.rb ├── slack.rb ├── sns.rb ├── victorops.rb ├── webhook.rb └── zapier.rb └── test ├── big_panda_test.rb ├── campfire_test.rb ├── clearing_test.rb ├── flowdock_test.rb ├── helper.rb ├── hipchat_test.rb ├── mail_test.rb ├── neptune_test.rb ├── numbers_test.rb ├── opsgenie_test.rb ├── output_test.rb ├── pagerduty_test.rb ├── slack_test.rb ├── sns_test.rb ├── timeout_service_test.rb ├── victorops_test.rb ├── webhook_test.rb └── zapier_test.rb /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/.document -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.4.3 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 3.3.4 -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/config.ru -------------------------------------------------------------------------------- /dot.rvmrc: -------------------------------------------------------------------------------- 1 | rvm use ruby-1.9.3 2 | -------------------------------------------------------------------------------- /lib/librato-services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/lib/librato-services.rb -------------------------------------------------------------------------------- /lib/librato-services/authentication.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/lib/librato-services/authentication.rb -------------------------------------------------------------------------------- /lib/librato-services/helpers/alert_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/lib/librato-services/helpers/alert_helpers.rb -------------------------------------------------------------------------------- /lib/librato-services/helpers/snapshot_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/lib/librato-services/helpers/snapshot_helpers.rb -------------------------------------------------------------------------------- /lib/librato-services/numbers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/lib/librato-services/numbers.rb -------------------------------------------------------------------------------- /lib/librato-services/output.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/lib/librato-services/output.rb -------------------------------------------------------------------------------- /lib/librato-services/service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/lib/librato-services/service.rb -------------------------------------------------------------------------------- /librato-services.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/librato-services.gemspec -------------------------------------------------------------------------------- /services/big_panda.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/services/big_panda.rb -------------------------------------------------------------------------------- /services/campfire.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/services/campfire.rb -------------------------------------------------------------------------------- /services/flowdock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/services/flowdock.rb -------------------------------------------------------------------------------- /services/hipchat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/services/hipchat.rb -------------------------------------------------------------------------------- /services/mail.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/services/mail.rb -------------------------------------------------------------------------------- /services/neptune.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/services/neptune.rb -------------------------------------------------------------------------------- /services/opsgenie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/services/opsgenie.rb -------------------------------------------------------------------------------- /services/pagerduty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/services/pagerduty.rb -------------------------------------------------------------------------------- /services/slack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/services/slack.rb -------------------------------------------------------------------------------- /services/sns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/services/sns.rb -------------------------------------------------------------------------------- /services/victorops.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/services/victorops.rb -------------------------------------------------------------------------------- /services/webhook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/services/webhook.rb -------------------------------------------------------------------------------- /services/zapier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/services/zapier.rb -------------------------------------------------------------------------------- /test/big_panda_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/test/big_panda_test.rb -------------------------------------------------------------------------------- /test/campfire_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/test/campfire_test.rb -------------------------------------------------------------------------------- /test/clearing_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/test/clearing_test.rb -------------------------------------------------------------------------------- /test/flowdock_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/test/flowdock_test.rb -------------------------------------------------------------------------------- /test/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/test/helper.rb -------------------------------------------------------------------------------- /test/hipchat_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/test/hipchat_test.rb -------------------------------------------------------------------------------- /test/mail_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/test/mail_test.rb -------------------------------------------------------------------------------- /test/neptune_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/test/neptune_test.rb -------------------------------------------------------------------------------- /test/numbers_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/test/numbers_test.rb -------------------------------------------------------------------------------- /test/opsgenie_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/test/opsgenie_test.rb -------------------------------------------------------------------------------- /test/output_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/test/output_test.rb -------------------------------------------------------------------------------- /test/pagerduty_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/test/pagerduty_test.rb -------------------------------------------------------------------------------- /test/slack_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/test/slack_test.rb -------------------------------------------------------------------------------- /test/sns_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/test/sns_test.rb -------------------------------------------------------------------------------- /test/timeout_service_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/test/timeout_service_test.rb -------------------------------------------------------------------------------- /test/victorops_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/test/victorops_test.rb -------------------------------------------------------------------------------- /test/webhook_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/test/webhook_test.rb -------------------------------------------------------------------------------- /test/zapier_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/librato/librato-services/HEAD/test/zapier_test.rb --------------------------------------------------------------------------------