1
0
mirror of https://github.com/projectatomic/atomic.git synced 2026-02-06 12:45:57 +01:00
Files
atomic/docs/atomic.1.md
Brent Baude cf6806cff5 Atomic TOP: Top-like display for container processes
Adding a new atomic sub-command that behaves like GNU top
but for processes being run for containers.  It currently
displays the container id,  container name,
pid, cpu% (as reported by docker
top), mem% (as reported by docker top), and the command.

You can optionally pass in -o ppid, stime, time to collect
more data on the processes themselves.

While in the interactive display, you can also sort on
the columns to re-organize the data as needed.

You can define an interval for refreshing the process
information.

atomic top can be run without any additional
parameters.  If that is the case, it will by default
show processes for all active containers.  You can also
add one or more container_ids for exclusive process
monitoring by container.

Also added an AtomicDocker class to atomic.py which
allows for custom docker, python-api calls without
having to re-invent the wheel.
2015-12-10 11:24:08 -06:00

1.4 KiB

% ATOMIC(1) Atomic Man Pages % Dan Walsh % January 2015

NAME

atomic - Atomic Management Tool

SYNOPSIS

atomic [OPTIONS] COMMAND [arg...] {diff,host,images,info,install,mount,run,scan,stop,uninstall,unmount,update,upload,verify,version} [-h|-help]

DESCRIPTION

Atomic Management Tool

OPTIONS

-h --help Print usage statement

COMMANDS

atomic-diff(1) show the differences between two images|containers' RPMs

atomic-host(1) execute Atomic commands

atomic-images(1) list locally installed container images

atomic-info(1) execute Atomic commands

atomic-install(1) execute image install method

atomic-mount(1) mount image or container to filesystem

atomic-run(1) execute image run method (default)

atomic-scan(1) scan an image or container for CVEs

atomic-stop(1) execute container image stop method

atomic-top(1) display a top-like list of container processes

atomic-uninstall(1) uninstall container from system

atomic-unmount(1) unmount previously mounted image or container

atomic-update(1) pull latest image from repository

atomic-upload(1) upload container image to the repository

atomic-verify(1) verify image is fully updated

atomic-version(1) display image 'Name Version Release' label

HISTORY

January 2015, Originally compiled by Daniel Walsh (dwalsh at redhat dot com) November, 2015 Addition of scan and diff by Brent Baude (bbaude at dot com)