Giter Club home page Giter Club logo

bearmon's Introduction

bearmon
=======

bearmon is a simple server monitoring tool designed to require minimal configuration.

* Checks each define one monitoring instance, for example a URL to make sure is OK.
* A contact is a communication instance, for example an email address or a phone number (for SMS).
* Alerts connect checks with contacts, so that the contact will be alerted when the check goes offline.

Installation
------------

Create a database from the schema defined in `install.sql`.

Setup
-----

First, look at config.php and configure database, mail, and other settings.

Define a check. The one below will make sure the URL contains the given substring.

    INSERT INTO checks (name, type, data) VALUES ('example.com', 'http_contains', 'url=http://example.com/critical.php&substring=GOOD');

Define a contact.

    INSERT INTO contacts (type, data) VALUES ('email', '[email protected]');

Define an alert.

    INSERT INTO alerts (check_id, contact_id) VALUES (1, 1);

Now, run bearmon:

    php monitor.php

Note: all "data" values above use URL encoding scheme to encode key-value pairs.
So, if your URL contains ampersand (&) symbols, they should be encoded as %26 in the database.
See monitor_decode in common.php for how the data is decoded.

Multi-source monitoring
---------------------

bearmon can be configured to monitor services from multiple sources.
This way, if the source crashes, you don't get extraneous notifications.

There are two steps to setting this up. You can do the first step without doing the second and get a decent system.

* Run monitor.php on multiple slaves with the same database setup.
* Configure your MySQL to run in clustered/HA mode.

bearmon's People

Contributors

uakfdotb avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.