diff --git a/lib/Site/Vms.pm b/lib/Site/Vms.pm
index b35f6744a9adfafec941fa15dd2596f36c62fd2a..83392d4df6fe2165fde38977fba0cd2f831eaf4e 100644
--- a/lib/Site/Vms.pm
+++ b/lib/Site/Vms.pm
@@ -43,10 +43,10 @@ Optional path to the virsh executable.
 
 =item active
 
-=item autostart
-
 =item inactive
 
+=item autostart
+
 =back
 
 =cut
@@ -60,8 +60,8 @@ sub handler {
     my $output_inactive = run_command("$virsh_path list --name --inactive");
     my %metrics = (
 	"active" => $output_active,
-	"autostart" => $output_autostart,
 	"inactive" => $output_inactive,
+	"autostart" => $output_autostart,
     );
 
     return \%metrics;