次の方法で共有


alertRules を一覧表示する

名前空間: microsoft.graph.deviceManagement

重要

Microsoft Graph の /beta バージョンの API は変更される可能性があります。 実稼働アプリケーションでこれらの API を使用することは、サポートされていません。 v1.0 で API を使用できるかどうかを確認するには、Version セレクターを使用します。

alertRule オブジェクトとそのプロパティの一覧を取得します。

この API は、次の国内クラウド展開で使用できます。

グローバル サービス 米国政府機関 L4 米国政府機関 L5 (DOD) 21Vianet が運営する中国

アクセス許可

この API の最小特権としてマークされているアクセス許可またはアクセス許可を選択します。 アプリで必要な場合にのみ、より高い特権のアクセス許可またはアクセス許可を使用します。 委任されたアクセス許可とアプリケーションのアクセス許可の詳細については、「アクセス許可の種類」を参照してください。 これらのアクセス許可の詳細については、「アクセス許可のリファレンス」を参照してください。

アクセス許可の種類 最小特権アクセス許可 より高い特権のアクセス許可
委任 (職場または学校のアカウント) CloudPC.Read.All CloudPC.ReadWrite.All
委任 (個人用 Microsoft アカウント) サポートされていません。 サポートされていません。
アプリケーション サポートされていません。 サポートされていません。

HTTP 要求

GET /deviceManagement/monitoring/alertRules

要求ヘッダー

名前 説明
Authorization ベアラー {token}。 必須です。 認証と認可についての詳細をご覧ください。

要求本文

このメソッドには、要求本文を指定しません。

応答

成功した場合、このメソッドは応答コードと、応答本文の microsoft.graph.deviceManagement.alertRule オブジェクトのコレクションを返200 OKします。

要求

次の例は要求を示しています。

GET https://graph.microsoft.com/beta/deviceManagement/monitoring/alertRules

応答

次の例は応答を示しています。

HTTP/1.1 200 OK
Content-Type: application/json

{
  "@odata.context": "https://graph.microsoft.com/beta/$metadata#deviceManagement/monitoring/alertRules",
  "value": [
      {
          "id": "215c55cc-b1c9-4d36-a870-be5778101714",
          "displayName": "Azure network connection failure impacting Cloud PCs",
          "severity": "warning",
          "isSystemRule": true,
          "description": "Azure network connection checks have failed and is potentially impacting existing Cloud PCs and blocking the provisioning of new Cloud PCs",
          "enabled": true,
          "alertRuleTemplate": "cloudPcOnPremiseNetworkConnectionCheckScenario",
          "threshold": {
              "aggregation": "count",
              "operator": "greaterOrEqual",
              "target": 90
          },
          "conditions": [
              {
                "relationshipType": "or",
                "conditionCategory": "azureNetworkConnectionCheckFailures",
                "aggregation": "count",
                "operator": "greaterOrEqual",
                "thresholdValue": "90"
              }
          ],
          "notificationChannels": [
              {
                "notificationChannelType": "portal",
                "notificationReceivers": []
              },
              {
                "notificationChannelType": "email",
                "notificationReceivers": [
                    {
                        "locale": "en-us",
                        "contactInformation": "serena.davis@contoso.com"
                    }
                ]
              }
          ]
      },
      {
          "id": "30070507-6514-443b-8fa5-06979cedacdf",
          "displayName": "Upload failure for Device Images",
          "severity": "warning",
          "isSystemRule": true,
          "description": "Device Image Uploads have failed and can delay the provisioning of new Cloud PCs.",
          "enabled": true,
          "alertRuleTemplate": "cloudPcImageUploadScenario",
          "threshold": {
              "aggregation": "count",
              "operator": "greaterOrEqual",
              "target": 2
          },
          "conditions": [
              {
                "relationshipType": "or",
                "conditionCategory": "imageUploadFailures",
                "aggregation": "count",
                "operator": "greaterOrEqual",
                "thresholdValue": "2"
              }
            ],
          "notificationChannels": [
              {
                "notificationChannelType": "portal",
                "notificationReceivers": []
              },
              {
                "notificationChannelType": "email",
                "notificationReceivers": [
                    {
                        "locale": "en-us",
                        "contactInformation": "serena.davis@contoso.com"
                    }
                ]
              }
          ]
      },
      {
          "id": "b43741fa-254a-445f-86cf-8def2c32571a",
          "displayName": "Provisioning Failure impacting Cloud PCs",
          "severity": "warning",
          "isSystemRule": true,
          "description": "Provisioning has failed and is delaying end users from connecting to their Cloud PCs.",
          "enabled": true,
          "alertRuleTemplate": "cloudPcProvisionScenario",
          "threshold": {
              "aggregation": "count",
              "operator": "greaterOrEqual",
              "target": 1
          },
          "conditions": [
              {
                "relationshipType": "or",
                "conditionCategory": "provisionFailures",
                "aggregation": "count",
                "operator": "greaterOrEqual",
                "thresholdValue": "1"
              }
          ],
          "notificationChannels": [
              {
                "notificationChannelType": "portal",
                "notificationReceivers": []
              },
              {
                "notificationChannelType": "email",
                "notificationReceivers": [
                    {
                        "locale": "en-us",
                        "contactInformation": "serena.davis@contoso.com"
                    }
                ]
              }
          ]
      }
  ]
}