mirror of
https://github.com/munin-monitoring/contrib.git
synced 2025-07-21 18:41:03 +00:00
comment format renewal
This commit is contained in:
parent
22436814ea
commit
4192c14f76
8 changed files with 250 additions and 172 deletions
|
@ -1,14 +1,22 @@
|
|||
#!/usr/bin/php
|
||||
<?php
|
||||
###########################################################
|
||||
## - Bukkit player online Munin plugin - ##
|
||||
###########################################################
|
||||
## Script by: ##
|
||||
## Jonas Friedmann (@frdmn) ##
|
||||
## http://blog.frd.mn ##
|
||||
###########################################################
|
||||
## JSONAPI ##
|
||||
###########################################################
|
||||
/**
|
||||
* Bukkit player online Munin plugin
|
||||
* ---------------------------------
|
||||
*
|
||||
* Shows the current online players
|
||||
* (parsed via JSONAPI)
|
||||
*
|
||||
* Read more about my plugins on my blog:
|
||||
* http://s.frd.mn/XJsryR
|
||||
*
|
||||
* Author: Jonas Friedmann (http://frd.mn)
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* JSONAPI configuration
|
||||
*/
|
||||
|
||||
$hostname = 'your-hostname';
|
||||
$username = 'your-username';
|
||||
|
@ -16,9 +24,10 @@ $password = 'your-password';
|
|||
$salt = 'your-salt';
|
||||
$port = 20059;
|
||||
|
||||
###########################################################
|
||||
## DON'T EDIT THIS ##
|
||||
###########################################################
|
||||
/**
|
||||
* !!! DO NOT EDIT THIS PART BELOW !!!
|
||||
*/
|
||||
|
||||
if ((count($argv) > 1) && ($argv[1] == 'config'))
|
||||
{
|
||||
print("graph_title Bukkit / JSONAPI - players online
|
||||
|
@ -31,16 +40,16 @@ players.label players
|
|||
exit();
|
||||
}
|
||||
|
||||
## Include JSONAPI.php SDK (get this file here: https://github.com/alecgorge/jsonapi/raw/master/sdk/php/JSONAPI.php)
|
||||
// Include JSONAPI.php SDK (get this file here: https://github.com/alecgorge/jsonapi/raw/master/sdk/php/JSONAPI.php)
|
||||
require('/var/cache/munin/JSONAPI.php');
|
||||
|
||||
## Prepare API call
|
||||
// Prepare API call
|
||||
$api = new JSONAPI($hostname, $port, $username, $password, $salt);
|
||||
$result = $api->call("getPlayerCount");
|
||||
|
||||
## Check for success
|
||||
// Check for success
|
||||
if ($result['result'] == 'success'){
|
||||
## Print values
|
||||
// Print values
|
||||
print('players.value ' . $result['success'] . "\n");
|
||||
}
|
||||
?>
|
Loading…
Add table
Add a link
Reference in a new issue