When a Redis instance is setup and running, the dataset size (in bytes) can be retrieved from output of the below command by looking at used_memory_dataset field.
./redis-cli -h <ip address> -p <port> info
However, when I have multiple instances running in the cluster mode, how do I retrieve the dataset size across the cluster? Can redis-cli tool still be used for such cluster-based commands?