エスカレーションチェーンの追加
最終更新日: 03 年 2024 月 XNUMX 日LogicMonitor REST API v3 を使用してエスカレーション チェーンを追加できます。 API リクエストを行う前に、自分自身を認証する必要があります。
URI: 投稿 /setting/alert/chains
種類 | 説明 | |
throttlingAlerts | 整数 | If enableThrottling に設定されています true をタップし、その後、 throttlingAlerts スロットル期間中に送信できるアラートの最大数を示します。例– “throttlingAlerts”: 40 |
enableThrottling | ブーリアン | このエスカレーション チェーンに対してスロットル (レート制限) が有効かどうかを示します。フィールドが次のように設定されている場合、 true をタップし、その後、 throttlingPeriod • throttlingAlerts アラートがどのように抑制されるかを示します。 例– “enableThrottling”: false |
destinations | (必須の) 宛先は次のもので構成されます。
| |
name | 文字列 | (必須の) エスカレーション チェーンの名前。 例– “name”: ”MyEscalationChain” |
description | 文字列 | エスカレーション チェーンの説明。 |
ccDestinations | この ccDestination 受信者の詳細情報で構成されます。
| |
throttlingPeriod | 整数 | スロットル (レート制限) 期間 (分単位)。 enableThrottling に設定されています true . 例– “throttlingPeriod”: 30 |
次の Python スクリプトは、エスカレーション チェーン「DBTeam」をアカウント api.logicmonitor.com に追加します。このエスカレーション チェーンには、DB チーム受信者グループ用の 1 つのステージがあります。
#!/bin/env python
import requests
import json
import hashlib
import base64
import time
import hmac
import getpass
#Account Info: LogicMonitor recommends to NEVER hardcode the credentials. Instead, retrieve the values from a secure storage.
#Note: The below is provided for illustration purposes only.
AccessId = getpass.getpass("Enter your AccessId: ")
AccessKey = getpass.getpass("Enter your AccessKey: ")
Company = 'apiAccount'
#Request Info
httpVerb ='POST'
resourcePath = '/setting/alert/chains'
data='{"name":"DBTeam","destinations":[{"type":"single","stages":[[{"type":"group","addr":"dbTeam"}]]}]}'
#Construct URL
url = 'https://'+ Company +'.logicmonitor.com/santaba/rest' + resourcePath
#Get current time in milliseconds
epoch = str(int(time.time() * 1000))
#Concatenate Request details
requestVars = httpVerb + epoch + data + resourcePath
#Construct signature
digest = hmac.new(
AccessKey.encode('utf-8'),
msg=requestVars.encode('utf-8'),
digestmod=hashlib.sha256).hexdigest()
signature = base64.b64encode(digest.encode('utf-8')).decode('utf-8')
#Construct headers
auth = 'LMv1 ' + AccessId + ':' + str(signature) + ':' + epoch
headers = {'Content-Type':'application/json','Authorization':auth,'X-Version':'3'}
#Make request
response = requests.post(url, data=data, headers=headers)
#Print status and body of response
print('Response Status:',response.status_code)
print('Response Body:',response.content)