summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbin/smokeinfo2
-rw-r--r--lib/Smokeping/Info.pm22
2 files changed, 12 insertions, 12 deletions
diff --git a/bin/smokeinfo b/bin/smokeinfo
index 77b3653..978f7bf 100755
--- a/bin/smokeinfo
+++ b/bin/smokeinfo
@@ -31,7 +31,7 @@ sub main()
print "\n";
for my $node (@$nodes) {
my $data = $si->stat_node($node,'end-24h','now');
- print join $opt{separator},$node->{path},map {sprintf($opt{format},$data->{$_})} @rows;
+ print join $opt{separator},$node->{path},map {defined $data->{$_} ? sprintf($opt{format},$data->{$_}) : '?'} @rows;
print "\n";
}
}
diff --git a/lib/Smokeping/Info.pm b/lib/Smokeping/Info.pm
index 00ce096..13ecf6b 100644
--- a/lib/Smokeping/Info.pm
+++ b/lib/Smokeping/Info.pm
@@ -26,15 +26,15 @@ sub __flatten_targets {
my $probes = shift;
my $root = shift;
my $prefix = shift;
- my @paths;
+ my @paths;
for my $target ( sort {$root->{$a}{_order} <=> $root->{$b}{_order}}
- grep { ref $root->{$_} eq 'HASH' } keys %$root ) {
+ grep { ref $root->{$_} eq 'HASH' } keys %$root ) {
push @paths, __flatten_targets($probes,$root->{$target},$prefix.'/'.$target);
};
if (exists $root->{host} and not $root->{host} =~ m|/|){
my $probe = $probes->{$root->{probe}};
my $pings = $probe->_pings($root);
- if (not $root->{nomasterpoll}) {
+ if (not $root->{nomasterpoll} or $root->{nomasterpoll} eq 'no') {
push @paths, { path => $prefix, pings=>$pings };
};
if ($root->{slaves}) {
@@ -61,7 +61,6 @@ sub fetch_nodes {
my $cfg = $self->{cfg_hash};
my @flat = __flatten_targets($self->{probe_hash},$cfg->{Targets},'');
-
my $rx = qr{.*};
if ( defined $args{pattern} ) {
if ( $args{mode} eq 'recursive' ) {
@@ -110,11 +109,12 @@ sub stat_node {
'VDEF:median_now=median_avg,LAST',
'PRINT:median_now:%.8le'
);
+ my %data;
if (my $ERROR = RRDs::error()){
- croak "$path->{$path}: $ERROR";
+ carp "$path->{path}: $ERROR";
+ } else {
+ @data{qw(loss_avg loss_max loss_now med_avg med_min med_max med_now)} = @$graphret;
}
- my %data;
- @data{qw(loss_avg loss_max loss_now med_avg med_min med_max med_now)} = @$graphret;
return \%data;
};
1;
@@ -138,22 +138,22 @@ functionality containd in here.
my $hash_ref = $si->stat_node(path,start,end);
-=head2 IMPLEMENTATION
+=head1 IMPLEMENTATION
-=head3 new(path)
+=head2 new(path)
Create a new Smokeping::Info instance. Instantiating Smokeping::Info entails
reading the configuration file. This is a compte heavy procedure. So you may
want to use a single info object to handle multiple requests.
-=head3 fetch_nodes(pattern=>'/...',mode=>{recursive|regexp})
+=head2 fetch_nodes(pattern=>'/...',mode=>{recursive|regexp})
The fetch_nodes method will find all nodes sitting in the given pattern
(absolute path) including the path itself. By setting the recursive mode,
all rrd files in paths below will be returned as well. In regexp mode, all
rrd paths matching the given expression will be returned.
-=head3 stat_node(node,start,end)
+=head2 stat_node(node,start,end)
Return a hash pointer to statistics based on the data stored in the given
rrd path.