obi-a / ragios

A tiny, nimble & hackable system monitoring framework

Home Page:https://www.whisperservers.com/ragios/ragios-saint-ruby/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ragios (Saint Ruby)

Build Status

Ragios can be used to monitor any type of system including websites, servers, system services and web applications.

Sample usage to monitor a website for uptime in Ruby code:

monitor = {
  monitor: "My Website",
  url: "https://mysite.com",
  every: "5m",
  contact: "admin@mail.com",
  via: "email_notifier",
  plugin: "uptime_monitor"
}

ragios.create(monitor)

The above example creates a monitor that monitor uses an uptime_monitor plugin to monitor the website https://mysite.com for uptime. This monitor runs tests on the website every 5 minutes, if it detects the website is down, it sends an alert email to admin@mail.com via an email notifier.

Features:

A small and minimal extensible design:

  • Users can add, update, start, stop, restart and delete monitors that can monitor anything in simple Ruby code. See details

  • Includes a REST API, a web admin dashboard (Web UI) and a Ruby client rubygem that makes it easy to interact with Ragios directly with ruby code.

  • Ragios is re-designed & re-written to be modular, memory efficient, distributed, and scalable.

  • Ragios runs as a set of tiny distributed microservices, communicating with each other via ZeroMQ, and packaged with docker-compose, easily run it on a (kubernetes cluster)(https://github.com/obi-a/ragios/wiki/Run-Ragios-on-a-Kubernetes-Cluster).

  • Only dependency required to run Ragios locally is docker-compose or just run it on a Kubernetes cluster.

  • Plugins

    • Ragios relies on plugins to perform tests on different types of systems. The plugins are plain old ruby objects, any test/check that could be performed in ruby code could be performed by Ragios. Developers can create plugins to meet their specific needs.
    • Ragios ships with a built-in url_monitor plugin for monitoring http(s) endpoints for uptime, developers can implement other types of plugins.
  • Notifications & Notifiers

    • Notifications are sent out when a test fails and when the test passes again.
    • Notification messages are generated from ERB templates which developers can easily customize.
    • Multiple email addresses could be added to a monitor, so it notfies all email addresses when a test fails or recovers from failure.
    • Ragios relies on Notifiers to send out notifications. The notifiers are pluggable plain old ruby objects. Any type of notification that could be implemented in Ruby code can be sent by Ragios, notifications by email, SMS, Slack etc. Developers can create notifiers to meet their specific needs.
    • Ragios ships with a built-in Amazon SES notifier that sends notifications via Amazon SES, developers can implement other types of notifiers.
    • Multiple notifiers could be added to one monitor, so when a test fails or recovers from failure, it ssends out notifications via all the notifiers. For example a monitor could be setup to send notifications via email, SMS, Slack and twitter simultaneously.

I'm doing this just for fun and educational purposes.

Documentation:

License:

MIT License.

Copyright (c) 2020 Obi Akubue, obi-akubue.org

About

A tiny, nimble & hackable system monitoring framework

https://www.whisperservers.com/ragios/ragios-saint-ruby/

License:MIT License


Languages

Language:JavaScript 54.5%Language:Ruby 36.4%Language:CSS 4.5%Language:HTML 4.5%Language:Dockerfile 0.1%