0.972
/
3
ここ=0.324
実際の値と同じでなければなりません。したがって、HDD Used
値Gしたがって、TB単位で計算した後に分割する必要があります。
# isi storagepool list -v |
awk '
/Requested Protection:/ { parity=substr($NF,length($NF)-1,1) }
/Nodes:/ { nodes=$NF }
/HDD Total/ { hdd_total=$NF }
/HDD Used/ { hdd_used=$NF }
END {
multiplier=nodes-parity
total=hdd_total/nodes*multiplier
used=hdd_used/nodes
print "parity =" parity
print "NodeNumber =" nodes
print "Total =" total "TB"
print "Effective Total volume = " total*0.8 " TB"
print "USED =" used "%"
print "Effective used=" used*multiplier*0.8 " TB"
print "Available volume=" (hdd_total-hdd_used)/nodes*multiplier*0.8 " TB" }'
parity =1
NodeNumber =3
Total =37.3013TB
Effective Total volume = 29.8411 TB
USED =324.307%
Effective used=518.891 TB
Available volume=-489.05 TB
HDD Used
コマンドの実際の出力isi storagepool list --v
はGで、以下で説明するようにTB単位で計算する必要があります。
# isi storagepool list -v
Name: s210_21tb_800gb-ssd_128gb
Nodes: 1, 2, 3
Requested Protection: +2d:1n
Type: nodepool
Children: -
Usage
HDD Used: 972.905G
HDD Total: 55.9520T
HDD % Used: 1.70%
SSD Used: 0b
SSD Total: 0b
SSD % Used: 0.00%
# cat isi.py
isi storagepool list -v |
awk '
/Requested Protection:/ { parity=substr($NF,length($NF)-1,1) }
/Nodes:/ { nodes=$NF }
/HDD Total/ { hdd_total=$NF }
/HDD Used/ { hdd_used=num2gb($NF) }
END {
multiplier=nodes-parity
total=hdd_total/nodes*multiplier
used=hdd_used/nodes
print "parity =" parity
print "NodeNumber =" nodes
print "Total = " total " TB"
print "Effective Total volume = " total*0.8 " TB"
print "USED =" used "%"
print "Effective used=" used*multiplier*0.8 " TB"
print "Available volume=" (hdd_total-hdd_used)/nodes*multiplier*0.8 " TB" }'
@ilkkachu 1件の回答を編集
# cat isi.py
#!/usr/bin/awk -f
isi storagepool list -v | awk 'function num2gb(n) { if (n ~ /T$/) return n * 1; return n*1024; }
/Requested Protection:/ { parity=substr($NF,length($NF)-1,1) }
/Nodes:/ { nodes=$NF }
/HDD Total/ { hdd_total=$NF }
/HDD Used/ { hdd_used=num2gb($NF) }
END {
multiplier=nodes-parity
total=hdd_total/nodes*multiplier
used=hdd_used/nodes
print "parity =" parity
print "NodeNumber =" nodes
print "Total = " total " TB"
print "Effective Total volume = " total*0.8 " TB"
print "USED =" used "%"
print "Effective used=" used*multiplier*0.8 " TB"
print "Available volume=" (hdd_total-hdd_used)/nodes*multiplier*0.8 " TB" }'
出力
cat storageinfo_example_info
parity =1
NodeNumber =3
Total = 37.3013 TB
Effective Total volume = 29.8411 TB
USED =333925%
Effective used=534281 TB
Available volume=-534251 TB
答え1
入力が時々GB単位で、時にはTB単位の場合、両方のケースを処理する関数を作成します(GNU awk マニュアルの機能):
#!/usr/bin/awk -f
function num2gb(n) {
if (n ~ /T$/) return n * 1024; # if TB, scale
return n * 1; # else assume GB. * 1 converts to number
}
{ printf "%.2f G\n", num2gb($1) } # print, as an example
その後、この関数を使用して、入力から数字を読み取っている間にGB単位の数字を取得できます。
/HDD Total/ { hdd_total = num2gb($NF) }
/HDD Used/ { hdd_used = num2gb($NF) }
必要にMB
応じて、およびにケースを追加し、PB
入力を生成したプログラムがの二乗を考慮して1024
いることを確認します1000
。
エクスポート時にもちろんお好みの倍数を選択できます。
上記はスタンドアロンawk
スクリプトで、コマンドラインで次のことを行います。
$ somecmd | awk 'function num2gb(n) { if (n ~ /T$/) return n * 1024; return n*1; }
/some pattern/ { some action }
/other pattern/ { something with num2gb($n) ... } '