vSANの物理ディスク使用率を調べたい
vSANの物理ディスク使用率は「リアクティブリバランス」などによって自動的に平準化されますが、今どの程度使用されているのかを調べたいことがあります。
その場合、どのように調べればいいのでしょうか。
vCenterから確認する
vSANの物理理ディスク使用率はvCenterの「Skyline健全性」から確認できます。
「Skyline健全性」-「クラスタ」-「vSANディスクバランス」
ただ、ここからは各ディスクの値が見れない場合があります。
「Skyline健全性」-「物理ディスク」-「ディスクの容量」
ここからも見れる場合もありますが、みれない場合もあります。
コマンドラインで確認する
値はコマンドラインで調べられます。
-
vCenterにSSHログイン
-
rvcにログイン
administrator@vsphere.local@localhostこの後ろのlocalhostが必須です。
パスワードはこの場合でもadministrator@vsphere.localのパスワードと同じです。Command> shell Shell access is granted to root root@****** [ ~ ]# root@****** [ ~ ]# rvc Install the "ffi" gem for better tab completion. WARNING: Nokogiri was built against LibXML version ***, but has dynamically loaded *** Host to connect to (user@host): administrator@vsphere.local@localhost The authenticity of host 'localhost' can't be established. Public key fingerprint is **********. Are you sure you want to continue connecting (y/n)? y Warning: Permanently added 'localhost' (vim) to the list of known hosts password: Welcome to RVC. Try the 'help' command. 0 / 1 localhost/ >
-
computersに移動
> ls 0 / 1 localhost/ > cd 0 /localhost> ls 0 Datacenter (datacenter) /localhost> /localhost> cd 0 /localhost/Datacenter> ls 0 storage/ 1 computers [host]/ 2 networks [network]/ 3 datastores [datastore]/ 4 vms [vm]/ /localhost/Datacenter> cd 1 /localhost/Datacenter/computers> ls 0 VxRail-Virtual-SAN-Cluster-********** (cluster): cpu *** GHz, memory **** GB /localhost/Datacenter/computers>
-
ディスクの一覧を表示
/localhost/Datacenter/computers> vsan.disks_stats 0 yyyy-mm-dd hh:mm:ss +0000: Fetching vSAN disk info from ***-******.******.local (may take a moment) ... yyyy-mm-dd hh:mm:ss +0000: Fetching vSAN disk info from ***-******.******.local (may take a moment) ... *** yyyy-mm-dd hh:mm:ss +0000: Done fetching vSAN disk infos +----------------------+-------------------------+----------+------+------------+---------+----------+----------+----------+----------+----------+---------+----------+----------+ | | | | Num | Capacity | | | Physical | Physical | Physical | Logical | Logical | Logical | Status | | DisplayName | Host | DiskTier | Comp | Total | Used | Reserved | Capacity | Used | Reserved | Capacity | Used | Reserved | Health | +----------------------+-------------------------+----------+------+------------+---------+----------+----------+----------+----------+----------+---------+----------+----------+ | naa.**************** | ***-******.******.local | Cache | 0 | 372.61 GB | 0.00 % | 0.00 % | N/A | N/A | N/A | N/A | N/A | N/A | OK (v10) | | naa.**************** | ***-******.******.local | Capacity | 8 | 1788.49 GB | 4.44 % | 3.12 % | N/A | N/A | N/A | N/A | N/A | N/A | OK (v10) | | naa.**************** | ***-******.******.local | Capacity | 8 | 1788.49 GB | 4.44 % | 3.12 % | N/A | N/A | N/A | N/A | N/A | N/A | OK (v10) | ... +----------------------+-------------------------+----------+------+------------+---------+----------+----------+----------+----------+----------+---------+----------+----------+ /localhost/Datacenter/computers>
-
ディスクの使用量は「Used」にパーセントとして表示されます。
コメント