Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


ray-mon v2, bash+php only status monitoring + history
New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

ray-mon v2, bash+php only status monitoring + history

RaymiiRaymii Member
edited September 2012 in General

So, updating my status monitoring program. New things include History per host and a (IMHO nicer) layout. Requires only php,bash and a webserver.

Version 2, the new one:

http://vps11.sparklingclouds.nl/status/stat.php

Version 1, the old one:

http://vps11.sparklingclouds.nl/status/index.php

Suggestions welcome. Will be released under a BSD style license when finished.

Thanked by 2giang haris

Comments

  • Love the new look! Good job.

  • Quick update, the server part is now completely php, it does not require a bash script anymore. It does however requires php to be able to get remote files (via file_get_contents). Do you hosts allow that, on shared?

  • @Raymii said: Quick update, the server part is now completely php, it does not require a bash script anymore. It does however requires php to be able to get remote files (via file_get_contents). Do you hosts allow that, on shared?

    Most shared hosts have "allow_url_fopen" disabled, so "file_get_contents" on a remote server wouldn't work... Some shared hosts have cURL enabled though which you could add as a backup.
    Check if "allow_url_fopen" is disabled, then check if cURL exists, if it does then proceed or else throw an error.

  • Ray-Mon - PHP/Bash server status monitoring

    screenshot

    Ray-Mon is a linux server monitoring script written in PHP and Bash, utilizing JSON as data storage. It requires only bash and a webserver on the client side, and only php on the server side. The client currently supports monitoring processes, uptime, updates, amount of users logged in, disk usage, RAM usage and network traffic.

    Live Demo

    This is a live demo of this script, monitoring the sparkling network (my vps servers)

    Features

    • Ping monitor
    • History per host
    • Threshold per monitored item.
    • Monitors:
      • Processes (lighttpd, apache, nginx, sshd, munin etc.)
      • RAM
      • Disk
      • Uptime
      • Users logged on
      • Updates
      • Network (RX/TX)

    Download

    Either git clone the github repo:

    git clone git://github.com/RaymiiOrg/raymon.git
    

    Or download the zipfile from github:

    https://github.com/RaymiiOrg/raymon/zipball/master

    Or download the zipfile from Raymii.org

    https://raymii.org/cms/content/downloads/raymon-0.0.2.zip

    Changelog

    v0.0.2

    • Server side now only requires 1 script instead of 2.
    • Client script creates the json better, if a value is missing the json file doesn't break.
    • Changed the visual style to a better layout.
    • Thresholds implemented and configurable.
    • History per host now implemented.

    v0.0.1

    • Initial release

    Install

    Client

    The client.sh script is a bash script which outputs JSON. It requires root access and should be run as root. It also requires a webserver, so that the server can get the json file.

    Software needed for the script:

    • bash
    • awk
    • grep
    • ifconfig
    • package managers supported: apt-get, yum and pacman (debian/ubuntu, centos/RHEL/SL, Arch)

    Setup a webserver (lighttpd, apache, boa, thttpd, nginx) for the script output. If there is already a webserver running on the server you dont need to install another one.

    Edit the script:

    Network interfaces. First one is used for the IP, the second one is used for bandwith calculations. This is done because openVZ has the "venet0" interface for the bandwith, and the venet0:0 interface with an IP. If you run bare-metal or KVM or vserver etc. you can set these two to the same value (eth0 eth1 etc).

    # Network interface for the IP address
    iface="venet0:0"
    # network interface for traffic monitoring (RX/TX bytes)
    iface2="venet0"
    

    The IP address of the server, this is used by me when deploying this script via chef or ansible. You can set it, but it is not required.

    Services are checked by doing a ps to see if the process is running. The last service should be defined without a comma, for valid JSON. The code below monitors "sshd", "lighttpd", "munin-node" and "syslog".

    SERVICE=lighttpd
    if ps ax | grep -v grep | grep $SERVICE > /dev/null; then echo -n "\"$SERVICE\" : \"running\","; else echo -n "\"$SERVICE\" : \"not running\","; fi
    SERVICE=sshd
    if ps ax | grep -v grep | grep $SERVICE > /dev/null; then echo -n "\"$SERVICE\" : \"running\","; else echo -n "\"$SERVICE\" : \"not running\","; fi
    SERVICE=syslog
    if ps ax | grep -v grep | grep $SERVICE > /dev/null; then echo -n "\"$SERVICE\" : \"running\","; else echo -n "\"$SERVICE\" : \"not running\","; fi
    #LAST SERVICE HAS TO BE WITHOUT , FOR VALID JSON!!!
    SERVICE=munin-node
    if ps ax | grep -v grep | grep $SERVICE > /dev/null; then echo -n "\"$SERVICE\" : \"running\""; else echo -n "\"$SERVICE\" : \"not running\""; fi
    

    To add a service, copy the 2 lines and replace the SERVICE=processname with the actual process name:

    SERVICE=processname
    if ps ax | grep -v grep | grep $SERVICE > /dev/null; then echo -n "\"$SERVICE\" : \"running\","; else echo -n "\"$SERVICE\" : \"not running\","; fi
    

    And, make sure the last service montiored does not echo a comma at the end, else the JSON is not valid and the php script fails.

    Now setup a cronjob to execute the script on a set interval and save the JSON to the webserver directory.

    As root, create the file /etc/cron.d/raymon-client with the following contents:

    SHELL=/bin/bash
    PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
    */5 * * * * root /root/scripts/client.sh | sed ':a;N;$!ba;s/\n//g' > /var/www/stat.json
    

    In my case, the client script is in /root/scripts, and my webserver directory is /var/www. Change this to your own setup. Also, you might want to change the time interval. */5 executes every 5 minutes. The sed line is in there to remove the newlines, this creates a shorter JSOn file, saves some KB's. The root after the cron time is special for a file in /etc/cron.d/, it tells cron as which user it has to execute the crontab file.

    When this is setup you should get a stat.json file in the /var/www/ folder containing the status json. If so, the client is setup correctly.

    Server

    The status server is a php script which fetches the json files from the clients every 5 minutes, saves them and shows them. It also saves the history, but that is defined below.

    Requirements:

    • Webserver with PHP (min. 5.2) and write access to the folder the script is located.

    Steps:

    Create a new folder on the webserver and make sure the webserver user (www-data) can write to it.

    Place the php file "stat.php" in that folder.

    Edit the host list in the php file to include your clients:

    The first parameter is the filename the json file is saved to, and the second is the URL where the json file is located.

    $hostlist=array(
                    'example1.org.json' => 'http://example1.org/stat.json',
                    'example2.nl.json' => 'http://example2.nl/stat.json',
                    'special1.network.json' => 'http://special1.network.eu:8080/stat.json',
                    'special2.network.json' => 'https://special2.network.eu/stat.json'
                    );
    

    Edit the values for the ping monitor:

    $pinglist = array(
                      'github.com',
                      'google.nl',
                      'tweakers.net',
                      'jupiterbroadcasting.com',
                      'lowendtalk.com',
                      'lowendbox.com' 
                      );
    

    Edit the threshold values:

    ## Set this to "secure" the history saving. This key has to be given as a parameter to save the history.
    $historykey = "8A29691737D";
    #the below values set the threshold before a value gets shown in bold on the page.
    # Max updates available
    $maxupdates = "10";
    # Max users concurrently logged in
    $maxusers = "3";
    # Max load.
    $maxload = "2";
    # Max disk usage (in percent)
    $maxdisk = "75";
    # Max RAM usage (in percent)
    $maxram = "75";
    

    History

    To save the history you have to setup a cronjob to get the status page with a special "history key". You define this in the stat.php file:

    ## Set this to "secure" the history saving. This key has to be given as a parameter to save the history.
    $historykey = "8A29691737D";    
    

    And then the cronjob to get it:

    ## This saves the history every 8 hours. 
    30 */8 * * * wget -qO /dev/null http://url-to-status.site/status/stat.php?action=save&key=8A29691737D
    

    The cronjob can be on any server which can access the status page, but preferably on the host where the status page is located.

  • You should make this guy the official logo of Raymon

    image

  • @gsrdgrdghd said: You should make this guy the official logo of Raymon

    Hehe, I think Ubisoft will sue my ass when I do that.

Sign In or Register to comment.