Build Status Gem Version

Sensu plugin for application insights

This is a pugin for application insights it add capabilities for sensu to use the application insights api in order to create alerts.

Installation Instructions

Gems

Installing via gem is the preferred method if one exists.

Standard Installation

gem install sensu-plugin-app-insights

Note: If the gem has an alpha tag then you will need to use the –prerelease flag or the gem will not be found.

Bundle

Add sensu-plugin-app-insights to your Gemfile and run bundle install or bundle update

Chef

Using the Sensu sensu_gem LWRP

sensu_gem 'sensu-plugin-app-insights' do
  version '0.1.0'
end

Using the Chef package resource

gem_package 'sensu-plugin-app-insights' do
  version '0.1.0'
end

Puppet

Using the Puppet sensu_gem package provider

package { 'sensu-plugin-app-insights':
  ensure   => '0.1.0',
  provider => sensu_gem,
}

Ansible

- gem: name=sensu-plugin-app-insights version=0.1.0 state=present executable=/opt/sensu/embedded/bin/gem