Skip to content
This repository has been archived by the owner on Apr 14, 2023. It is now read-only.

Commit

Permalink
Add more Watson URLs for telemetry
Browse files Browse the repository at this point in the history
  • Loading branch information
iadgovuser1 committed Dec 21, 2018
1 parent 4dded5b commit 9b53526
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
12 changes: 9 additions & 3 deletions Examples/Microsoft/WindowsTelemetry/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,15 @@
| <https://v10.vortex-win.data.microsoft.com/collect/v1> | <https://v10.vortex-win.data.microsoft.com> | Diagnostic/telemetry data for Windows 10 1607 and later. |
| <https://v20.vortex-win.data.microsoft.com/collect/v1> | <https://v20.vortex-win.data.microsoft.com> | Diagnostic/telemetry data for Windows 10 1703 and later. |
| <https://settings-win.data.microsoft.com> | <https://settings-win.data.microsoft.com> | Used by applications, such as Windows Connected User Experiences and Telemetry component and Windows Insider Program, to dynamically update their configuration. |
| <https://watson.telemetry.microsoft.com> | <https://watson.telemetry.microsoft.com> | Windows Error Reporting (WER) data. |
| <https://oca.telemetry.microsoft.com> | <https://oca.telemetry.microsoft.com> | Online Crash Analysis (OCA) data. |
| <https://vortex.data.microsoft.com/collect/v1> | <https://vortex.data.microsoft.com> | OneDrive application for Windows 10 data. |
| <https://watson.telemetry.microsoft.com> | <https://watson.telemetry.microsoft.com> | Windows Error Reporting (WER). |
| <https://ceuswatcab01.blob.core.windows.net> | <https://ceuswatcab01.blob.core.windows.net> | Windows Error Reporting (WER) Central US 1. |
| <https://ceuswatcab02.blob.core.windows.net> | <https://ceuswatcab02.blob.core.windows.net> | Windows Error Reporting (WER) Central US 2. |
| <https://eaus2watcab01.blob.core.windows.net> | <https://eaus2watcab01.blob.core.windows.net> | Windows Error Reporting (WER) East US 1. |
| <https://eaus2watcab02.blob.core.windows.net | <https://eaus2watcab02.blob.core.windows.net> | Windows Error Reporting (WER) East US 2. |
| <https://weus2watcab01.blob.core.windows.net> | <https://weus2watcab01.blob.core.windows.net> | Windows Error Reporting (WER) West US 1. |
| <https://weus2watcab02.blob.core.windows.net> | <https://weus2watcab02.blob.core.windows.net> | Windows Error Reporting (WER) West US 2. |
| <https://oca.telemetry.microsoft.com> | <https://oca.telemetry.microsoft.com> | Online Crash Analysis (OCA). |
| <https://vortex.data.microsoft.com/collect/v1> | <https://vortex.data.microsoft.com> | OneDrive application for Windows 10. |

## References

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,12 @@ Function Get-WindowsTelemetryConnectivity() {
$data.Add(@{ TestUrl = 'https://v20.vortex-win.data.microsoft.com/collect/v1'; ExpectedStatusCode = 400; Description = 'Diagnostic/telemetry data for Windows 10 1703 and later.'; PerformBluecoatLookup=$PerformBluecoatLookup; Verbose=$isVerbose })
$data.Add(@{ TestUrl = 'https://settings-win.data.microsoft.com'; ExpectedStatusCode = 404; Description = 'Used by applications, such as Windows Connected User Experiences and Telemetry component and Windows Insider Program, to dynamically update their configuration.'; PerformBluecoatLookup=$PerformBluecoatLookup; Verbose=$isVerbose })
$data.Add(@{ TestUrl = 'https://watson.telemetry.microsoft.com'; ExpectedStatusCode = 404; Description = 'Windows Error Reporting.'; PerformBluecoatLookup=$PerformBluecoatLookup; Verbose=$isVerbose })
$data.Add(@{ TestUrl = 'https://ceuswatcab01.blob.core.windows.net'; ExpectedStatusCode = 404; Description = 'Windows Error Reporting Central US 1.'; PerformBluecoatLookup=$PerformBluecoatLookup; Verbose=$isVerbose })
$data.Add(@{ TestUrl = 'https://ceuswatcab02.blob.core.windows.net'; ExpectedStatusCode = 404; Description = 'Windows Error Reporting Central US 2.'; PerformBluecoatLookup=$PerformBluecoatLookup; Verbose=$isVerbose })
$data.Add(@{ TestUrl = 'https://eaus2watcab01.blob.core.windows.net'; ExpectedStatusCode = 404; Description = 'Windows Error Reporting East US 1.'; PerformBluecoatLookup=$PerformBluecoatLookup; Verbose=$isVerbose })
$data.Add(@{ TestUrl = 'https://eaus2watcab02.blob.core.windows.net'; ExpectedStatusCode = 404; Description = 'Windows Error Reporting East US 2.'; PerformBluecoatLookup=$PerformBluecoatLookup; Verbose=$isVerbose })
$data.Add(@{ TestUrl = 'https://weus2watcab01.blob.core.windows.net'; ExpectedStatusCode = 404; Description = 'Windows Error Reporting West US 1.'; PerformBluecoatLookup=$PerformBluecoatLookup; Verbose=$isVerbose })
$data.Add(@{ TestUrl = 'https://weus2watcab02.blob.core.windows.net'; ExpectedStatusCode = 404; Description = 'Windows Error Reporting West US 2.'; PerformBluecoatLookup=$PerformBluecoatLookup; Verbose=$isVerbose })
$data.Add(@{ TestUrl = 'https://oca.telemetry.microsoft.com'; ExpectedStatusCode = 404; Description = 'Online Crash Analysis.'; PerformBluecoatLookup=$PerformBluecoatLookup; Verbose=$isVerbose })
$data.Add(@{ TestUrl = 'https://vortex.data.microsoft.com/collect/v1'; ExpectedStatusCode = 400; Description = 'OneDrive app for Windows 10.'; PerformBluecoatLookup=$PerformBluecoatLookup; Verbose=$isVerbose })

Expand Down

0 comments on commit 9b53526

Please sign in to comment.