CLI でのテスト編集

CLI の update コマンドを使用して、レスポンス時間テストを編集できます。新しいパラメータ値を指定してテストの更新アクション コード(0x4560008)を発行することにより、テスト パラメータの値を変更します。
casp1032jp
CLI の update コマンドを使用して、レスポンス時間テストを編集できます。新しいパラメータ値を指定してテストの更新アクション コード(0x4560008)を発行することにより、テスト パラメータの値を変更します。
以下のスクリプト例に、テストのスケジュール間隔およびテストのタイムアウト値の変更方法を示します。
#!/bin/ksh # change the schedule interval from 15 minutes to 30 minutes (1800 seconds) # change the test timeout from 5000 ms to 1000 ms # have the test not filter its timeout data cd $SPECROOT/vnmsh connect ./update mh=<testMH> attr=0x4560014,val=1800 ./update mh=<testMH> attr=0x4560025,val=1000 ./update mh=<testMH> attr=0x45600d6,val=FALSE ./update action=0x4560008 mh=$i