サンプル統計値の確認
サンプル統計値取得のAPIを実行して、サンプルの統計値を取得し、しきい値超過の条件が発生しているかどうかを確認します。
形式例
curl -s -H "X-Auth-Token: $TOKEN" "https://telemetry.jp-east-1.cloud.global.
fujitsu.com/v2/meters/「threshold_ruleのmeter_name」/statistics?period=
「threshold_ruleのperiod」&q.field=timestamp&q.op=ge&q.value=
「YYYY-MM-DDThh%3Amm%3Ass」&q.field=timestamp&q.op=lt&q.value=
「YYYY-MM-DDThh%3Amm%3Ass」&q.field=「threshold_ruleのqueryのfield」&q.op=
「threshold_ruleのqueryのop」&q.value=「threshold_ruleのqueryのvalue」"
- 各パラメーターにアラームの詳細情報で確認した値を設定します(threshold_ruleの各項目)。
- 「threshold_ruleのqueryのfield/op/value」については条件の数分設定してください(project_idの指定は省略可能です)。
- 「YYYY-MM-DDThh%3Amm%3A ss」に該当の日時を指定してください。
- YYYY:年、MM:月、DD:日、hh:時、mm:分、ss:秒を表します。上記の前半は開始日時、後半は終了日時の指定になります(開始日時≦timestamp<終了日時)。確認する時間帯を指定してください(UTCで指定してください)。
- 「%3A」は「:」をエンコードした値になります。そのまま指定してください。
- パラメーターの詳細については、「サンプル統計値表示 (GET /v2/meters/{meter_name}/statistics)」を参照してください。
Example of Request
以下に実行例を示します(アラームの確認の実行例を元にパラメーターを設定)。
curl -s -H "X-Auth-Token: ..." "https://telemetry.jp-east-1.cloud.global.
fujitsu.com/v2/meters/fcx.compute.cpu_util/statistics?period=60&q.field=
timestamp&q.op=ge&q.value=2015-07-18T00%3A00%3A00&q.field=timestamp&q.op=
lt&q.value=2015-07-18T01%3A00%3A00&q.field=metadata.user_metadata.groupname
&q.op=eq&q.value=az1_test_stack_vm3-auto_scaling_group-h5ve5jiy5pbf"
Example of Response
[
{
"avg": 0.0,
"count": 1,
"duration": 0.0,
"duration_end": "2015-07-18T00:14:49",
"duration_start": "2015-07-18T00:14:49",
"groupby": null,
"max": 0.0,
"min": 0.0,
"period": 60,
"period_end": "2015-07-18T00:01:00",
"period_start": "2015-07-18T00:00:00",
"sum": 0.0,
"unit": "%"
},
...
{
"avg": 0.40000000000000002,
"count": 1,
"duration": 0.0,
"duration_end": "2015-07-18T00:41:54",
"duration_start": "2015-07-18T00:41:54",
"groupby": null,
"max": 0.40000000000000002,
"min": 0.40000000000000002,
"period": 60,
"period_end": "2015-07-18T01:00:00",
"period_start": "2015-07-18T00:59:00",
"sum": 0.40000000000000002,
"unit": "%"
}
]
- 対象の時間帯でアラームのしきい値条件(アラームのthreshold_ruleのthresholdとcomparison_operatorの値を参照)を満たしているサンプルの統計値が存在するかどうかを確認してください。