tenant serviceannouncement health get¶
Get the health report of a specified service for a tenant
Usage¶
m365 tenant serviceannouncement health get [options]
Options¶
-s, --serviceName <serviceName>
- The service name to retrieve the health report for.
-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 isfull
. --query [query]
- JMESPath query string. See http://jmespath.org/ for more information and examples
-o, --output [output]
- Output type.
json,text,csv,md
. Defaultjson
--verbose
- Runs command with verbose logging
--debug
- Runs command with debug logging
Examples¶
Get the health report for the service Exchange Online
m365 tenant serviceannouncement health get --serviceName "Exchange Online"
Get the health report for the service Exchange Online including the issues of the service
m365 tenant serviceannouncement health get --serviceName "Exchange Online" --issues
Response¶
Standard response¶
{
"service": "Exchange Online",
"status": "serviceDegradation",
"id": "Exchange"
}
id : Exchange
service: Exchange Online
status : serviceDegradation
id,status,service
Exchange,serviceDegradation,Exchange Online
issues
response¶
When we make use of the option issues
the response will differ.
{
"service": "Exchange Online",
"status": "serviceDegradation",
"id": "Exchange",
"issues": [
{
"startDateTime": "2022-08-17T18:27:00Z",
"endDateTime": "2022-08-18T16:06:18Z",
"lastModifiedDateTime": "2022-08-18T16:46:04.133Z",
"title": "AdminsÔÇÖ downloaded CSV mailbox usage reports via Microsoft 365 admin center donÔÇÖt contain data prior to August 1, 2022",
"id": "EX415080",
"impactDescription": "AdminsÔÇÖ downloaded CSV mailbox usage reports via Microsoft 365 admin center didn't contain data prior to August 1, 2022.",
"classification": "advisory",
"origin": "microsoft",
"status": "serviceRestored",
"service": "Exchange Online",
"feature": "Windows Live sign-in issue",
"featureGroup": "Sign-in",
"isResolved": true,
"highImpact": null,
"details": [],
"posts": [
{
"createdDateTime": "2022-08-17T18:34:54.95Z",
"postType": "regular",
"description": {
"contentType": "html",
"content": "Title: AdminsÔÇÖ downloaded CSV mailbox usage reports via Microsoft 365 admin center donÔÇÖt contain data prior to August 1, 2022\\\n\nUser impact: AdminsÔÇÖ downloaded CSV mailbox usage reports via Microsoft 365 admin center donÔÇÖt contain data prior to August 1, 2022.\\\n\nCurrent status: We're investigating a potential issue and checking for impact to your organization. We'll provide an update within 30 minutes."
}
}
]
}
]
}
id status service
---------- ------------------ -----------------
Exchange serviceDegradation Exchange Online
id,status,service
Exchange,serviceDegradation,Exchange Online