Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aiursoftweb/stathub
StatHub is a simple server stat statistics system. It can collect server stats and display them in a simple way. Mirror of https://gitlab.aiursoft.cn/aiursoft/stathub
https://github.com/aiursoftweb/stathub
csharp dotnet dstat metrics monitor server stat stathub
Last synced: about 3 hours ago
JSON representation
StatHub is a simple server stat statistics system. It can collect server stats and display them in a simple way. Mirror of https://gitlab.aiursoft.cn/aiursoft/stathub
- Host: GitHub
- URL: https://github.com/aiursoftweb/stathub
- Owner: AiursoftWeb
- License: other
- Created: 2024-01-02T06:43:24.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2024-10-22T07:00:18.000Z (17 days ago)
- Last Synced: 2024-10-23T10:04:38.217Z (15 days ago)
- Topics: csharp, dotnet, dstat, metrics, monitor, server, stat, stathub
- Language: C#
- Homepage:
- Size: 549 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# StatHub
[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](https://gitlab.aiursoft.cn/aiursoft/StatHub/-/blob/master/LICENSE)
[![Pipeline stat](https://gitlab.aiursoft.cn/aiursoft/StatHub/badges/master/pipeline.svg)](https://gitlab.aiursoft.cn/aiursoft/StatHub/-/pipelines)
[![Test Coverage](https://gitlab.aiursoft.cn/aiursoft/StatHub/badges/master/coverage.svg)](https://gitlab.aiursoft.cn/aiursoft/StatHub/-/pipelines)
[![NuGet version (Aiursoft.StatHub.Client)](https://img.shields.io/nuget/v/Aiursoft.StatHub.Client.svg)](https://www.nuget.org/packages/Aiursoft.StatHub.Client/)
[![ManHours](https://manhours.aiursoft.cn/r/gitlab.aiursoft.cn/aiursoft/StatHub.svg)](https://gitlab.aiursoft.cn/aiursoft/StatHub/-/commits/master?ref_type=heads)
[![Docker](https://img.shields.io/badge/docker-latest-blue?logo=docker)](https://hub.aiursoft.cn/#!/taglist/aiursoft/stathub)StatHub is a simple server stat statistics system. It can collect server stats and display them in a simple way.
![overview](./screenshot.png)
## Run in Ubuntu
The following script will install\update this app on your Ubuntu server. Supports Ubuntu 22.04.
On your Ubuntu server, run the following command:
```bash
curl -sL https://gitlab.aiursoft.cn/aiursoft/stathub/-/raw/master/install.sh | sudo bash
```Of course it is suggested that append a custom port number to the command:
```bash
curl -sL https://gitlab.aiursoft.cn/aiursoft/stathub/-/raw/master/install.sh | sudo bash -s 8080
```It will install the app as a systemd service, and start it automatically. Binary files will be located at `/opt/apps`. Service files will be located at `/etc/systemd/system`.
## Run manually
Requirements about how to run
1. Install [.NET 8 SDK](http://dot.net/) and [Node.js](https://nodejs.org/).
2. Execute `npm install` at `wwwroot` folder to install the dependencies.
3. Execute `dotnet run` to run the app.
4. Use your browser to view [http://localhost:5000](http://localhost:5000).## Run in Microsoft Visual Studio
1. Open the `.sln` file in the project path.
2. Press `F5` to run the app.## Run in Docker
First, install Docker [here](https://docs.docker.com/get-docker/).
Then run the following commands in a Linux shell:
```bash
image=hub.aiursoft.cn/aiursoft/stathub
appName=stathub
sudo docker pull $image
sudo docker run -d --name $appName --restart unless-stopped -p 5000:5000 -v /var/www/$appName:/data $image
```That will start a web server at `http://localhost:5000` and you can test the app.
The docker image has the following context:
| Properties | Value |
|-------------|----------------------------------|
| Image | hub.aiursoft.cn/aiursoft/stathub |
| Ports | 5000 |
| Binary path | /app |
| Data path | /data |
| Config path | /data/appsettings.json |## Run client in Docker
First, install Docker [here](https://docs.docker.com/get-docker/).
Then run the following commands in a Linux shell:
```bash
sudo touch /etc/motd
sudo docker run -d \
--restart always \
--name stathub-client \
--pid host \
--net host \
-v /etc/lsb-release:/etc/lsb-release:ro \
-v /etc/os-release:/etc/os-release:ro \
-v /etc/motd:/etc/motd:ro \
-v /etc/hostname:/etc/hostname:ro \
--privileged \
-e SERVER_ENDPOINT="https://stathub.aiursoft.cn" \
hub.aiursoft.cn/aiursoft/stathub-client
```Where `https://stathub.aiursoft.cn` is the endpoint of your StatHub server.
## How to contribute
There are many ways to contribute to the project: logging bugs, submitting pull requests, reporting issues, and creating suggestions.
Even if you with push rights on the repository, you should create a personal fork and create feature branches there when you need them. This keeps the main repository clean and your workflow cruft out of sight.
We're also interested in your feedback on the future of this project. You can submit a suggestion or feature request through the issue tracker. To make this process more effective, we're asking that these include more information to help define them more clearly.