Freigeben über


AlertRules auflisten

Namespace: microsoft.graph.deviceManagement

Wichtig

Die APIs unter der /beta Version in Microsoft Graph können sich ändern. Die Verwendung dieser APIs in Produktionsanwendungen wird nicht unterstützt. Um festzustellen, ob eine API in v1.0 verfügbar ist, verwenden Sie die Version Selektor.

Rufen Sie eine Liste der alertRule-Objekte und deren Eigenschaften ab.

Diese API ist in den folgenden nationalen Cloudbereitstellungen verfügbar.

Weltweiter Service US Government L4 US Government L5 (DOD) China, betrieben von 21Vianet

Berechtigungen

Wählen Sie die Berechtigung oder Berechtigungen aus, die für diese API als am wenigsten privilegiert markiert sind. Verwenden Sie eine höhere Berechtigung oder Berechtigungen nur, wenn Ihre App dies erfordert. Ausführliche Informationen zu delegierten Berechtigungen und Anwendungsberechtigungen finden Sie unter Berechtigungstypen. Weitere Informationen zu diesen Berechtigungen finden Sie in der Berechtigungsreferenz.

Berechtigungstyp Berechtigungen mit den geringsten Berechtigungen Berechtigungen mit höheren Berechtigungen
Delegiert (Geschäfts-, Schul- oder Unikonto) CloudPC.Read.All CloudPC.ReadWrite.All
Delegiert (persönliches Microsoft-Konto) Nicht unterstützt Nicht unterstützt
Anwendung Nicht unterstützt Nicht unterstützt

HTTP-Anforderung

GET /deviceManagement/monitoring/alertRules

Anforderungsheader

Name Beschreibung
Authorization Bearer {token}. Erforderlich. Weitere Informationen zu Authentifizierung und Autorisierung.

Anforderungstext

Geben Sie keinen Anforderungstext für diese Methode an.

Antwort

Wenn die Methode erfolgreich verläuft, werden der 200 OK Antwortcode und eine Sammlung von microsoft.graph.deviceManagement.alertRule-Objekten im Antworttext zurückgegeben.

Beispiele

Anforderung

Das folgende Beispiel zeigt eine Anfrage.

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

Antwort

Das folgende Beispiel zeigt die Antwort.

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"
                    }
                ]
              }
          ]
      }
  ]
}