Docker includes several built-in logging drivers for containers, such as json-file, syslog, journald, gelf, fluentd, and awslogs. Docker also provides the docker logs command to get the logs for a container. Docker 1.13 includes an experimental feature for getting a Docker service log using the docker service logs command.
The Problem
Docker Swarm mode does not include a native monitoring service for Docker services and containers. Also the experimental feature to get service logs is a command-line feature and required to be run per service. A logging service ...