アラーム詳細取得(GET /v2/alarms/{alarm_id})
指定されたアラームの詳細を取得します。
{alarm_id}:対象のアラームのIDを指定します
Request Headers
「API共通項目」を参照してください。
Request Parameter
ありません。
Response Headers
ステータス
正常の場合は以下のステータスを返却します。
200:正常終了
異常の場合は、「API共通エラー情報」を参照してください。
Data Type | Cardinality |
---|---|
Int | 1..1 |
Response Elements
指定したアラームの情報をJSON形式で返します。
内容の詳細は、「type Alarm」を参照してください。
Example of Request
例:対象のアラーム情報について取得します。
curl -H 'X-Auth-Token: ImFkbWluVVJMIjogImh0dHA6Ly8xMC4x...' \
'https://telemetry.jp-east-1.cloud.global.fujitsu.com/v2/alarms/801bad91-1176-4143-8448-0f83ea755c88'
Example of Response
{
"alarm_actions": [
"{\"service\": \"mail\", \"action\": \"send\", \"parameters\":{} }"
],
"alarm_id": "801bad91-1176-4143-8448-0f83ea755c88",
"description": "Alarm when cpu_util is eq a avg of 99.0 over 60 seconds",
"enabled": true,
"insufficient_data_actions": [],
"name": "my_alarm",
"ok_actions": [],
"project_id": "22ef168c58d94872a66c90d74297136a",
"repeat_actions": false,
"severity": "low",
"state": "insufficient data",
"state_timestamp": "2014-10-22T08:39:10.896493",
"threshold_rule": {
"comparison_operator": "eq",
"evaluation_periods": 1,
"exclude_outliers": false,
"meter_name": "my_meter",
"period": 60,
"query": [],
"statistic": "avg",
"threshold": 99.0
},
"time_constraints": [],
"timestamp": "2014-10-22T08:39:10.896493",
"type": "threshold",
"user_id": "13d97e9c31454563b8aa78b0b2e92385"
}