Hi,
I've been thinking about auto-migration based on cpu usage:
#!/bin/bash
# script to auto migrate VMs to lower loaded node
debug=1
baseload=4000
#get list of nodes, there is some other text to strip out
nodes=$(pvecm nodes| grep -Ev "^$|Member|-------|Nodeid|(local)"|awk '{print $3}')
if...