https://github.com/virtualzone/docker-container-stats
Monitor your docker containers with this web interface.
https://github.com/virtualzone/docker-container-stats
container-monitoring container-stats containers docker docker-stats monitoring
Last synced: about 2 months ago
JSON representation
Monitor your docker containers with this web interface.
- Host: GitHub
- URL: https://github.com/virtualzone/docker-container-stats
- Owner: virtualzone
- Created: 2016-02-23T23:23:11.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2024-06-06T11:53:54.000Z (12 months ago)
- Last Synced: 2025-03-28T16:56:23.186Z (about 2 months ago)
- Topics: container-monitoring, container-stats, containers, docker, docker-stats, monitoring
- Language: JavaScript
- Homepage:
- Size: 403 KB
- Stars: 165
- Watchers: 3
- Forks: 26
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Docker Container Stats
A web interface for viewing historical and current statistics per docker container (cpu, mem, net i/o, block i/o) - in a docker container.Pull and run daemonized:
```
docker pull virtualzone/docker-container-stats
docker run \
-d \
-p 8080:8080 \
--volume=/var/run/docker.sock:/var/run/docker.sock:ro \
--volume=/home/docker/storage/stats/db:/opt/docker-stats/db \
--name stats \
-e STATS_UPDATE_INTERVAL=10 \
virtualzone/docker-container-stats
```Docker-Compose:
```
version: '3.6'
services:
stats:
image: virtualzone/docker-container-stats
container_name: 'stats'
ports:
- '8080:8080'
environment:
STATS_UPDATE_INTERVAL: 10
volumes:
- '/var/run/docker.sock:/var/run/docker.sock:ro'
- '/home/docker/storage/stats/db:/opt/docker-stats/db'
```To view your stats, open a web browser and visit http://localhost:8080 (replace localhost with your docker host's hostname or ip address).
Mounting the volume /var/run/docker.sock (read-only) is required so that the docker container can retrieve the statistics for the containers.
Mounting the volume /opt/docker-stats/db is optional. You can use it if you want to persist the SQLite database.
We strongly recommend not making your stats available online. To password protect your statistics, you can use a frontend web server/proxy (Apache, nginx, ...).
## Screenshots

