Advertisement
xosski

Vm/Ovm monitor

Jan 22nd, 2025
18
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.52 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. # Help function
  4. function usage {
  5. echo "Usage: $0 <OVM_MANAGER> <COMPUTE_NODE>"
  6. echo ""
  7. echo " <OVM_MANAGER> IP address or hostname of the OVM Manager"
  8. echo " <COMPUTE_NODE> IP addresses or hostnames of Compute Nodes (dom0), comma-separated"
  9. echo ""
  10. echo "Example:"
  11. echo " $0 IP_OVMM IP_dom0"
  12. echo " $0 IP_OVMM IP1_dom0,IP2_dom0"
  13. exit 1
  14. }
  15.  
  16. # Check if required parameters are provided
  17. if [ $# -ne 2 ]; then
  18. echo "Error: You must specify both the OVM Manager and at least one Compute Node."
  19. usage
  20. fi
  21.  
  22. mgrhost="$1"
  23. CN_LIST="$2"
  24. SSH_USER="root"
  25. SSH_PORT=22
  26. OVM_ADMIN="admin"
  27. OVM_PORT=10000
  28.  
  29. # Verify that required commands are available
  30. for cmd in ssh awk printf parallel; do
  31. if ! command -v "$cmd" &> /dev/null; then
  32. echo "Error: Command '$cmd' is not installed. Please install it."
  33. exit 1
  34. fi
  35. done
  36.  
  37. # Logging function for better traceability
  38. LOGFILE="ovm_vm_info.log"
  39. function log_msg {
  40. echo "$(date "+%Y-%m-%d %H:%M:%S") - $1" | tee -a "$LOGFILE"
  41. }
  42.  
  43. log_msg "Script started."
  44.  
  45. # Function to process a single Compute Node
  46. function process_compute_node {
  47. local CN="$1"
  48.  
  49. log_msg "Processing Compute Node: $CN"
  50.  
  51. # Verify SSH connection
  52. if ! ssh -o BatchMode=yes -o ConnectTimeout=5 "$SSH_USER@$CN" "exit" &>/dev/null; then
  53. log_msg "Error: Unable to connect to Compute Node ($CN). Skipping..."
  54. return
  55. fi
  56.  
  57. # Retrieve the list of VMs using a single SSH connection
  58. vm_list=$(ssh "$SSH_USER@$CN" "xm list" | awk 'NR>1 && !/Domain-0/ {print $1}')
  59.  
  60. # Exit if no VMs are found
  61. if [ -z "$vm_list" ]; then
  62. log_msg "No virtual machines found on $CN."
  63. return
  64. fi
  65.  
  66. # Initialize variables for total counts
  67. total_vcpus=0
  68. total_memory=0
  69.  
  70. # Function to get VM details
  71. function get_vm_details {
  72. local vm_id="$1"
  73.  
  74. # Retrieve VM details with a single SSH call
  75. vm_data=$(ssh -p "$OVM_PORT" "$OVM_ADMIN@$mgrhost" "show vm id=$vm_id; getVmCfgFileContent vm id=$vm_id")
  76.  
  77. # Extract relevant information
  78. vmname=$(echo "$vm_data" | grep "OVM_simple_name" | cut -d "=" -f2 | tr -d '[:space:]')
  79. vcpus=$(echo "$vm_data" | grep " vcpus" | cut -d "=" -f2 | tr -d '[:space:]')
  80. maxvcpu=$(echo "$vm_data" | grep "maxvcpus" | cut -d "=" -f2 | tr -d '[:space:]')
  81. memory=$(echo "$vm_data" | grep "memory" | cut -d "=" -f2 | tr -d '[:space:]')
  82. maxmem=$(echo "$vm_data" | grep "maxmem" | cut -d "=" -f2 | tr -d '[:space:]')
  83. [ -z "$maxmem" ] && maxmem="$memory"
  84. status=$(echo "$vm_data" | grep "Status =" | cut -d "=" -f2 | tr -d '[:space:]')
  85. os_type=$(echo "$vm_data" | grep "OVM_os_type" | cut -d "=" -f2 | tr -d '[:space:]')
  86.  
  87. # If OS TYPE is empty, set to Unknown
  88. [ -z "$os_type" ] && os_type="Unknown"
  89.  
  90. # Accumulate vCPU and memory totals
  91. total_vcpus=$((total_vcpus + vcpus))
  92. total_memory=$((total_memory + memory))
  93.  
  94. # Format output using printf for better alignment
  95. printf "%-10s | %-20s | %-5s | %-10s | %-10s | %-10s | %-10s | %-20s\n" "$CN" "$vmname" "$vcpus" "$maxvcpu" "${memory}MB" "${maxmem}MB" "$status" "$os_type"
  96. }
  97.  
  98. # Display VM details with a header
  99. echo "--------------------------------------------------------------------------------------------------------------"
  100. printf "%-10s | %-20s | %-5s | %-10s | %-10s | %-10s | %-10s | %-20s\n" "CN" "VM Name" "vCPU" "Max vCPU" "Memory" "Max Memory" "Status" "OS Type"
  101. echo "--------------------------------------------------------------------------------------------------------------"
  102.  
  103. # Loop through the VMs
  104. IFS=$'\n' # Set IFS to newline to iterate correctly over lines
  105. for vm_id in $vm_list; do
  106. get_vm_details "$vm_id"
  107. done
  108. unset IFS # Restore original IFS value
  109.  
  110. # Final row with total vCPUs and Memory
  111. echo "--------------------------------------------------------------------------------------------------------------"
  112. printf "%-10s | %-20s | %-5s | %-10s | %-10s | %-10s | %-10s | %-20s\n" "TOTAL" "$nvm" "$total_vcpus" "-" "${total_memory}MB" "-" "-" "-"
  113. echo "#########################################################################################"
  114. }
  115.  
  116. # Iterate over all provided Compute Nodes (in parallel)
  117. IFS=',' # Set separator to comma for processing multiple IPs
  118. parallel process_compute_node ::: $CN_LIST
  119. unset IFS # Restore original IFS value
  120.  
  121. log_msg "Script finished."
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement