diff options
author | Petter Reinholdtsen <pere@hungry.com> | 2008-06-07 10:18:41 +0000 |
---|---|---|
committer | Petter Reinholdtsen <pere@hungry.com> | 2008-06-07 10:18:41 +0000 |
commit | d7a48527df41df54a857a817705bc387a0989103 (patch) | |
tree | b2caf0c1b299b421235625a44c4e0568ca423463 /munin-plugin | |
parent | 2abe4be214da0581ca573ba7e8cbb734f49c8c08 (diff) | |
download | sitesummary-d7a48527df41df54a857a817705bc387a0989103.tar.gz sitesummary-d7a48527df41df54a857a817705bc387a0989103.tar.bz2 sitesummary-d7a48527df41df54a857a817705bc387a0989103.tar.xz |
Change label for hosts missing site.
Diffstat (limited to 'munin-plugin')
-rwxr-xr-x | munin-plugin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/munin-plugin b/munin-plugin index 6c5291f..b660412 100755 --- a/munin-plugin +++ b/munin-plugin @@ -49,7 +49,7 @@ if (!defined $ARGV[0]) { sub handle_host { my $hostid = shift; for my $site (get_site($hostid)) { - $site = "NoSite" unless defined $site; + $site = "SiteMissing" unless defined $site; $site =~ s/[^a-zA-Z_]/_/g; $sitelabels{$site}++; } |