Skip to main content

docker-stats

docker stats wrapper which prints output in json

Usage

Install from PyPI and run

usage: docker-stats [-h] [-a] [container [container ...]]

docker stats, json way

positional arguments:
  container   IDs or NAMEs of desired containers

optional arguments:
  -h, --help  show this help message and exit
  -a, --all   get stats of all available containers
  -n, --normalize   try to normalize stats

Normalization

Raw output of docker-stats is smth like this:

{
    "my_container": {
        "blkio_stats": {
            "io_merged_recursive": [],
            "io_queue_recursive": [],
            "io_service_bytes_recursive": [
                {
                    "major": 253,
                    "minor": 5,
                    "op": "Read",
                    "value": 7020544
                },
                {
                    "major": 253,
                    "minor": 5,
                    "op": "Write",
                    "value": 0
                },
                *SNIP*
            ]
        }
    }
}

As one can mention, there are an array object inside key io_service_bytes_recursive and each element of that array is flattened JSON with key op within values. That behaviour may occur in other keys. docker-stats called with key --normalize tries to jsonify that to:

{
    "my_container": {
        "blkio_stats": {
            "io_merged_recursive": [],
            "io_queue_recursive": [],
            "io_service_bytes_recursive": {
                "Read": {
                    "major": 253,
                    "minor": 5,
                    "value": 7020544
                },
                "Write": {
                    "major": 253,
                    "minor": 5,
                    "value": 0
                },
                *SNIP*
            }
        }
    }
}

Release files for docker-stats 0.0.3

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for docker-stats 0.0.3
File Size Uploaded
docker-stats-0.0.3.tar.gz 2.4 kB Details

Release files / docker-stats-0.0.3.tar.gz

Download URL docker-stats-0.0.3.tar.gz
Size 2.4 kB
Tags Source
SHA-256 checksum
How to use checksums
6dee5918ff1d2ad7062702c7931c4c16e6771935c7154258c13ca97d6ea62867
BLAKE2b-256 checksum
How to use checksums
2ef1a93f017ad89dbfea5de15ee640c4f32cec9b708c9eb003f87d82c3c9c417
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release history Release notifications | RSS feed

This release

0.0.3 This release

1 release file

0.0.2

1 release file

0.0.1

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page