-
Notifications
You must be signed in to change notification settings - Fork 53
Add extra documentation for ARM telemetry and Arc node liveness check… #282
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+36
−1
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
5964f27
Add extra documentation for ARM telemetry and Arc node liveness check…
e44bca7
Potential fix for pull request finding
BlaidddDrwg a6533d1
Fix capitalization/formatting feedback from Github Copilot.
61b782a
Merge branch 'main' of https://github.com/BlaidddDrwg/AzureLocal-Supp…
68f2146
Fix formatting changes as suggested by Github copilot.
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| # ARM Telemetry | ||
|
|
||
| ARM telemetry for a deployment, update, or even status can be queried using a query like: | ||
|
|
||
| ```KQL | ||
| cluster("https://armprodgbl.eastus.kusto.windows.net").database('ARMProd').Unionizer('Deployments', 'DeploymentOperations') | ||
| | where providerNamespace contains "AzureStackHCI" | ||
| | take 50; | ||
| ``` | ||
|
|
||
| The above query targets deployments, 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: | ||
|
|
||
| | database | tables | | ||
| |---------|----------| | ||
| | Requests | EventServiceEntries, HttpIncomingRequests, HttpOutgoingRequests | | ||
| | Deployments | DeploymentOperations, Deployments, PreflightEvents | | ||
| | Traces | Errors, Traces | | ||
| | Providers | ProviderErrors, ProviderTraces | | ||
| | Jobs | JobDefinitions, JobDispatchingErrors, JobErrors, JobExecutionStatus, JobHistory, JobOperations, JobStatus, JobThrottles, JobTrace | | ||
| | Storage | Compactions, Diagnostics, RedisOperations, RegionalStoreAdminLogs, RegionalStoreAdminTraces, RegionalStoreConfigurationLogs, RegionalStoreGarnetServerLogs, RegionalStoreGarnetServerTraces, RegionalStoreHealthCheckLogs, RegionalStoreJobEngineLogs, RegionalStoreServerLogs, RegionalStoreServerTraces, RegionalStoreService, StorageOperations, StorageRequests | | ||
| | General | APIValidationErrors, APIValidationTraces, AppPerfCounters, ArmHttpOutgoingRequests, CapacityErrors, CapacityTraces, ClientErrors, ClientRequests, ClientTelemetry, ClientTraces, DispatcherErrors, DispatcherEvents, DispatcherTraces, IISHttpErrors, IISLogs, ManifestRegistrations, MarketplaceErrors, MarketplaceTraces, PolicyServiceDebug, PolicyServiceError, PolicyServiceWarning, ResourceDeletions, ResourceGroupDeletions, Service, SubscriptionProvisioningRequests2, SysPerfCounters, WindowsEvents | |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,17 @@ | ||
| # Infra Lifecycle Operations | ||
|
|
||
| * [Add node, repair node fails with Type 'AddAsZHostToDomain' of Role 'BareMetal' raised an exception after cluster upgrade fail when upgraded from <=2311](./Add-node-repair-node-fails-with-Type-AddAsZHostToDomain-of-Role-BareMetal-raised-an-exception.md) | ||
| * [Add node, repair node fails with Type 'AddAsZHostToDomain' of Role 'BareMetal' raised an exception after cluster upgrade fail when upgraded from <=2311](./Add-node-repair-node-fails-with-Type-AddAsZHostToDomain-of-Role-BareMetal-raised-an-exception.md) | ||
|
|
||
| The status of any ARC Node can be ascertained by looking at its Census records. A sample query could be: | ||
|
|
||
| > [!NOTE] | ||
| > This sample query requires access to the appropriate Kusto cluster and database. Replace the placeholders with values from your environment and ensure you have the required permissions before running it. | ||
|
|
||
| ```KQL | ||
| cluster("<kusto_cluster_uri>").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. | ||
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.
Uh oh!
There was an error while loading. Please reload this page.