dockviz/README.md

93 lines
3.1 KiB
Markdown
Raw Normal View History

2014-04-22 06:16:20 +02:00
# dockviz
2014-04-21 18:17:32 +02:00
2014-04-22 06:16:20 +02:00
Visualizing Docker Data
2014-05-04 23:24:01 +02:00
This command takes the raw Docker JSON and visualizes it in various ways.
For image information, output can be formatted as
[Graphviz](http://www.graphviz.org) or as a tree in the terminal.
2014-04-22 06:16:20 +02:00
2014-05-14 16:38:20 +02:00
For container information, only Graphviz output has been implemented.
# Examples
## Containers
Currently, containers are visualized with labeled lines for links. Containers that aren't running are greyed out.
![](sample/containers.png "Container")
## Images
Image info is visualized with lines indicating parent images:
![](sample/images.png "Image")
Or as a tree in the terminal:
```
└─511136ea3c5a Virtual Size: 0.0 B
|─f10ebce2c0e1 Virtual Size: 103.7 MB
| └─82cdea7ab5b5 Virtual Size: 103.9 MB
| └─5dbd9cb5a02f Virtual Size: 103.9 MB
| └─74fe38d11401 Virtual Size: 209.6 MB Tags: ubuntu:12.04, ubuntu:precise
|─ef519c9ee91a Virtual Size: 100.9 MB
| └─07302703becc Virtual Size: 101.2 MB
| └─cf8dc907452c Virtual Size: 101.2 MB
| └─a7cf8ae4e998 Virtual Size: 171.3 MB Tags: ubuntu:12.10, ubuntu:quantal
| |─e18d8001204e Virtual Size: 171.3 MB
| | └─d0525208a46c Virtual Size: 171.3 MB
| | └─59dac4bae93b Virtual Size: 242.5 MB
| | └─89541b3b35f2 Virtual Size: 511.8 MB
| | └─7dac4e98548e Virtual Size: 511.8 MB
| | └─341d0cc3fac8 Virtual Size: 511.8 MB
| | └─2f96171d2098 Virtual Size: 511.8 MB
| | └─67b8b7262a67 Virtual Size: 513.7 MB
| | └─0fe9a2bc50fe Virtual Size: 513.7 MB
| | └─8c32832f07ba Virtual Size: 513.7 MB
| | └─cc4e1358bc80 Virtual Size: 513.7 MB
| | └─5c0d04fba9df Virtual Size: 513.7 MB Tags: nate/mongodb:latest
| └─398d592f2009 Virtual Size: 242.2 MB
| └─0cd8e7f50270 Virtual Size: 243.6 MB
| └─594b6f8e6f92 Virtual Size: 243.6 MB
| └─f832a63e87a4 Virtual Size: 243.6 MB Tags: redis:latest
└─02dae1c13f51 Virtual Size: 98.3 MB
└─e7206bfc66aa Virtual Size: 98.5 MB
└─cb12405ee8fa Virtual Size: 98.5 MB
└─316b678ddf48 Virtual Size: 169.4 MB Tags: ubuntu:13.04, ubuntu:raring
```
2014-04-22 06:16:20 +02:00
# Running
## TCP
When docker is listening on the TCP port:
```
2014-10-30 17:20:44 +01:00
$ curl -s http://localhost:4243/images/json?all=1 | dockviz images --tree
$ curl -s http://localhost:4243/containers/json?all=1 | dockviz containers --dot | dot -Tpng -o containers.png
```
## Socket
When docker is listening on the socket:
2014-04-22 06:16:20 +02:00
```
2014-10-30 17:20:44 +01:00
$ echo -e "GET /images/json?all=1 HTTP/1.0\r\n" | nc -U /var/run/docker.sock | tail -n +5 | dockviz images --tree
$ echo -e "GET /containers/json?all=1 HTTP/1.0\r\n" | nc -U /var/run/docker.sock | tail -n +5 | dockviz containers --dot | dot -Tpng -o containers.png
2014-04-22 06:16:20 +02:00
```
2015-02-25 18:46:19 +01:00
GNU netcat doesn't support `-U` (UNIX socket) flag, so OpenBSD variant can be used.
## Direct from Docker
Someday soon the Docker command line will allow dumping the image and container JSON directly.
2015-02-25 18:40:25 +01:00
# Build
```bash
go get github.com/jessevdk/go-flags
go build
```