randomhost/mcstat
Composer 安装命令:
composer require randomhost/mcstat
包简介
Retrieves status information from a Minecraft server.
关键字:
README 文档
README
randomhost/mcstat
PHP class, web page, CLI tool, and Munin plugin to get information from a Minecraft server.
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.
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.
Usage
minecraft_users_ — A Munin plugin
Install minecraft_users_ like any other munin plugin:
# 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.
mcstat as a program
src/bin/mcstat.php is a script for querying Minecraft servers. You can install
a stand-alone version like so:
make
cp src/bin/mcstat ~/bin/mcstat
It's very simple and gets the job done:
mcstat play.gotpvp.com
This will output the status of the given server like so:
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.
stat.php
src/www/stat.php is a simple web page that lets users query a given server.
Note: stat.php shouldn't be used on a public server as it's not well tested!
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:
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.
Run the script as follows:
make test
By default src/tests/unit-tests/bin/testrunner.sh tests against all server
versions 1.4.2 and later.
Override this like so:
env Versions='1.7.4 1.7.5' make test
randomhost/mcstat 适用场景与选型建议
randomhost/mcstat 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 214 次下载、GitHub Stars 达 0, 最近一次更新时间为 2016 年 10 月 03 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「minecraft」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 randomhost/mcstat 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 randomhost/mcstat 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 randomhost/mcstat 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Allow users to use the head of a Minecraft skin as avatar.
PHP library retrieve game servers status from various types of games.
A PHP Library For the Minecraft Custom Heads Value.
Simple Rcon class for php
Minecraft Server Status Query, written in PHP, with online players, motd, favicon and more server related informations without plugins and enable-query.
A PHP Library to convert between three different Minecraft UUID Formats.
统计信息
- 总下载量: 214
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 7
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-10-03

