All Products
Search
Document Center

Application Real-Time Monitoring Service:How do I view ARMS agent logs?

Last Updated:Mar 10, 2026

ARMS agent logs help you diagnose agent-level issues such as startup failures, connectivity problems, or configuration errors. The logs are stored on the worker nodes of your Container Service for Kubernetes (ACK) cluster.

Log file location

EnvironmentLog path
ACK cluster worker node/home/admin/.opt/ArmsAgent/logs/

View log files

  1. Connect to the ACK cluster worker node by using SSH.

  2. List available log files:

    ls /home/admin/.opt/ArmsAgent/logs/*.log
  3. View a specific log file:

    cat /home/admin/.opt/ArmsAgent/logs/<log-file-name>.log

    Replace <log-file-name> with the actual file name from step 2.

  4. To monitor log output in real time, use tail -f:

    tail -f /home/admin/.opt/ArmsAgent/logs/<log-file-name>.log

Troubleshooting

If you cannot find the log files or they are empty, check the following:

  • Verify that the ARMS agent is installed and running on the worker node.

  • Verify that the current user has read permissions on the /home/admin/.opt/ArmsAgent/logs/ directory.

  • Verify that sufficient disk space is available on the worker node.