Skip to content

tenant serviceannouncement health list

Gets the health report of all subscribed services for a tenant

Usage

m365 tenant serviceannouncement health list [options]

Options

-i, --issues
Return the collection of issues that happened on the service, with detailed information for each issue. Is only returned in JSON output mode.
-h, --help [help]
Output usage information. Optionally, specify which section of command's help you want to see. Allowed values are options, examples, remarks, response, full. Default is full.
--query [query]
JMESPath query string. See http://jmespath.org/ for more information and examples
-o, --output [output]
Output type. json,text,csv,md. Default json
--verbose
Runs command with verbose logging
--debug
Runs command with debug logging

Examples

Get the health report of all subscribed services for a tenant

m365 tenant serviceannouncement health list

Get the health report of all subscribed services for a tenant including the issues that happend on each service

m365 tenant serviceannouncement health list --issues

Response

Standard response

[
  {
    "service": "Exchange Online",
    "status": "serviceDegradation",
    "id": "Exchange"
  }
]
id          status              service
----------  ------------------  -----------------
Exchange    serviceDegradation  Exchange Online
id,status,service
Exchange,serviceDegradation,Exchange Online

issues response

When we make use of the option issues the response will differ.

[
  {
    "service": "Microsoft Defender for Cloud Apps",
    "status": "serviceOperational",
    "id": "cloudappsecurity",
    "issues": [
      {
        "startDateTime": "2022-05-13T00:00:00Z",
        "endDateTime": "2022-05-16T13:10:00Z",
        "lastModifiedDateTime": "2022-05-17T11:00:42.2Z",
        "title": "Microsoft Defender for Cloud Apps admin panel changes not propagating to Microsoft Defender for Endpoint",
        "id": "CS381143",
        "impactDescription": "Admins may notice that Microsoft Defender for Cloud Apps admin panel changes did not propagate to Microsoft Defender for",
        "classification": "advisory",
        "origin": "microsoft",
        "status": "serviceRestored",
        "service": "Microsoft Defender for Cloud Apps",
        "feature": "Cloud App Security",
        "featureGroup": "Cloud App Security",
        "isResolved": true,
        "highImpact": null,
        "details": [],
        "posts": [
          {
            "createdDateTime": "2022-05-17T08:31:31.113Z",
            "postType": "regular",
            "description": {
              "contentType": "html",
              "content": "Title: Microsoft Defender for Cloud Apps admin panel changes not propagating to Microsoft Defender for Endpoint\\\n\nUser Impact: Admins may notice that Microsoft Defender for Cloud Apps admin panel changes do not propagate to Microsoft Defender for Endpoint.\\\n\nCurrent status: We're analyzing system logs to determine the source of the issue.\\\n\nScope of impact: Impact is specific to users who are served through the affected infrastructure.\\\n\nNext update by: Tuesday, May 17, 2022, at 10:30 AM UTC"
            }
          }
        ]
      }
    ]
  }
]
id          status              service
----------  ------------------  -----------------
Exchange    serviceDegradation  Exchange Online
id,status,service
Exchange,serviceDegradation,Exchange Online