forked from winny-/mcstat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathminecraft_users_program.php
More file actions
executable file
·49 lines (41 loc) · 1.64 KB
/
minecraft_users_program.php
File metadata and controls
executable file
·49 lines (41 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/env php
<?php
require_once dirname(__FILE__).'/mcstat.php';
/*
===============
minecraft_users
===============
This is munin plugin to monitor the player count on a Minecraft server.
Install it like any other munin plugin:
# cp minecraft_users_ /usr/share/munin/plugins/minecraft_users_
# chmod 755 /usr/share/munin/plugins/minecraft_users_
# ln -s /usr/share/munin/plugins/minecraft_users_ /etc/munin/plugins/minecraft_users_<hostname>:<port>
No configuration is necessary because minecraft_users_ is a wildcard plugin.
*/
error_reporting(E_ERROR | E_PARSE);
$plugin_name = $argv[0];
if (preg_match('/minecraft_users_([^[:blank:][:cntrl:]]+)(?::([0-9]+))?$/U', $plugin_name, $matches)) {
$host = $matches[1];
$port = empty($matches[2]) ? '25565' : $matches[2];
} else {
error_log("Warning: Plugin {$plugin_name} not configured correctly");
exit();
}
if ((count($argv) > 1) && ($argv[1] == 'config')) {
print("graph_title Players connected to {$host}:{$port}\n");
print("graph_vlabel players\n");
print("players.label Number of players\n");
print("max_players.label Max players\n");
print("graph_info Number of players connected to Minecraft. " .
"If Max players is 0, the server is unreachable.\n");
print("graph_scale no\n");
print("graph_category minecraft\n");
exit();
}
$m = new MinecraftStatus($host, $port);
$reply = $m->ping();
$player_count = empty($reply['player_count']) ? '0' : $reply['player_count'];
$player_max = empty($reply['player_max']) ? '0' : $reply['player_max'];
print('players.value ' . $player_count . "\n");
print('max_players.value ' . $player_max . "\n");
?>