Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/flapjack/flapjack
Monitoring notification routing + event processing system. For issues with the Flapjack packages, please see https://github.com/flapjack/omnibus-flapjack/
https://github.com/flapjack/flapjack
Last synced: 5 days ago
JSON representation
Monitoring notification routing + event processing system. For issues with the Flapjack packages, please see https://github.com/flapjack/omnibus-flapjack/
- Host: GitHub
- URL: https://github.com/flapjack/flapjack
- Owner: flapjack
- License: mit
- Archived: true
- Created: 2009-03-08T11:47:49.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2023-01-19T22:37:18.000Z (almost 2 years ago)
- Last Synced: 2024-10-30T01:04:49.423Z (10 days ago)
- Language: Ruby
- Homepage: http://flapjack.io
- Size: 11.2 MB
- Stars: 639
- Watchers: 33
- Forks: 92
- Open Issues: 142
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
Awesome Lists containing this project
- awesome-starred - flapjack/flapjack - Monitoring notification routing + event processing system. For issues with the Flapjack packages, please see https://github.com/flapjack/omnibus-flapjack/ (others)
README
# ![Flapjack](http://flapjack.io/images/flapjack-2013-notext-transparent-50-50.png "Flapjack") Flapjack
[![Build Status](https://travis-ci.org/flapjack/flapjack.png)](https://travis-ci.org/flapjack/flapjack)
[Flapjack](http://flapjack.io/) is a flexible monitoring notification routing system that handles:
* **Alert routing** (determining who should receive alerts based on interest, time of day, scheduled maintenance, etc)
* **Alert summarisation** (with per-user, per media summary thresholds)
* **Your standard operational tasks** (setting scheduled maintenance, acknowledgements, etc)Flapjack will be immediately useful to you if:
* You want to **identify failures faster** by rolling up your alerts across multiple monitoring systems.
* You monitor infrastructures that have **multiple teams responsible** for keeping them up.
* Your monitoring infrastructure is **multitenant**, and each customer has a **bespoke alerting strategy**.
* You want to dip your toe in the water and try alternative check execution engines like Sensu, Icinga, or cron in parallel to Nagios.### Try it out with the Quickstart Guide
The [Quickstart](http://flapjack.io/docs/2.x/usage/quickstart/) guide will help you get Flapjack up and running in a VM locally using Vagrant and VirtualBox.
### The technical low-down
Flapjack provides a scalable method for dealing with events representing changes in system state (OK -> WARNING -> CRITICAL transitions) and alerting appropriate people as necessary.
At its core, Flapjack processes events received from external check execution engines, such as Nagios. Nagios provides a 'perfdata' event output channel, which writes to a named pipe. `flapjack-nagios-receiver` then reads from this named pipe, converts each line to JSON and adds them to the events queue.
Flapjack sits downstream of check execution engines (like Nagios, Sensu, Icinga, or cron), processing events to determine:
* if a problem has been detected
* who should know about the problem
* how they should be toldAdditional check engines can be supported by adding additional receiver processes similar to the nagios receiver.
## Installing
**NB: v2 packages will be ready soon -- for the moment these instructions will not work**
**Ubuntu Precise 64 (12.04):**
Tell apt to trust the Flapjack package signing key:
```
gpg --keyserver keys.gnupg.net --recv-keys 803709B6
gpg -a --export 803709B6 | sudo apt-key add -
```Add the Flapjack Debian repository to your Apt sources:
```text
echo "deb http://packages.flapjack.io/deb/v2 precise main" | sudo tee /etc/apt/sources.list.d/flapjack.list
```Install the latest Flapjack package:
```text
sudo apt-get update
sudo apt-get install flapjack
```Alternatively, [download the deb](http://packages.flapjack.io/deb/v2/pool/main/f/flapjack/) and install using `sudo dpkg -i `
The Flapjack package is an [Omnibus](https://github.com/opscode/omnibus) package and as such contains most dependencies under `/opt/flapjack`, including Redis.
Installing the package will start Redis (non standard port) and Flapjack. You should now be able to access the Flapjack Web UI at:
[http://localhost:3080/](http://localhost:3080)
And consume the [REST API](http://flapjack.io/docs/2.x/jsonapi/) at:
[http://localhost:3081/](http://localhost:3081)
N.B. The Redis installed by Flapjack runs on a non-standard port (6380), so it doesn't conflict with other Redis instances you may already have installed.
**Other OSes:**
Currently we only make a package for Ubuntu Precise (amd64). If you feel comfortable getting a ruby environment going on your preferred OS, then you can also just install Flapjack from rubygems.org:
```text
gem install flapjack
```Using a tool like [rbenv](https://github.com/sstephenson/rbenv) or [rvm](https://rvm.io/) is recommended to keep your Ruby applications from intefering with one another.
Alternatively, you can add support for your OS of choice to [omnibus-flapjack](https://github.com/flapjack/omnibus-flapjack) and build a native package. Pull requests welcome, and we'll help you make this happen!
You'll also need Redis >= 2.6.12.
## Configuring
Have a look at the [default config file](https://github.com/flapjack/flapjack/blob/master/etc/flapjack_config.toml.example) and modify things as required. The package installer copies this to `/etc/flapjack/flapjack_config.toml` if it doesn't already exist.
``` bash
# edit the config
sudo vi /etc/flapjack/flapjack_config.toml# reload the config
sudo /etc/init.d/flapjack reload
```## Running
**Ubuntu Precise 64:**
After installing the Flapjack package, Redis and Flapjack should be automatically started.
First up, start Redis if it's not already started:
``` bash
# status:
sudo /etc/init.d/redis-flapjack status# start:
sudo /etc/init.d/redis-flapjack start
```Operating Flapjack:
``` bash
# status:
sudo /etc/init.d/flapjack status# reload:
sudo /etc/init.d/flapjack reload# restart:
sudo /etc/init.d/flapjack restart# stop:
sudo /etc/init.d/flapjack stop# start:
sudo /etc/init.d/flapjack start
```## Usage
Please see the [documentation](http://flapjack.io/docs/2.x/).
## Developing Flapjack
Information on developing more Flapjack components or contributing to core Flapjack development can be found in the [Developing](http://flapjack.io/docs/2.x/development/DEVELOPING/) section of [the docs](http://flapjack.io/docs/2.x/).
Note that the master branch corresponds to Flapjack 2; maintenance builds for Flapjack 1 are built from the maint/1.x branch.
## Documentation Submodule
We have the documentation for this project on a github wiki and also referenced as a submodule at /doc in this project. Run the following commands to populate the local doc/ directory:
```
git submodule init
git submodule update
```If you make changes to the documentation locally, here's how to publish them:
* Checkout master within the doc subdir, otherwise you'll be commiting to no branch, a.k.a. *no man's land*.
* git add, commit and push from inside the doc subdir
* Add, commit and push the doc dir from the root (this updates the pointer in the main git repo to the correct ref in the doc repo, we think...)## RTFM
All of [the documentation](http://flapjack.io/docs/2.x/).