diff --git a/plugins/virtualization/xen b/plugins/virtualization/xen index 8d785108..bcb92d7f 100755 --- a/plugins/virtualization/xen +++ b/plugins/virtualization/xen @@ -3,7 +3,7 @@ # Script to monitor CPU usage of Xen domains # # Author: unknown -# Modifications: Matthias Pfafferodt, syntron@web.de, Roland Mohrbacher +# Modifications: Sebastian Wyder , Matthias Pfafferodt, syntron@web.de, Roland Mohrbacher # License: GPL v. 2 # # Parameters understood: @@ -32,12 +32,12 @@ if [ "$1" = "config" ]; then touch $statefile fi - echo 'graph_title Xen Domain Utilerisation' + echo 'graph_title Xen Domain Utilisation' echo 'graph_args --base 1000 -l 0 --upper-limit 100 --rigid' echo 'graph_scale no' echo 'graph_vlabel %' echo 'graph_category xen' - echo 'graph_info This graph shows how many % of the CPU time where used by a domain' + echo 'graph_info This graph shows how many percent of the CPU time was used by each domain' xm list | grep -v "^Name .* Time(s)$" | \ while read name domid mem cpu state time console; do @@ -61,7 +61,7 @@ if [ "$1" = "config" ]; then fi echo "$name.min 0" echo "$name.max 100" - echo "$name.info % of the CPU time spend for $name" + echo "$name.info % of the CPU time spent for $name" done exit 0 fi