2014-04-16 14:07:55 -04:00
|
|
|
% DOCKER(1) Docker User Manuals
|
2014-06-30 22:58:04 -04:00
|
|
|
% Docker Community
|
|
|
|
% JUNE 2014
|
2014-04-16 14:07:55 -04:00
|
|
|
# NAME
|
|
|
|
docker-events - Get real time events from the server
|
|
|
|
|
2014-06-30 22:58:04 -04:00
|
|
|
# SYNOPSIS
|
|
|
|
**docker events**
|
2014-10-15 17:14:12 -04:00
|
|
|
[**--help**]
|
2015-01-06 23:23:32 -05:00
|
|
|
[**-f**|**--filter**[=*[]*]]
|
2014-06-30 22:58:04 -04:00
|
|
|
[**--since**[=*SINCE*]]
|
|
|
|
[**--until**[=*UNTIL*]]
|
|
|
|
|
2014-04-16 14:07:55 -04:00
|
|
|
|
|
|
|
# DESCRIPTION
|
|
|
|
Get event information from the Docker daemon. Information can include historical
|
|
|
|
information and real-time information.
|
|
|
|
|
2014-09-25 21:55:36 -04:00
|
|
|
Docker containers will report the following events:
|
|
|
|
|
|
|
|
create, destroy, die, export, kill, pause, restart, start, stop, unpause
|
|
|
|
|
|
|
|
and Docker images will report:
|
|
|
|
|
|
|
|
untag, delete
|
|
|
|
|
2014-04-16 14:07:55 -04:00
|
|
|
# OPTIONS
|
2014-10-15 17:14:12 -04:00
|
|
|
**--help**
|
|
|
|
Print usage statement
|
|
|
|
|
2015-01-06 23:23:32 -05:00
|
|
|
**-f**, **--filter**=[]
|
|
|
|
Provide filter values (i.e., 'event=stop')
|
|
|
|
|
2014-04-16 14:07:55 -04:00
|
|
|
**--since**=""
|
2014-06-30 22:58:04 -04:00
|
|
|
Show all events created since timestamp
|
|
|
|
|
|
|
|
**--until**=""
|
|
|
|
Stream events until this timestamp
|
2014-04-16 14:07:55 -04:00
|
|
|
|
|
|
|
# EXAMPLES
|
|
|
|
|
|
|
|
## Listening for Docker events
|
|
|
|
|
2014-04-17 11:36:58 -04:00
|
|
|
After running docker events a container 786d698004576 is started and stopped
|
2014-06-14 03:49:51 -04:00
|
|
|
(The container name has been shortened in the output below):
|
2014-04-16 14:07:55 -04:00
|
|
|
|
|
|
|
# docker events
|
2015-01-28 23:53:53 -05:00
|
|
|
2015-01-28T20:21:31.000000000-08:00 59211849bc10: (from whenry/testimage:latest) start
|
|
|
|
2015-01-28T20:21:31.000000000-08:00 59211849bc10: (from whenry/testimage:latest) die
|
|
|
|
2015-01-28T20:21:32.000000000-08:00 59211849bc10: (from whenry/testimage:latest) stop
|
2014-04-16 14:07:55 -04:00
|
|
|
|
|
|
|
## Listening for events since a given date
|
|
|
|
Again the output container IDs have been shortened for the purposes of this document:
|
|
|
|
|
2015-01-28 23:53:53 -05:00
|
|
|
# docker events --since '2015-01-28'
|
|
|
|
2015-01-28T20:25:38.000000000-08:00 c21f6c22ba27: (from whenry/testimage:latest) create
|
|
|
|
2015-01-28T20:25:38.000000000-08:00 c21f6c22ba27: (from whenry/testimage:latest) start
|
|
|
|
2015-01-28T20:25:39.000000000-08:00 c21f6c22ba27: (from whenry/testimage:latest) create
|
|
|
|
2015-01-28T20:25:39.000000000-08:00 c21f6c22ba27: (from whenry/testimage:latest) start
|
|
|
|
2015-01-28T20:25:40.000000000-08:00 c21f6c22ba27: (from whenry/testimage:latest) die
|
|
|
|
2015-01-28T20:25:42.000000000-08:00 c21f6c22ba27: (from whenry/testimage:latest) stop
|
|
|
|
2015-01-28T20:25:45.000000000-08:00 c21f6c22ba27: (from whenry/testimage:latest) start
|
|
|
|
2015-01-28T20:25:45.000000000-08:00 c21f6c22ba27: (from whenry/testimage:latest) die
|
|
|
|
2015-01-28T20:25:46.000000000-08:00 c21f6c22ba27: (from whenry/testimage:latest) stop
|
2014-04-16 14:07:55 -04:00
|
|
|
|
|
|
|
# HISTORY
|
|
|
|
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
2014-07-01 20:30:25 -04:00
|
|
|
based on docker.com source material and internal work.
|
2014-06-30 22:58:04 -04:00
|
|
|
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|