Add extra documentation for ARM telemetry and Arc node liveness check…#282
Open
BlaidddDrwg wants to merge 1 commit intoAzure:mainfrom
Open
Add extra documentation for ARM telemetry and Arc node liveness check…#282BlaidddDrwg wants to merge 1 commit intoAzure:mainfrom
BlaidddDrwg wants to merge 1 commit intoAzure:mainfrom
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Adds documentation to help troubleshoot Azure Local deployments by querying (1) ARM telemetry and (2) Arc node liveness via Census records, complementing existing TSG content.
Changes:
- Updated the Lifecycle TSG index to include Arc node liveness guidance and a sample Census KQL query.
- Added a new ARM TSG README with a sample KQL query and a reference table of related ARM databases/tables.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 5 comments.
| File | Description |
|---|---|
| TSG/Lifecycle/README.md | Adds Arc node liveness/Census query guidance directly into the Lifecycle README. |
| TSG/ARM/README.md | Introduces ARM telemetry querying guidance, including a sample query and database/table listing. |
Comment on lines
+4
to
+14
|
|
||
| The status of any ARC Node can be ascertained by looking at it's Census records. A sample query could be: | ||
|
|
||
| ```KQL | ||
| cluster("https://aeoprodtelemetry.eastus.kusto.windows.net").database("Telemetry").Census | ||
| | where AEODeviceARMResourceUri =~ '<resource_id>' | ||
| | where AEOClusterNodeName =~ "Node name" | ||
| | take 20 | ||
| | order by PreciseTimeStamp desc | ||
| ``` | ||
| Regular census reports indicate a healthy node. The 'EventString' column provides detailed information of various components of the Arc Node reporting in. |
Comment on lines
+5
to
+10
| The status of any ARC Node can be ascertained by looking at it's Census records. A sample query could be: | ||
|
|
||
| ```KQL | ||
| cluster("https://aeoprodtelemetry.eastus.kusto.windows.net").database("Telemetry").Census | ||
| | where AEODeviceARMResourceUri =~ '<resource_id>' | ||
| | where AEOClusterNodeName =~ "Node name" |
| | take 50; | ||
| ``` | ||
|
|
||
| the above query is for a deployment, but there are a number of [other databases](https://eng.ms/docs/cloud-ai-platform/azure-core/azure-cloud-native-and-management-platform/control-plane-bburns/azure-resource-reporting/azure-resource-reporting/dataconsumeronboarding/armdata/kustov2/overview_prod) that can be accessed, as listed on that page: |
| | Deployments | DeploymentOperations, Deployments, PreflightEvents | | ||
| | Traces | Errors, Traces | | ||
| | Providers | ProviderErrors, ProviderTraces | | ||
| | Jobs | JobDefinitions, JobDispatchingErrors, JobErrors, JobExecutionStatus, JobHistory, JobOperations, JobStatus, JobThrottles, JobTrace| |
| | take 50; | ||
| ``` | ||
|
|
||
| the above query is for a deployment, but there are a number of [other databases](https://eng.ms/docs/cloud-ai-platform/azure-core/azure-cloud-native-and-management-platform/control-plane-bburns/azure-resource-reporting/azure-resource-reporting/dataconsumeronboarding/armdata/kustov2/overview_prod) that can be accessed, as listed on that page: |
Collaborator
|
@BlaidddDrwg Please review the copilot suggestions. Once completed I'll review as well and then merge if everything looks good. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add extra documentation for ARM telemetry and Arc node liveness checking.