Description: looks to see what state all docker containers are in. (running, paused, stopped)
What The Data Shows: gives an audit of all your docker containers, and their respective states. this will show your total number of containers, and how many are running, paused or stopped. this can help to ensure up-time of production containers, and troubleshoot any potential issues.
SQL:
SELECT substr(id,0,5) as "first 5 of ID",
containers,containers_running,containers_paused,containers_stopped FROM (`docker_info`);