do-wufbr-MAXADO-7715481

This commit is contained in:
Meghan Stewart 2023-03-20 16:35:27 -07:00
parent 2630aef637
commit 5a18cf6d08
2 changed files with 37 additions and 1 deletions

View File

@ -212,6 +212,8 @@
items: items:
- name: Windows Update for Business reports workbook - name: Windows Update for Business reports workbook
href: update/wufb-reports-workbook.md href: update/wufb-reports-workbook.md
- name: Delivery Optimization data in reports
href: update/wufb-reports-do.md
- name: Software updates in the Microsoft 365 admin center - name: Software updates in the Microsoft 365 admin center
href: update/wufb-reports-admin-center.md href: update/wufb-reports-admin-center.md
- name: Use Windows Update for Business reports data - name: Use Windows Update for Business reports data

View File

@ -21,6 +21,8 @@ Windows Update for Business reports provides Delivery Optimization information i
- [UCDOAggregatedStatus](wufb-reports-schema-ucdoaggregatedstatus.md) - [UCDOAggregatedStatus](wufb-reports-schema-ucdoaggregatedstatus.md)
- [UCDOStatus](wufb-reports-schema-ucdostatus.md) - [UCDOStatus](wufb-reports-schema-ucdostatus.md)
Windows Update for Business reports doesn't include Delivery Optimization data for Windows Insider devices.
## Delivery Optimization terms ## Delivery Optimization terms
Windows Update for Business reports uses the following Delivery Optimization terms: Windows Update for Business reports uses the following Delivery Optimization terms:
@ -39,6 +41,38 @@ Windows Update for Business reports uses the following Delivery Optimization ter
- When bandwidth savings is <10% an *Error* icon is displayed. - When bandwidth savings is <10% an *Error* icon is displayed.
- **Configurations**: Based on the DownloadMode configuration set via MDM, Group Policy, or end-user via the user interface. - **Configurations**: Based on the DownloadMode configuration set via MDM, Group Policy, or end-user via the user interface.
## Calculations for Delivery Optimization
<!--Check this formula w PG, might be VolCDN=--> <!--Check this formula w PG, might be VolCDN=-->
Volume from the CDN is calculated with the following formula: Volume from the CDN is calculated with the following formula:
BytesFromCDN = BytesFromCDN - BytesFromEnterpriseCache BytesFromCDN = BytesFromCDN - BytesFromEnterpriseCache
## Determine GroupID
In the **Efficiency By Group** subsection, the **GroupID** is displayed as an encoded hash. You can determine the **GroupID** from the hash, or determine the hash for a given **GroupID**.
Determine the **GroupID** from the hash:
Determine the hash for a **GroupID**:
## Sample queries
You can use the data in [UCDOAggregatedStatus](wufb-reports-schema-ucdoaggregatedstatus.md)
and [UCDOStatus](wufb-reports-schema-ucdostatus.md) to create your own queries. Create your custom queries using [Kusto Query Lanaguage (KQL)](/azure/data-explorer/kusto/query/), but note that Windows Update for Business reports uses Azure Monitor, so some operators aren't supported. The KQL documentation specifies which operators aren't supported by Azure Monitor or if they have different functionality. For more information about KQL in Azure Monitor, see [Log queries in Azure Monitor](/azure/azure-monitor/logs/log-query-overview). The following queries are examples of how you can use the data:
### Sample query 1
Explanation of what the query displays
```kusto
UCDOAggregatedStatus
| where Bogus =="SomethingBogus" and Neato =="Something Neat"
| sort by Whatevs
| project Whatevs, Neato, Bogus
```
### Sample query 2
Explanation of what the query displays