BMC Helix IT Operations Management (ITOM) OnPrem: How to Check MinIO Pod Disk Utilization Usage? |
Please follow the steps below to check the MinIO Pod Disk Utilization Usage 1. Log in to one of the minio pod: kubectl exec -it minio-0 -n <NS> bash 2. Connect to minio using the below command: mc --config-dir /bitnami/minio/data/.mc --quiet --insecure alias set localminio http://localhost:9000 admin bmcAdm1n Note: Please change the username and password accordingly. Example: minio-0:/opt/bitnami/minio-client$ mc --config-dir /bitnami/minio/data/.mc --quiet --insecure alias set localminio http://localhost:9000 admin bmcAdm1n Added `localminio` successfully. 3. Execute "mc admin info localminio" to get the details for MinIO Pod Disk Utilization Usage Example: minio-0:/opt/bitnami/minio-client$ mc --config-dir /bitnami/minio/data/.mc admin info localminio ● minio-0.minio-headless.itomwmk.svc.cluster.local:9000 Uptime: 3 hours Version: 2025-01-18T00:31:37Z Network: 4/4 OK Drives: 1/1 OK Pool: 1 ● minio-1.minio-headless.itomwmk.svc.cluster.local:9000 Uptime: 3 hours Version: 2025-01-18T00:31:37Z Network: 4/4 OK Drives: 1/1 OK Pool: 1 ● minio-2.minio-headless.itomwmk.svc.cluster.local:9000 Uptime: 3 hours Version: 2025-01-18T00:31:37Z Network: 4/4 OK Drives: 1/1 OK Pool: 1 ● minio-3.minio-headless.itomwmk.svc.cluster.local:9000 Uptime: 3 hours Version: 2025-01-18T00:31:37Z Network: 4/4 OK Drives: 1/1 OK Pool: 1 ┌──────┬───────────────────────┬─────────────────────┬──────────────┐ │ Pool │ Drives Usage │ Erasure stripe size │ Erasure sets │ │ 1st │ 8.1% (total: 2.3 TiB) │ 4 │ 1 │ └──────┴───────────────────────┴─────────────────────┴──────────────┘ 4.6 GiB Used, 6 Buckets, 8,281 Objects, 13,453 Versions, 3,426 Delete Markers 4 drives online, 0 drives offline, EC:2 |