2019-03-21 15:48:48 +00:00
|
|
|
#!/bin/bash -
|
|
|
|
set -e
|
|
|
|
set -x
|
|
|
|
|
2019-07-04 09:20:57 +00:00
|
|
|
# We need to start libvirtd, see:
|
|
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=1682780#c8
|
|
|
|
systemctl start libvirtd ||:
|
|
|
|
|
2019-03-21 15:48:48 +00:00
|
|
|
# I'd like to use the test:/// driver but it doesn't support the right
|
|
|
|
# APIs.
|
|
|
|
virt-top --stream -d 1 -n 3 --debug /dev/stdout
|