Other information that one can get about servers by using Ansible is storage information, by running (Geerling 2023, 25):
ansible multi -a "df -h"
For memory information, instead (Geerling 2023, 26-27):
ansible multi -a "free -m"
Command Argument Termination
Notice that the name of the server group or suptragroup of server groups can be a command argument placed either at the beginning or end of the ansible command line.
And finally, for date and time information about our servers (Geerling 2023, 27):
ansible multi -a "free -m"
For an exhaustive list of environment details, called server facts in Ansible, one can run (Geerling 2023, 28):
ansible <host-or-group> -m setup
Wherein host-or-group is the inventoryfile group name for which server facts are sought.