How to identify the cluster name

Rajesh Devarapally 0 Reputation points
2025-10-28T13:22:50.2566667+00:00

Hi Team,

I recieed below alert other day. Could you please guide me through the process to identify the cluster name as the alerts has subscription HCSC Azure Dev - Infrastructure name, not the exact cluster name, Here is the alert.

|| | -------- | We have important information for your Azure Red Hat OpenShift service 

We have important information for your Azure Red Hat OpenShift service 

|| || The activity log alert OPenshift_DEV_Alert_Rule was triggered for the Azure subscription HCSC Azure Dev - Infrastructure

|| || || | -------- | View in Azure Service Health >

View in Azure Service Health >

TRACKING ID:  JM1M-LVG

|| || TYPE:  ActionRequired

|| || STATUS: 

|| || COMMUNICATION: 

You’re receiving this notice because you use Azure Red Hat OpenShift in the North Central US region.

We have identified high CPU utilization on the worker nodes of your Azure Red Hat OpenShift service in the North Central US region. To maintain optimal performance and avoid potential service disruptions, it is important to address this high resource usage. We recommend increasing the size of your worker virtual machines (VMs) or adding more worker nodes to your Azure Red Hat OpenShift environment.

Taking these actions will help ensure your workloads continue to run smoothly and efficiently.

Recommended Action

To avoid any service disruptions, scale your worker nodes by increasing the size of your worker VMs or adding more worker nodes as soon as possible.

Help and Support

If you have questions, get answers from community experts in Microsoft Q&A. If you have a support plan and need technical help, please create a support request:

  1. For Issue type, select Technical.
  2. For Subscription, select your subscription.
  3. For Service, select My services.
  4. For Service type, select Azure Red Hat OpenShift.
  5. For Resource, select the resource you need help with.
  6. For Summary, type a description of your issue.
  7. For Problem type, select Performance.
  8. For Problem subtype, select High CPU utilization.

|| || IMPACTED SERVICE(S) AND REGION(S)

|| | -------- | Service Name

|| | -------- | Region

Service Name

|| || Region

|| || Azure Red Hat OpenShift

|| || North Central US

Thanks

Azure Red Hat OpenShift
Azure Red Hat OpenShift

An Azure service that provides a flexible, self-service deployment of fully managed OpenShift clusters.


1 answer

Sort by: Oldest
  1. Manish Deshpande 8,135 Reputation points Microsoft External Staff Moderator
    2025-11-17T04:25:59.6333333+00:00

    Hello @Rajesh Devarapally

    Apologies for the delayed response could you please try this steps and help us with some details we have pinged you over the Private message.

    • In Azure Portal, go to: Service Health → Health Alerts → Select the alert (High CPU utilization).
    • Expand Impacted Resources. This section should list the Resource ID or ARO cluster name. If the cluster name is not visible, copy the Resource ID.
    • Use Azure CLI to filter clusters by Resource ID
        az resource show --ids <Resource-ID> --query "{name:name, resourceGroup:resourceGroup}"
      

    This will return the cluster name and resource group.

    • From your CLI output, all clusters are in northcentralus. If Resource ID is not available, check the alert details for any tags or resource group hints.
    1. Compare with your CLI list:
    2. arod03 hcsc_APP00046878_dev_nc_rg
    3. arod02 hcsc_app00046878_dev_nc_das_rg
    4. arod05 hcsc_APP00046878_dev_nc_rg
    5. arod08 hcsc_APP00046878_dev_nc_rg
    6. arod01 hcsc_APP00046878_dev_nc_rg
    • Log in to the cluster console (URL from CLI output).
    • Navigate to Compute → Nodes.
    • Check CPU utilization per node.
    • Scale Up Worker Nodes
        az aro update --name <cluster-name> --resource-group <resource-group> --worker-vm-size Standard_D8s_v3
        
      
    • Add More Worker Nodes
        az aro update --name <cluster-name> --resource-group <resource-group> --worker-count <new-count>
      
    • Ensure autoscaling is enabled for workloads if applicable.
    • ARO Console → Monitoring → Metrics
        az monitor metrics list --resource <Resource-ID> --metric "CPUUsage"
      

    Reference

    https://learn.microsoft.com/en-us/azure/service-health/service-health-overview

    Thanks,
    Manish Deshpande.

    Was this answer helpful?


Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.