My Elasticsearch cheatsheet with example usage via rest api (still a work-in-progress) Shortlinks: Cluster Health Index Level Shard Level Nodes Overview Indices Overview Cluster Maintenance
Docker Api Endpoint -> /var/run/docker.sock GET Listing containers (equivalent to docker ps) curl -s --unix-socket /var/run/docker.sock http://localhost/containers/json | jq . Listing Images (equivalent to docker images) curl -s --unix-socket /var/run/docker.sock http://localhost/images/json | jq