All Projects → tmrouse → Server Stats

tmrouse / Server Stats

Licence: mit
Statsy is a easy to use open source PHP tool for developers, that allows you to return various types of information about your server.

Projects that are alternatives of or similar to Server Stats

Pm2 Server Monit
Monitor server CPU / Memory / Process / Zombie Process / Disk size / Security Packages / Network Input / Network Output
Stars: ✭ 247 (+144.55%)
Mutual labels:  cpu, memory, stats
Arch
极客时间专栏《许式伟的架构课》相关的源代码:冯诺伊曼结构
Stars: ✭ 335 (+231.68%)
Mutual labels:  cpu, memory
Mobileperf
Android performance test
Stars: ✭ 286 (+183.17%)
Mutual labels:  cpu, memory
Sympact
🔥 Stupid Simple CPU/MEM "Profiler" for your JS code.
Stars: ✭ 439 (+334.65%)
Mutual labels:  cpu, memory
CPU-MEM-monitor
A simple script to log Linux CPU and memory usage (using top or pidstat command) over time and output an Excel- or OpenOfficeCalc-friendly report
Stars: ✭ 41 (-59.41%)
Mutual labels:  cpu, memory
vue-adaptive-utils
Deliver empathetic experiences to your users by adapting to their capabilities
Stars: ✭ 59 (-41.58%)
Mutual labels:  cpu, memory
Stats
macOS system monitor in your menu bar
Stars: ✭ 7,134 (+6963.37%)
Mutual labels:  cpu, stats
cpu-memory-monitor
CPU & Memory Monitor, auto dump.
Stars: ✭ 26 (-74.26%)
Mutual labels:  cpu, memory
Detoxinstruments
Detox Instruments is a performance–analysis and testing framework, designed to help developers profile their mobile apps in order to better understand and optimize their app's behavior and performance.
Stars: ✭ 513 (+407.92%)
Mutual labels:  cpu, memory
Heim
Cross-platform async library for system information fetching 🦀
Stars: ✭ 572 (+466.34%)
Mutual labels:  cpu, memory
Iglance
Free system monitor for OSX and macOS. See all system information at a glance in the menu bar.
Stars: ✭ 1,358 (+1244.55%)
Mutual labels:  cpu, memory
psutil
Cross-platform lib for process and system monitoring in Python
Stars: ✭ 8,488 (+8303.96%)
Mutual labels:  cpu, memory
audria
audria - A Utility for Detailed Ressource Inspection of Applications
Stars: ✭ 35 (-65.35%)
Mutual labels:  cpu, memory
Ybtaskscheduler
iOS 任务调度器,为 CPU 和内存减负(用于性能优化)
Stars: ✭ 270 (+167.33%)
Mutual labels:  cpu, memory
stress
Single-purpose tools to stress resources
Stars: ✭ 24 (-76.24%)
Mutual labels:  cpu, memory
Pidusage
Cross-platform process cpu % and memory usage of a PID
Stars: ✭ 364 (+260.4%)
Mutual labels:  cpu, memory
Rainbarf
it's like Rainmeter, but for CLI!
Stars: ✭ 1,087 (+976.24%)
Mutual labels:  cpu, memory
cpu monitor
ROS node that publishes all nodes' CPU and memory usage
Stars: ✭ 52 (-48.51%)
Mutual labels:  cpu, memory
kotary
Managing Kubernetes Quota with confidence
Stars: ✭ 85 (-15.84%)
Mutual labels:  cpu, memory
React Adaptive Hooks
Deliver experiences best suited to a user's device and network constraints
Stars: ✭ 4,750 (+4602.97%)
Mutual labels:  cpu, memory

Statsy

Statsy is an easy to use open source PHP tool for developers, that allows you to return various types of information about your server. It can be used to retrieve static information or can be set up to auto refresh any data that is needed for your project, however you can still use Statsy and Statsy Auto together at the same time. Statsy makes it very easy to create dashboards and server monitoring apps.

To use Statsy you can either call the function or get the information from an array. This allows you to do much more, as all the data is in an array making it easier to implement into your project and give you more flexibility.

UPDATE

The OO composer version of statsy will be released soon ETA: 1st August.

Table Of Contents

What Information Can Statsy Get?

Memory Stats

All memory stats can be returned as Kilobytes, Megabytes, or Gigabytes.

Disk Stats

All disk stats can be returned as Kilobytes, Megabytes, or Gigabytes.

CPU Stats

Misc

How To install Statsy

To install Statsy all you need to do is simply download the Statsy.php file from the Statsy folder and include the file on whatever file you want to call the functions using the following code:

<?php include 'directory-to-Statsy-file/Statsy.php'; ?>

Now you're ready to start using Statsy! List of functions

How To install Statsy Auto

Using Statsy Auto is a little different then the normal Statsy. Instead of just calling the function or using the array you will need to set the location where you want the information to be shown then it will automatically be pulled in and refreshed. When using the normal Statsy you will only need to call the function or use the array however Statsy and Statsy Auto can be used together at the same time.

Step 1: Download The relevant files And jQuery

To install Statsy Auto you will need to download the three files in the Statsy Auto folder Statsy.php, Statsy.jsand stats_json.php. You will also need to make sure you have jQuery installed (jQuery will not be needed much longer).

Step 2: Configure the Statsy.js file (Most important step)

To configure this file you just need to set the variables so that Statsy knows where to find the stats_json.php and also knows where to display the data on your page/pages.

First set the var for the stats_json.php file location this can be either a directory path or a URL, this is shown in the example below:

var stats_json_url = "https://www.example.com/Statsy/stats_json.php";

Next set the var for the auto refresh delay. This is set in milliseconds (1000 milliseconds = 1 second), This is shown in the example below where the delay is set to 2 seconds:

var auto_refresh_delay = 2000;

Finally you just need to set where Statsy will display the information on your page by adding the class/ID names. The example below shows 2 examples one with a class snd one with an ID make sure to set all of the vars that you want to use.

var total_mem_loc = ".example-class";
var available_mem_loc = "#example-id";

Step 3: Configure the stats_json.php file (Only necessary if you want to customise the return kb, mb, gb)

To configure this file all you need to do is change the args in the arrays to whatever you want Statsy Auto to return. The example below shows how it is setup by default this will return all values in megabytes:

$mem = array(
    'total' => get_total_mem('mb'),
    'available' =>  get_available_mem('mb'),
    'cached' => get_cached_mem('mb'),
    'swap' => get_swap_mem('mb'),
    'buffer' => get_butffer_mem('mb'),
    'shmem' => get_shmem_mem('mb'),
    'sreclaimable' => get_sreclaimable_mem('mb'),
    'sunreclaim' => get_sunreclaim_mem('mb'),
    'free' => get_free_mem('mb'),
    'realfree' => get_realfree_mem('mb'),
    'used' => get_used_mem('mb'),
    'percent' => get_used_mem2()
  );

  $disk = array(
    'total' => get_disk_total('mb'),
    'free' => get_disk_free('mb'),
    'used' => get_disk_used('mb'),
    'percent' => get_disk_used2()
  );

There is no need to change anything else in this file unless you know what you are doing.This is all the configuration needed to use Statsy Auto.

List Of Functions And How To Use Them

Below is a list of all the functions in Statsy and how to call them using the function or array. Both the array and function will return the same thing its just preference. When using Statsy Auto you can also use these functions at the same time if you want to.

Memory

Total Memory

Examples of how to get total memory to display the value you will need to use echo:

Call using function:

To return value in kb, mb or gb:

get_total_mem('kb');
get_total_mem('mb');
get_total_mem('gb');

Call using array:

To return value in kb, mb or gb:

get()['mem']['totalkb'];
get()['mem']['totalmb'];
get()['mem']['totalgb'];

Available Memory

Examples of how to get available memory to display the value you will need to use echo:

Call using function:

To return value in kb, mb or gb:

get_available_mem('kb');
get_available_mem('mb');
get_available_mem('gb');

Call using array:

To return value in kb, mb or gb:

get()['mem']['availablekb'];
get()['mem']['availablemb'];
get()['mem']['availablegb'];

Cached Memory

Examples of how to get cached memory to display the value you will need to use echo:

Call using function:

To return value in kb, mb or gb:

get_cached_mem('kb');
get_cached_mem('mb');
get_cachede_mem('gb');

Call using array:

To return value in kb, mb or gb:

get()['mem']['cachedkb'];
get()['mem']['cachedmb'];
get()['mem']['cachedgb'];

Swap Memory

Examples of how to get swap memory to display the value you will need to use echo:

Call using function:

To return value in kb, mb or gb:

get_swap_mem('kb');
get_swap_mem('mb');
get_swap_mem('gb');

Call using array:

To return value in kb, mb or gb:

get()['mem']['swapkb'];
get()['mem']['swapmb'];
get()['mem']['swapgb'];

Buffer Memory

Examples of how to get buffer memory to display the value you will need to use echo:

Call using function:

To return value in kb, mb or gb:

get_buffer_mem('kb');
get_buffer_mem('mb');
get_buffer_mem('gb');

Call using array:

To return value in kb, mb or gb:

get()['mem']['bufferkb'];
get()['mem']['buffermb'];
get()['mem']['buffergb'];

Shmem Memory

Examples of how to get Shmem memory to display the value you will need to use echo:

Call using function:

To return value in kb, mb or gb:

get_shmem_mem('kb');
get_shmem_mem('mb');
get_shmem_mem('gb');

Call using array:

To return value in kb, mb or gb:

get()['mem']['shmemkb'];
get()['mem']['shmemmb'];
get()['mem']['shmemgb'];

SReclaimable Memory

Examples of how to get SReclaimable memory to display the value you will need to use echo:

Call using function:

To return value in kb, mb or gb:

get_sreclaimable_mem('kb');
get_sreclaimable_mem('mb');
get_sreclaimable_mem('gb');

Call using array:

To return value in kb, mb or gb:

get()['mem']['sreclaimablekb'];
get()['mem']['sreclaimablemb'];
get()['mem']['sreclaimablegb'];

SUnreclaim Memory

Examples of how to get SUnreclaim memory to display the value you will need to use echo:

Call using function:

To return value in kb, mb or gb:

get_sunreclaim_mem('kb');
get_sunreclaim_mem('mb');
get_sunreclaim_mem('gb');

Call using array:

To return value in kb, mb or gb:

get()['mem']['sunreclaimkb'];
get()['mem']['sunreclaimmb'];
get()['mem']['sunreclaimgb'];

Free Memory

Please bare in mind this is the free memory value from the /proc/meminfo/ file and is not the real free memory for that please see the Real Free Function.

Examples of how to get free memory to display the value you will need to use echo:

Call using function:

To return value in kb, mb or gb:

get_free_mem('kb');
get_free_mem('mb');
get_free_mem('gb');

Call using array:

To return value in kb, mb or gb:

get()['mem']['freekb'];
get()['mem']['freemb'];
get()['mem']['freegb'];

Real Free Memory

The Real Free Memory function gets the correct amount of free memory by using the Used Memory function.

Examples of how to get SUnreclaim memory to display the value you will need to use echo:

Call using function:

To return value in kb, mb or gb:

get_realfree_mem('kb');
get_realfree_mem('mb');
get_realfree_mem('gb');

Call using array:

To return value in kb, mb or gb:

get()['mem']['realfreekb'];
get()['mem']['realfreemb'];
get()['mem']['realfreegb'];

Used Memory

The formula Statsy uses to get an accurate used memory value is (MemTotal - MemFree - Buffers - Cached - SReclaimable - Shmem)

Examples of how to get used memory to display the value you will need to use echo:

Call using function:

To return value in kb, mb or gb:

get_used_mem('kb');
get_used_mem('mb');
get_used_mem('gb');

Call using array:

To return value in kb, mb or gb:

get()['mem']['usedkb'];
get()['mem']['usedmb'];
get()['mem']['usedgb'];

Used Memory As Percent

Examples of how to get used memory as a percent to display the value you will need to use echo:

Call using function:

To return value as a percent:

get_used_mem2()

Call using array:

To return value as a percent:

get()['mem']['percent'];

Disk

Total Disk

Examples of how to get total disk to display the value you will need to use echo:

Call using function:

To return value in kb, mb or gb:

get_disk_total('kb');
get_disk_total('mb');
get_disk_total('gb');

Call using array:

To return value in kb, mb or gb:

get()['disk']['totalkb'];
get()['disk']['totalmb'];
get()['disk']['totalgb'];

Free Disk

Examples of how to get free disk to display the value you will need to use echo:

Call using function:

To return value in kb, mb or gb:

get_disk_free('kb');
get_disk_free('mb');
get_disk_free('gb');

Call using array:

To return value in kb, mb or gb:

get()['disk']['freekb'];
get()['disk']['freemb'];
get()['disk']['freegb'];

Used Disk

Examples of how to get used disk to display the value you will need to use echo:

Call using function:

To return value in kb, mb or gb:

get_disk_used('kb');
get_disk_used('mb');
get_disk_used('gb');

Call using array:

To return value in kb, mb or gb:

get()['disk']['usedkb'];
get()['disk']['usedmb'];
get()['disk']['usedgb'];

Used As Percent Disk

Examples of how to get used disk as percent to display the value you will need to use echo:

Call using function:

To return value as a percent:

get_disk_used2();

Call using array:

To return value as a percent:

get()['disk']['percent'];

CPU

CPU Model

Examples of how to get the CPU model to display the value you will need to use echo:

Call using function:

get_cpuinfo('model');

Call using array:

get()['cpu']['model'];

CPU Cores

Examples of how to get the amount of CPU cores to display the value you will need to use echo:

Call using function:

get_cpuinfo('cores');

Call using array:

get()['cpu']['cores'];

CPU Clock Speed

Examples of how to get the CPU clock speed to display the value you will need to use echo:

Call using function:

To return value in MHz:

get_cpuinfo('speed');

Call using array:

To return value in MHz:

get()['cpu']['clock'];

CPU Cache

Examples of how to get the CPU cache to display the value you will need to use echo:

Call using function:

get_cpuinfo('cache');

Call using array:

get()['cpu']['cache'];

CPU Load

Examples of how to get the CPU load as a percent to display the value you will need to use echo:

Call using function:

To return value as percent:

get_cpu_load();

Call using array:

To return value as percent:

get()['cpu']['load'];

Misc

Server Uptime

The uptime can be called in 4 ways. Examples of how to get the server uptime to display the value you will need to use echo:

Call using function or array:

To return just the amount of days '2 Days':

get_uptime('days');
get()['uptime']['days'];

To return just the amount of days and hours '2 Days 3 hours':

get_uptime('hours');
get()['uptime']['hours'];

To return just the amount of days, hours and minutes '2 Days 3 hours 12 Mins':

get_uptime('mins');
get()['uptime']['mins'];

To return just the full uptime days, hours, minutes and seconds '2 Days 3 hours 12 Mins 11 Secs':

get_uptime('secs');
get()['uptime']['secs'];

CPU Load

Examples of how to get the server ip to display the value you will need to use echo:

Call using function:

get_ip();

Call using array:

get()['ip']['ip'];

Round Up Function

This function is used to round up numbers and is very simple to use:

round_up ( $value, $precision )

Example:

round_up ( 12.3852324323, 2 )

Convert Function

This function is used by all other function to convert the memory types:

convert($input, $converstion)

Example:

convert(187374563765, 'mb')

Example

NOTE: The example below are for normal Statsy as for Statsy Auto you will config the JS file to tell Statsy where you want the data to show, however Statsy and Statsy Auto can use used together at the same time.

Below is a small sample of what using some functions and arrays might look like being called in a html/php file:

<div class="server-stats">

<p><?php echo get_ip(); ?></p>

<p><?php echo get_total_mem('gb'); ?></p>

<p><?php echo get_disk_total('gb'); ?></p>

<p><?php echo get()['mem']['used']; ?></p>

<p><?php echo get()['cpu']['cores']; ?></p>

</div>

Why use Statsy?

  • Very easy to install and use!
  • Makes it easy to get server information and stats
  • Can be called in 3 different ways:
    • using functions
    • using arrays
    • using auto refresh
    • All of the above at the same time
  • Makes it very easy to pull in mutiple server stats to one place
  • Makes it very easy to make your own server monitor apps
  • Its open source!

Coming Soon

Here are some fetures that will be coming soon to Statsy!

Complete rewrite of code into OOP

Available as a composer package

Smaller Things:

  • Access to log files
  • Access to network data
  • No jQuery dependency
  • Statsy dashboard templates
  • Separate cpu core Loads

If you have any ideas for improvements please contact me here: [email protected]

Contributors

Arthor: Tom Rouse (Tms157)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].