No release in over 3 years
Low commit activity in last 3 years
Used for incident management where a card represents an incident.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.11
~> 10.0

Runtime

 Project Readme

Sensu check for new incidents in Trello

Translate the presence of one or more Trello cards into actionable Sensu alerts to enable using Trello for triggering incident response.

Checks for cards in a trello list. If cards are present, the check returns CRITICAL, containing name and date of last activity of card. When more than one card is present, all card names and dates are returned with ; delimiter.

Installation

Add this line to your application's Gemfile:

gem 'sensu-plugins-trello'

And then execute:

$ bundle

Or install it yourself as:

$ gem install sensu-plugins-trello

CONFIGURATION

Configuration of API key and API token should be done through the sensu settings file located in /etc/sensu/conf.d/.

api_key can be obtained directly from the following link:

https://trello.com/app-key

api_token can be obtained by visiting the following link (replace $API_KEY with the obtained api_key):

https://trello.com/1/authorize?expiration=never&scope=read&response_type=token&name=sensu-plugins-trello&key=$API_KEY

list can be obtained by adding .json to a card in the browser in the list that should be monitored and search for idList in the JSON-output. Note that in a production environment, api_key and api_token should be specified in the Sensu settings rather than through CLI parameters.

USAGE

Check if a specific trello list is empty or contains cards

Required parameters

Parameter Description
-l LIST id of the Trello list to be checked
-k KEY Trello API key
-t TOKEN Trello API token

Optional parameters

Parameter Description
-h HOST Trello API host
-p PORT Trello API port
--timeout TIMEOUT Trello request timeout in seconds

Example:

 ./bin/check-trello-incidents.rb -k 123456789012 -t 1234567890121234567890 -l 1234567890

Development

After checking out the repo, run bin/setup to install dependencies. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/aboutsource/sensu-plugins-trello.

Security