Howdy, Stranger!

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


ServerStatus
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.

ServerStatus

mojedamojeda Member
edited September 2013 in General

ServerStatus first originated from BlueVM's original Server Monitoring script and then me taking it a little bit further. I've both live memory and disk space levels, a styled web interface a long with a mobile interface. The project is completely open source and available on github! I also had implemented it into LookingGlass in the dev branch, unfortunately it was added 4 months ago so I have no idea if it still works or not...

I've been neglecting it for the past few months but I've been receiving suggestions for new features as well as new interface. I've been hammering away at my computer and would like to say that version 3 is slowly underway and will feature hopefully many new features everyone may like.

I've seen a mix of both end users wanting to just keep an eye on their servers as well as server hosts using publicly or privately, so some of the features may appeal to others while to some not.

ServerStatus 3
New redesigned look
Server status history
Server Announcements
Up & Down Alerts + Emails too!
Server overview pages
Admin control panel

These features are not final and should they not work out may be cancelled.

Screenshots maybe?

I'm curious to know how many of you use ServerStatus and how (personal, or server host public/private viewing).

Thanked by 2k0nsl Inglar
«13

Comments

  • Great work!
    but you need to write a tutorial about how to install it :D

  • mojedamojeda Member
    edited September 2013

    The README on the github has instructions on how to :) https://github.com/mojeda/ServerStatus

    However version 3 is not on github yet as it's still early stages, but the current version still works just fine :)

  • Looks nice!

  • Nice work mojeda, will try it now :)

  • @amarc said:
    Let me guess.. this also requires exec(); and similar insecure nonsense ?

    No :) https://github.com/mojeda/ServerStatus/blob/master/uptime.php

  • This looks amazing!

    Will give it a try later today.

  • Just re-read that it's not available today :D, now I'm still using the last one

  • @mojeda, when version 3 will be released? I tried the old version just minutes ago and I love it!!

  • I gave it a try some days ago, couldnt for the life of me get it to work, my hang up was the database setup, the instructions are clear just not clear enough..

  • ndelaespadandelaespada Member, Host Rep

    Didn't know this existed, I will certainly give it a try and report how it goes.Thanks!

  • jarjar Patron Provider, Top Host, Veteran
    edited November 2013

    @iLLagHee said:
    I gave it a try some days ago, couldnt for the life of me get it to work, my hang up was the database setup, the instructions are clear just not clear enough..

    Assuming you have /root/.my.cnf setup (easy to google):

    mysql status < servers.sql

    mysql

    mysql> use servers;

    mysql> insert into servers(name, url, location, host, type) values('web', 'status.jarland.me/uptime.php', 'BHS', 'OVH', 'Web');

    Resource percentages aren't counting right though.

    Got it setup here: http://status.jarland.me/

  • Ima give it a try, I was adding the values to the db man. Thanks.

  • Is it showing "used" RAM and HDD now, and not "free" ?

  • jarjar Patron Provider, Top Host, Veteran
    edited November 2013

    @DalComp said:
    Is it showing "used" RAM and HDD now, and not "free" ?

    Actually yeah I guess that's what it's doing. I'm too drunk to figure out how to reverse it. I've never even made a percentage bar before :P

  • it is pretty easy to install.. but I more comfortable if the bar show the real usage, like 678MB/2GB or something like that.. when it show percentage, I couldnt estimated RAM used because I forgot RAM capacities on some of my vps :p

  • @mojeda why my uptime become like this? http://i.imgur.com/SzthoJZ.png
    only 3 of my vps..

  • @psycholyzern said:
    mojeda why my uptime become like this? http://i.imgur.com/SzthoJZ.png
    only 3 of my vps..

    LOL, how many days your server run? More than 10years? :D

  • edited November 2013

    @mojeda

    Most of the ones who try this get stuck adding servers, maybe add some automation to add servers via gui?

  • I'm also using this albeit slightly modified. V3 looks pretty 'sassy'! (ya I hate that word too)
    Do you have any ETA for when V3 will be available for public testing?

    PS, my 'server status' is deployed here:
    https://k0nsl.org/ServerStatus/

    Keep up the good work @mojeda.

  • k0nsl said: PS, my 'server status' is deployed here: https://k0nsl.org/ServerStatus/

    Feel like sharing :P

  • I'm using this for some months now and it's great, but what does that script need a database for? I mean there are only some entries in like 7 columns. I run this on a 64mb vps and feel like MySQL is oversized for it. I will try to modify it to use a conf file (something like xml or rather json I think). I'll publish my results when I manage to do this ;)

  • @chrisp said:
    I'm using this for some months now and it's great, but what does that script need a database for? I mean there are only some entries in like 7 columns. I run this on a 64mb vps and feel like MySQL is oversized for it. I will try to modify it to use a conf file (something like xml or rather json I think). I'll publish my results when I manage to do this ;)

    That is brilliant, Ill see if I can do that as well.

    Mun

  • Thanks @Mojeda ! I used this serverStatus for all of my VPSes monitor(private) and some VPN node monitor(public) for months, it's great! your ver.3 update seems quite impressive, right now I prefer to add up/down alert via email, and better to remove mysql required.

  • @ErawanArifNugroho said:
    LOL, how many days your server run? More than 10years? :D

    haha.. I reinstalled the server and things goes back to normal

  • can someone modified the script so it can show used/overall disk and ram?? I dont like percentage -_-

  • edited November 2013

    @psycholyzern said:
    can someone modified the script so it can show used/overall disk and ram?? I dont like percentage -_-

    Open the uptime.php, and modify it like this :

    $hddtotal = disk_total_space("/");
    $hddfree = disk_free_space("/");
    $hddmath = $hddfree / 1024 / 1024 / 1024;
    $hdd = round($hddmath) . 'GB';
    
  • @psycholyzern said:
    can someone modified the script so it can show used/overall disk and ram?? I dont like percentage -_-

    Working on it myself now :P

  • I'm using this too, just for personal use. I will give a try v3 when it released to public.
    http://ddl.nadiar.info/

  • did some modification as you said.. I realised that the info shown for my dedi online.net only 100GB total disk..

  • @psycholyzern said:
    did some modification as you said.. I realised that the info shown for my dedi online.net only 100GB total disk..

    How do you partition the disk? Sometimes the script can only read the device with it's own permission/www-data. If another disk not detected, maybe you need to change the ownership of it :)

Sign In or Register to comment.