summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2012-11-19 16:40:43 +0100
committerDaniel Friesel <derf@finalrewind.org>2012-11-19 16:40:43 +0100
commite5ae10f90999cde368ff3b22911b663e7814c64c (patch)
tree96fa75fb9fb0cb34743e59f276fd6f7bc413c97f /bin
parenta250dd459604bc57d6c2dab38163b57d9cb81ed8 (diff)
icli: Add -o / --overview
Diffstat (limited to 'bin')
-rwxr-xr-xbin/icli105
1 files changed, 103 insertions, 2 deletions
diff --git a/bin/icli b/bin/icli
index 9435c1d..99f9546 100755
--- a/bin/icli
+++ b/bin/icli
@@ -24,6 +24,7 @@ my $context;
my $colours = 1;
my $list_type = 's';
my $verbosity = 1;
+my $overview = 1;
my $recheck = 0;
my $force_recheck = 0;
my $match_output = undef;
@@ -116,6 +117,24 @@ sub pretty_yesno {
);
}
+sub pretty_state {
+ my ($count, $state) = @_;
+ my $ret;
+ my $colour;
+
+ given ($state) {
+ when ('ok') { $colour = 'black on_green' }
+ when ('warning') { $colour = 'black on_yellow' }
+ when ('critical') { $colour = 'white on_red' }
+ when ('unknown') { $colour = 'white on_blue' }
+ }
+
+ if ($count == 0) {
+ return q{ };
+ }
+ return with_colour(sprintf('%4d', $count), $colour);
+}
+
sub split_by_words {
my ( $str, $padding, $max_w ) = @_;
my @words = split( / /, $str );
@@ -742,6 +761,68 @@ sub display_host {
}
}
+sub display_host_overview {
+ my ($host) = @_;
+ my ($ok, $warn, $crit, $unk) = (0) x 4;
+ my $h = $data->{hosts}->{$host};
+
+ my @services = grep { filter_service($_) } @{ $data->{services}->{$host} };
+
+ for my $s (@services) {
+ given ($s->{current_state}) {
+ when (0) { $ok++ }
+ when (1) { $warn++ }
+ when (2) { $crit++ }
+ when (3) { $unk++ }
+ }
+ }
+
+ printf('%-32.32s %s',
+ $h->{host_name},
+ host_state($h->{has_been_checked}, $h->{current_state} ) );
+
+ printf(' %s %s %s %s',
+ pretty_state($ok, 'ok'),
+ pretty_state($warn, 'warning'),
+ pretty_state($crit, 'critical'),
+ pretty_state($unk, 'unknown'),
+ );
+
+ print "\n";
+}
+
+sub display_overview {
+ my ($h_ok, $h_d, $h_u, $s_ok, $s_w, $s_c, $s_u) = (0) x 7;
+
+ for my $h (@list_hosts) {
+ given ($data->{hosts}{$h}{current_state}) {
+ when (0) { $h_ok++ }
+ when (1) { $h_d++ }
+ when (2) { $h_u++ }
+ }
+ for my $s (grep { filter_service($_) } @{ $data->{services}{$h} }) {
+ given ($s->{current_state}) {
+ when (0) { $s_ok++ }
+ when (1) { $s_w++ }
+ when (2) { $s_c++ }
+ when (3) { $s_u++ }
+ }
+ }
+ }
+
+ printf("%-16.16s %4s\n", 'total hosts', $h_ok + $h_d + $h_u);
+ printf("%-16.16s %s\n", 'up', pretty_state($h_ok, 'ok'));
+ printf("%-16.16s %s\n", 'down', pretty_state($h_d, 'critical'));
+ printf("%-16.16s %s\n", 'unreachable', pretty_state($h_u, 'unknown'));
+ print "\n";
+ printf("%-16.16s %4s\n", 'total services', $s_ok + $s_w + $s_c + $s_u);
+ printf("%-16.16s %s\n", 'ok', pretty_state($s_ok, 'ok'));
+ printf("%-16.16s %s\n", 'warning', pretty_state($s_w, 'warning'));
+ printf("%-16.16s %s\n", 'critical', pretty_state($s_c, 'critical'));
+ printf("%-16.16s %s\n", 'unknown', pretty_state($s_u, 'unknown'));
+}
+
+
sub dispatch_command {
my $str = join( ';', @_ );
@@ -815,6 +896,7 @@ GetOptions(
'h|host=s' => sub { push( @for_hosts, split( /,/, $_[1] ) ) },
'l|list=s' => sub { $list_type = substr( $_[1], 0, 1 ) },
'm|match=s' => sub { $match_output = qr{$_[1]}i },
+ 'o|overview' => \$overview,
'r|recheck' => sub { $recheck = 1; $list_type = q{} },
's|service=s' => sub { push( @for_services, split( /,/, $_[1] ) ) },
'u|force-recheck' => sub { $force_recheck = 1; $list_type = q{} },
@@ -874,8 +956,18 @@ if ( $list_type eq 'h' ) {
@list_hosts = grep { filter_host( $data->{'hosts'}->{$_} ) } @list_hosts;
}
-if ( $list_type ~~ [qw[s h]] ) {
- foreach my $host (@list_hosts) {
+if ( $overview ) {
+ if ($list_type eq 'h') {
+ for my $host (@list_hosts) {
+ display_host_overview( $host );
+ }
+ }
+ else {
+ display_overview();
+ }
+}
+elsif ( $list_type ~~ [qw[s h]] ) {
+ for my $host (@list_hosts) {
display_host( $host, ( @list_hosts > 1 ) );
}
}
@@ -995,6 +1087,15 @@ Note that only the first character of the argument is checked, so C<< icli
Limit selection to hosts/services whose plugin output matches
I<regex> (perl regular expression, case insensitive. see L<perlre>).
+=item B<-o>|B<--overview>
+
+Display "tactical overview"-style overview.
+By default (or when used with C<< -ls >>) the number of all hosts and services
+(both total and divided by their state) is shown.
+
+When used with C<< -lh >>, lists all hosts with the number of ok / warning /
+... checks on each host.
+
=item B<-r>|B<--recheck>
Schedule an immediate recheck of all selected services