latest
NOTE: I'm working at Splunk, but this is not an official Splunk images. I build them in my free time when I'm not at work. I have some knowledge about Splunk, but you should think twice before putting them in production. I run these images on my own home server just for my personal needs. If you have any issues - feel free to open a bug.
Dockerfile to build Splunk Universal Forwarder with preconfigured scripts
which monitors Docker host. It uses official docker client to read statistics
and information about containers from mounted docker unix socket. Mounting
/var/run/docker.sock
from the host is required.
This image works great with docker-stats-splunk.
Once in 5 minutes docker inspect
is executed for all containers (running and
not running). Data is getting recorded in JSON format. See docker inspect.
Once in 5 seconds docker stats
is executed for all running containers.
Data is getting recorded in CSV format with fields container_id
,
cpu_percent
, mem_usage
, mem_limit
, mem_percent
, net_input
,
net_output
. See docker stats.
Once in 5 minutes docker top
is executed for all running containers.
Data is getting recorded in CSV format with fields time
, container_id
,
pid
, ppid
, pgid
, pcpu
, vsz
, nice
, etime
, time
, tty
, ruser
,
user
, rgroup
, group
, comm
, args
. See man ps
for information
about fields, and docker top.
All events from docker events
are streamed. See docker events
for more details.
- Docker version:
1.8.1
- Splunk Universal Forwarder:
6.2.5
Pull the image from the docker registry. This is the recommended method of installation as it is easier to update image. These builds are performed by the Docker Trusted Build service.
docker pull outcoldman/docker-stats-splunk-forwarder:latest
Or you can pull latest version.
docker pull outcoldman/docker-stats-splunk-forwarder:latest
Alternately you can build the image locally.
git clone https://github.com/outcoldman/docker-stats-splunk-forwarder.git
cd docker-stats-splunk-forwarder
docker build --tag="$USER/docker-stats-splunk-forwarder" .
To manually start container
docker run --hostname docker \
--name docker_stats_splunk_forwarder
--volume /var/run/docker.sock:/var/run/docker.sock:ro \
-e "SPLUNK_FORWARD_SERVER=splunk_indexer:9997"
-d outcoldman/docker-stats-splunk-forwarder:latest
Container hostname will be used in the host field of all forwarded events.
I recommend you to start with docker-stats-splunk to see the benefits of collected data.
SPLUNK_FORWARD_SERVER
- specify connection to the Splunk indexer.
See docker-splunk for more details.