Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/likexian/stathub-go
A smart Hub for holding server stat
https://github.com/likexian/stathub-go
golang monitor server stat
Last synced: about 2 months ago
JSON representation
A smart Hub for holding server stat
- Host: GitHub
- URL: https://github.com/likexian/stathub-go
- Owner: likexian
- License: apache-2.0
- Created: 2015-04-11T09:53:39.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2022-05-16T14:45:58.000Z (over 2 years ago)
- Last Synced: 2024-08-02T15:49:00.716Z (5 months ago)
- Topics: golang, monitor, server, stat
- Language: Go
- Homepage:
- Size: 1.38 MB
- Stars: 676
- Watchers: 26
- Forks: 124
- Open Issues: 7
-
Metadata Files:
- Readme: README-ZH.md
- License: LICENSE
Awesome Lists containing this project
README
# Stat Hub
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](LICENSE)
[![GoDoc](https://godoc.org/github.com/likexian/stathub-go?status.svg)](https://godoc.org/github.com/likexian/stathub-go)
[![Build Status](https://travis-ci.org/likexian/stathub-go.svg?branch=master)](https://travis-ci.org/likexian/stathub-go)
[![Go Report Card](https://goreportcard.com/badge/github.com/likexian/stathub-go)](https://goreportcard.com/report/github.com/likexian/stathub-go)
[![Download Total](https://img.shields.io/github/downloads/likexian/stathub-go/total.svg)](https://github.com/likexian/stathub-go/releases)
[![Paypal Donate](https://img.shields.io/badge/donate-PayPal-green.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=VXJZTJEZTLUM8)A smart Hub for holding server stat
[English README](README.md) | [中文说明](README-ZH.md)
## 总揽
Stat Hub 是一个帮您收集并展示众多服务器状态的服务。
它由两部分组成,一是服务端,用于接收、储存和展示状态;另一个是客户端,它用于收集并发送状态到服务端。而这一切,您只需要一个二进制文件。
## 演示
![demo](doc/demo.png)
## 特性
- Golang 编写
- 只需一个文件就可以完成一切
- 部署简单,没有依赖不需要数据库
- 支持SSL安全,支持域名访问,安全并简单## 安装
请选择其中一台服务器做主服务器,并按以下说明在上面安装服务端。
### Linux (如果有curl)
curl --insecure https://raw.githubusercontent.com/likexian/stathub-go/master/setup.sh | sh
### Linux (如果有wget)
wget --no-check-certificate -O - https://raw.githubusercontent.com/likexian/stathub-go/master/setup.sh | sh
### 在您电脑的浏览器打开它
对于大多数系统,到这里服务已经成功安装并启动了,现在您可以通过本地电脑上的浏览器打开它。
默认URL是
https://ip:15944
输入默认密码: likexian
### 添加一个客户端
按以下提示操作
https://ip:15944/help
## FAQ
- 我添加了一个客户端,为什么没有数据显示?
请在客户端查看 client.log 的内容看看出错原因。
- 我可以使用域名而不是 IP 访问页面吗?
当然可以,请在域名解析中添加一条指向服务器端 IP 的 A 记录,然后用 https://子域名.域名:15944 访问即可。
- 我可以用 https 访问页面吗?
没问题,并且SSL是默认启用的,不过用的是自签名证书。
- 我可以不用自签名证书,而是使用自己的有效证书吗?
当然可以,并且强烈推荐这么做。请用您的证书替换掉 cert 目录里对应的文件。
- 我可以跟 nginx 一起部署吗?
没问题,请将以下配置加到 nginx 配置文件。
location / {
proxy_pass https://127.0.0.1:15944;
proxy_set_header X-Real-IP $remote_addr;
}## 依赖
- [github.com/likexian/gokit](https://github.com/likexian/gokit)
- [github.com/likexian/host-stat-go](https://github.com/likexian/host-stat-go)
- [github.com/likexian/simplejson-go](https://github.com/likexian/simplejson-go)## 版权协议
Copyright 2015-2019 Li Kexian
Licensed under the Apache License 2.0
## 关于
- [Li Kexian](https://www.likexian.com/)
## 赞赏
- [Help me make perfect](https://www.likexian.com/donate/)