You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This cmdlet enables the admin to check status of all active & available reports when no report ID is present and to View a Report if report ID is present.
18
+
This cmdlet enables the admin to check status of all active and available reports when no report ID is present and to View a Report if report ID is present.
After this cmdlet is executed, the report of last N days will be displayed with the following properties:
28
+
If this cmdlet is executed without any parameters, it displays the status of all active and completed reports (adhering to any retention timeline as per DAG) with the following properties:
| CreatedDateTimeInUtc | The Date and Time the report creation was triggered in UTC. |
33
+
| Status | The Status of the report. |
34
+
| ReportPeriodInDays | The report duration in days. |
35
+
36
+
If this cmdlet is executed with `-ReportId` as parameter, the top 100 records of the report from the last N days will be displayed with the following properties:
@@ -34,6 +42,8 @@ After this cmdlet is executed, the report of last N days will be displayed with
34
42
| AppID | The AppID of the 3P App. |
35
43
| AppPermissions| The Permissions granted to the 3P App. |
36
44
| RequestVoulme | The number of times the 3P accessed the given SharePoint Site. |
45
+
46
+
If this cmdlet is executed with both the parameters, i.e. `-ReportId` and `-Action`, and if the value of `-Action` is set as `View`, it will display the same result as described above. If the value of `-Action` is set to `Download`, it will download the full report in CSV format.
37
47
38
48
## Example
39
49
@@ -43,23 +53,23 @@ After this cmdlet is executed, the report of last N days will be displayed with
43
53
Get-SPOEnterpriseAppInsightsReport
44
54
```
45
55
46
-
Example 1 enables admin to view latest reportID and corresponding status for each duration and adhering to any retention timeline as per DAG.
56
+
Example 1 enables admin to view the status of all active and completed reports (adhering to any retention timeline as per DAG).
This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, `-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, `-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
113
+
102
114
## Related Links
115
+
116
+
[Get started with SharePoint Online Management Shell](https://learn.microsoft.com/en-us/powershell/sharepoint/sharepoint-online/connect-sharepoint-online)
After this cmdlet is executed, the report generation request for the last N days gets queued in the pipeline and the below metadata is displayed with the following properties:
28
+
After this cmdlet is executed, the Enterprise Application Insights report generation request for the last N days gets queued in the pipeline and the below metadata is displayed with the following properties:
It is an optional parameter, and it specifies the duration of the report in days.
73
-
The possible values of ReportPeriodInDays are: 1,7, 14, 28.
74
+
It is an optional parameter, and it specifies the duration of the Enterprise Application Insights report in days. The possible values of ReportPeriodInDays are: 1, 7, 14, 28. If this parameter is not provided, it generates the report for a default duration of 1 day.
This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, `-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, `-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
92
+
90
93
## Related Links
94
+
95
+
[Get started with SharePoint Online Management Shell](https://learn.microsoft.com/en-us/powershell/sharepoint/sharepoint-online/connect-sharepoint-online)
0 commit comments