https://github.com/zakisk/dock-stats
CLI application to render resource consumption of docker containers visually.
https://github.com/zakisk/dock-stats
cli docker docker-container golang statis terminal
Last synced: about 1 month ago
JSON representation
CLI application to render resource consumption of docker containers visually.
- Host: GitHub
- URL: https://github.com/zakisk/dock-stats
- Owner: zakisk
- Created: 2023-11-07T17:29:38.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-12-29T06:37:27.000Z (over 2 years ago)
- Last Synced: 2025-10-29T07:36:17.021Z (8 months ago)
- Topics: cli, docker, docker-container, golang, statis, terminal
- Language: Go
- Homepage:
- Size: 14.2 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### dock-stats
The `dock-stats` tool is designed to provide users with detailed statistics and visual representations of resource consumption related to running Docker containers. It gathers real-time data on various aspects of container performance, offering insights into resource usage and performance metrics. Some of the key statistics it displays are related to Resource Utilization, Network I/O, and Block I/O.
### Usage
> To get started, [install dock-stats](#installation) first.
To render container stats graph run command:
```sh
dock-stats show [CONTAINER-NAME]
```

> **Note**
> `dock-stats` clears screen before it shows graph.
### Installation
First, clone the repository:
```sh
git clone https://github.com/zakisk/dock-stats.git
```
change directory and run make command:
```sh
# common for all OS
cd ./dock-stats
# for macOS or linux
make build
# for windows
make build-win
```