以下のJSON出力を「out」ファイルに書き込んでおり、内容は以下の通りです。
$ キャットアウト
{
"columns": [
"Tests",
"Errors",
"Mean Test Time (ms)",
"Test Time Standard Deviation (ms)",
"TPS",
"Peak TPS"
],
"status": {
"description": "Collection stopped",
"state": "Stopped"
},
"tests": [
{
"description": "Cheetah client test",
"statistics": [
0,
0,
"NaN",
0.0,
0.0,
0.0
],
"test": 1
},
{
"description": "Reads 95%",
"statistics": [
304000,
0,
8.7931875,
7.948696618436826,
6907.677974959667,
13594.0
],
"test": 101
},
{
"description": "Writes 5%",
"statistics": [
16000,
0,
9.963375,
9.92775949594747,
363.5619986820878,
1638.0
],
"test": 102
}
],
"totals": [
320000,
0,
8.851696875,
8.063234652303947,
7271.239973641756,
14259.0
]
}
説明ブロック「読み取り 95%」に関する統計が必要です。以下の形式で配置し、BASH スクリプトを使用して文字列変数に割り当てます。
var=304000,0,8.7931875,7.948696618436826,6907.677974959667,13594.0
よろしくお願いいたします。