, (*1)
randomhost/mcstat
PHP class, web page, CLI tool, and Munin plugin to get information from a
Minecraft server., (*2)
This package is a fork of winny-/mcstat which cleans up the package and
adds Composer support so it can be used within other Composer packages., (*3)
Protocol Support
mcstat supports Server List Ping as seen in 1.7
and later, and 1.5.2
.
Server List Ping 1.5.2
works for older Minecraft servers (all the way back to
1.4.2
), while the 1.7
Server List Ping should be used for newer setups.
mcstat also supports the UDP full and basic Query protocols., (*4)
Usage
minecraft_users_ â A Munin plugin
, (*5)
Install minecraft_users_
like any other munin plugin:, (*6)
# compile stand-alone minecraft_users_ script
make
# copy the compiled script file to the munin plugins directory
cp src/bin/minecraft_users_ /usr/share/munin/plugins/minecraft_users_
# ensure that munin can execute the script
chmod 755 /usr/share/munin/plugins/minecraft_users
# create symlinks for the desired Minecraft server hostname and port
export hostname="localhost"
export port=25565
ln -s /usr/share/munin/plugins/minecraft_users_ \
/etc/munin/plugins/minecraft_users_${hostname}:${port}
# reload munin service
service munin-node reload
No configuration is necessary because minecraft_users_
is a wildcard plugin., (*7)
mcstat as a program
src/bin/mcstat.php
is a script for querying Minecraft servers. You can install
a stand-alone version like so:, (*8)
make
cp src/bin/mcstat ~/bin/mcstat
It's very simple and gets the job done:, (*9)
mcstat play.gotpvp.com
This will output the status of the given server like so:, (*10)
play.gotpvp.com 1.7.4 2714/5000 131ms
Uberminecraft Cloud | 22 Games
1.7 Play Now!
Please note: TERM
must be set to a known terminal, otherwise PHP spams
stderr unconditionally., (*11)
stat.php
src/www/stat.php
is a simple web page that lets users query a given server., (*12)
Note: stat.php
shouldn't be used on a public server as it's not well tested!, (*13)
, (*14)
Usage as a PHP Class
<?php
namespace randomhost\Minecraft;
require_once realpath(__DIR__ . '/../../vendor') . '/autoload.php';
$status = new Status('play.gotpvp.com');
var_dump($status->ping());
This outputs server information in the following format:, (*15)
array(6) {
["player_count"]=>
string(3) "162"
["player_max"]=>
string(4) "5000"
["motd"]=>
string(182) "§f§f §f§m-§a§m-§c§m-§d§m-§b§m] §b§l GotPVP-Network §b§m-[§d§m-§c§m-§a§m-§e§m-§f"
["server_version"]=>
string(31) "BungeeCord 1.8.x, 1.9.x, 1.10.x"
["protocol_version"]=>
string(3) "127"
["latency"]=>
float(293)
}
Testing
The testing script requires bash
, phpunit
, and java
. The tests are
ran against against a live server running on localhost., (*16)
Run the script as follows:, (*17)
make test
By default src/tests/unit-tests/bin/testrunner.sh
tests against all server
versions 1.4.2
and later., (*18)
Override this like so:, (*19)
env Versions='1.7.4 1.7.5' make test