服务器状态-客户端/Client for server-status app
Go to file
snowykami c271378c71
Some checks failed
Compile / build (x64, windows-latest) (push) Failing after 38s
Compile / build (x64, ubuntu-latest) (push) Failing after 3m7s
修复脚本执行错误
2024-10-05 21:52:39 +08:00
.github/workflows 降低python版本依赖 2024-10-03 02:31:08 +08:00
server_status os字段新增版本和发行版 2024-10-05 05:34:26 +08:00
tests first comm 2024-10-02 08:29:51 +08:00
.gitignore 修复CPU物理核心计算错误 2024-10-03 17:03:15 +08:00
deploy.cmd 新增Linux安装脚本 2024-10-05 20:53:58 +08:00
deploy.sh 修复脚本执行错误 2024-10-05 21:52:39 +08:00
main.py remove pdm.lock 2024-10-03 14:46:01 +08:00
pyproject.toml 修复运行时间错误的问题 2024-10-05 03:21:01 +08:00
README.md 修复脚本执行错误 2024-10-05 21:02:50 +08:00

server-status-client

服务器状态 - 客户端

license pypi python

📖 介绍

服务器状态的客户端命令行工具

💿 安装

  • Linux 可使用脚本安装,带自动部署和自启动
curl -sSL https://raw.githubusercontent.com/snowykami/server-status-client/refs/heads/main/deploy.sh | sudo bash
  • 或手动部署
# 克隆仓库
git clone https://github.com/snowykami/server-status-client
cd server-status-client

# 配置环境
python3 -m venv venv
source venv/bin/activate
# 安装依赖
pip install pdm
pdm install

# 如需自启动请自行添加到系统服务

🎉 使用

命令

  • server-status <server> <token> <id> run - 运行客户端
  • server-status <server> <token> <id> rm - 从服务端移除主机

可选项

  • -n|--name - 设置主机名称
  • --labels - 设置主机标签
  • --interval - 设置上报间隔
  • --location - 设置主机地域
  • --link - 设置前端点击跳转链接

示例

server_status https://status.liteyuki.icu 114514 myhost run -n "MyHost" --labels "标签1,标签2" --interval 5 --location "Chongqing" --link "https://example.com"

📝 其他

开机启动

执行以下命令

sudo pipx ensurepath  # 确保pipx路径在环境变量下

sudo touch /etc/systemd/system/server-status-client.service

sudo bash -c 'cat <<EOF > /etc/systemd/system/server-status-client.service
[Unit]
Description=Server Status Client
After=network-online.target

[Service]
Type=simple
ExecStart=server-status <server> <token> <id> run  # 请替换为实际参数
Restart=on-failure
RestartSec=10

[Install]
WantedBy=multi-user.target
EOF'

sudo systemctl enable server-status-client
sudo systemctl start server-status-client

更新

git pull
sudo systemctl restart server-status-client
#
git pull
systemctl restart server-status-client

服务端

请在中心服务器上部署 server-status-server