2013-03-28 16:12:15 +01:00
|
|
|
#!/usr/bin/php
|
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Bukkit TPS Munin plugin
|
|
|
|
* ---------------------------------
|
|
|
|
*
|
|
|
|
* Shows the current TPS (ticks per second) of your
|
|
|
|
* Minecraft server (parsed via JSONAPI)
|
|
|
|
*
|
|
|
|
* Read more about my plugins on my blog:
|
|
|
|
* http://s.frd.mn/XJsryR
|
|
|
|
*
|
|
|
|
* Author: Jonas Friedmann (http://frd.mn)
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* JSONAPI configuration
|
2013-04-19 21:56:07 +02:00
|
|
|
* (get the SDK php file here: https://github.com/alecgorge/jsonapi/raw/master/sdk/php/JSONAPI.php)
|
2013-03-28 16:12:15 +01:00
|
|
|
*/
|
|
|
|
|
2013-04-19 21:56:07 +02:00
|
|
|
$apisdk = '/var/cache/munin/JSONAPI.php';
|
2013-03-28 16:12:15 +01:00
|
|
|
$hostname = 'your-hostname';
|
|
|
|
$username = 'your-username';
|
|
|
|
$password = 'your-password';
|
|
|
|
$salt = 'your-salt';
|
|
|
|
$port = 20059;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* !!! DO NOT EDIT THIS PART BELOW !!!
|
|
|
|
*/
|
|
|
|
|
|
|
|
if ((count($argv) > 1) && ($argv[1] == 'config'))
|
|
|
|
{
|
2013-04-19 21:56:07 +02:00
|
|
|
print("graph_title Bukkit / JSONAPI - ticks per second (TPS)
|
2013-03-28 16:12:15 +01:00
|
|
|
graph_category bukkit_jsonapi
|
|
|
|
graph_vlabel ticks per second
|
|
|
|
graph_args --base 1000 -l 0
|
|
|
|
tps.type GAUGE
|
|
|
|
tps.label TPS
|
|
|
|
");
|
2013-04-19 21:56:07 +02:00
|
|
|
exit();
|
2013-03-28 16:12:15 +01:00
|
|
|
}
|
|
|
|
|
2013-04-19 21:56:07 +02:00
|
|
|
// Include JSONAPI.php
|
|
|
|
require($apisdk);
|
2013-03-28 16:12:15 +01:00
|
|
|
|
|
|
|
// Prepare API call
|
|
|
|
$api = new JSONAPI($hostname, $port, $username, $password, $salt);
|
|
|
|
$result = $api->call("system.getServerClockDebug");
|
|
|
|
|
|
|
|
// Check for success
|
|
|
|
if ($result['result'] == 'success'){
|
|
|
|
// Print values
|
|
|
|
print('tps.value ' . round($result['success']['clockRate'], 2) . "\n");
|
|
|
|
}
|
|
|
|
?>
|