{"id":37816329,"url":"https://github.com/oxmix/highload-stats","last_synced_at":"2026-01-16T15:38:28.556Z","repository":{"id":40545827,"uuid":"47880907","full_name":"oxmix/highload-stats","owner":"oxmix","description":"Statistics server in real-time graphs and histroy.","archived":false,"fork":false,"pushed_at":"2023-07-25T12:47:39.000Z","size":899,"stargazers_count":17,"open_issues_count":0,"forks_count":3,"subscribers_count":4,"default_branch":"master","last_synced_at":"2023-07-25T13:45:09.482Z","etag":null,"topics":["bandwidth-monitor","cpu-monitoring","disk-monitoring","docker","fpm-status","gpu","graphs","hgls","mysql","mysql-monitoring","nginx-monitoring","pgbouncer","postgres","ram-monitoring","real-time","redis","redis-monitoring","stats"],"latest_commit_sha":null,"homepage":"https://oxmix.net/topic/highload-stats","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/oxmix.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-12-12T14:18:30.000Z","updated_at":"2023-07-25T13:45:09.483Z","dependencies_parsed_at":"2022-08-09T22:50:29.083Z","dependency_job_id":null,"html_url":"https://github.com/oxmix/highload-stats","commit_stats":null,"previous_names":[],"tags_count":4,"template":null,"template_full_name":null,"purl":"pkg:github/oxmix/highload-stats","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oxmix%2Fhighload-stats","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oxmix%2Fhighload-stats/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oxmix%2Fhighload-stats/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oxmix%2Fhighload-stats/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/oxmix","download_url":"https://codeload.github.com/oxmix/highload-stats/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oxmix%2Fhighload-stats/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28479409,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T11:59:17.896Z","status":"ssl_error","status_checked_at":"2026-01-16T11:55:55.838Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bandwidth-monitor","cpu-monitoring","disk-monitoring","docker","fpm-status","gpu","graphs","hgls","mysql","mysql-monitoring","nginx-monitoring","pgbouncer","postgres","ram-monitoring","real-time","redis","redis-monitoring","stats"],"created_at":"2026-01-16T15:38:27.799Z","updated_at":"2026-01-16T15:38:28.542Z","avatar_url":"https://github.com/oxmix.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# highload-stats\n[![CI Status](https://github.com/oxmix/highload-stats/workflows/Build%20and%20publish/badge.svg)](https://github.com/oxmix/highload-stats/actions/workflows/hub-docker.yaml)\n\nHGLS Statistics – stats on servers in real-time graphs and history, easy and powerful.\n\n![Preview](web/preview/v2.png)\n\n## Run docker container\n* Execute in the console\n```bash\n$ docker run -d --name highload-stats \\\n  --restart always --log-opt max-size=5m \\\n  -p 127.0.0.1:8039:8039 \\\n  -p 127.0.0.1:3939:3939 \\\noxmix/highload-stats:2\n```\n* Open in browser [`http://127.0.0.1:8039`](http://127.0.0.1:8039) or [`http://remote.host.io:8039`](http://remote.host.io:8039)\n\n## Install hgls-collector\n* Run collector for each server [https://github.com/oxmix/hgls-collector](https://github.com/oxmix/hgls-collector)\n\n## Required\n* Don't forget open firewall port 3939 for connection hgls-collectors\n* Or settings proxy through nginx\n\n### Get telemetry of connections\n* Endpoint [`http://127.0.0.1:8039/telemetry`](http://127.0.0.1:8039/telemetry)\n\n### Use external sqlite files\n* Just add volume `docker run ... -v /var/lib/hgls:/app/db`\n\n### Settings proxy\nExample for proxy nginx \u003e= 1.3.13\n```nginx\nserver {\n    listen 80;\n    server_name remote.host.io;\n    \n    location / {\n        proxy_pass http://127.0.0.1:8039;\n        proxy_http_version 1.1;\n        proxy_read_timeout 200s;\n        proxy_set_header Upgrade $http_upgrade;\n        proxy_set_header Connection \"upgrade\";\n        proxy_set_header X-Real-IP $remote_addr;\n    }\n\n    location /collector {\n        proxy_pass http://127.0.0.1:3939;\n        proxy_http_version 1.1;\n        proxy_read_timeout 200s;\n        proxy_set_header Upgrade $http_upgrade;\n        proxy_set_header Connection \"upgrade\";\n        proxy_set_header X-Real-IP $remote_addr;\n    }\n}\n```\n\n### Run without container\n* In console `$ npm i` and `$ ./index.js start` maybe also `stop|restart|debug`\n* Open in browser [`http://127.0.0.1:8039`](http://127.0.0.1:8039) or [`http://remote.host.io:8039`](http://remote.host.io:8039)\n\n### Deployment manifest for [container-ship](https://github.com/oxmix/container-ship)\n```yaml\nspace: hgls\nname: highload-stats-deployment\nnodes:\n  - localhost\ncontainers:\n  - name: highload-stats\n    from: oxmix/highload-stats:2\n    restart: always\n    log-opt: max-size=5m\n    ports:\n      - 127.0.0.1:8039:8039\n      - 127.0.0.1:3939:3939\n    volumes:\n      - /var/lib/hgls:/app/db\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foxmix%2Fhighload-stats","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Foxmix%2Fhighload-stats","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foxmix%2Fhighload-stats/lists"}