mirror of https://github.com/mikaku/Monitorix.git
Zoomed graphs in 'user.pm' now honour the 'global_zoom' option, and they also use the function RRDs::graphv to fit better in the browser pop up window (only for RRDtool v1.3+)
This commit is contained in:
parent
ae0c0cf66a
commit
d03c63e58f
52
lib/user.pm
52
lib/user.pm
|
@ -170,6 +170,15 @@ sub user_cgi {
|
||||||
my $graph = $cgi->{graph};
|
my $graph = $cgi->{graph};
|
||||||
my $silent = $cgi->{silent};
|
my $silent = $cgi->{silent};
|
||||||
my $zoom = "--zoom=" . $config->{global_zoom};
|
my $zoom = "--zoom=" . $config->{global_zoom};
|
||||||
|
my %rrd = (
|
||||||
|
'new' => \&RRDs::graphv,
|
||||||
|
'old' => \&RRDs::graph,
|
||||||
|
);
|
||||||
|
my $version = "new";
|
||||||
|
my $pic;
|
||||||
|
my $picz;
|
||||||
|
my $picz_width;
|
||||||
|
my $picz_height;
|
||||||
|
|
||||||
my $u = "";
|
my $u = "";
|
||||||
my $width;
|
my $width;
|
||||||
|
@ -181,6 +190,7 @@ sub user_cgi {
|
||||||
my $n;
|
my $n;
|
||||||
my $err;
|
my $err;
|
||||||
|
|
||||||
|
$version = "old" if $RRDs::VERSION < 1.3;
|
||||||
my $rrd = $config->{base_lib} . $package . ".rrd";
|
my $rrd = $config->{base_lib} . $package . ".rrd";
|
||||||
my $title = $config->{graph_title}->{$package};
|
my $title = $config->{graph_title}->{$package};
|
||||||
my $PNG_DIR = $config->{base_dir} . "/" . $config->{imgs_dir};
|
my $PNG_DIR = $config->{base_dir} . "/" . $config->{imgs_dir};
|
||||||
|
@ -279,7 +289,7 @@ sub user_cgi {
|
||||||
($width, $height) = split('x', $config->{graph_size}->{main}) if $silent eq "imagetagbig";
|
($width, $height) = split('x', $config->{graph_size}->{main}) if $silent eq "imagetagbig";
|
||||||
@tmp = @tmpz;
|
@tmp = @tmpz;
|
||||||
}
|
}
|
||||||
RRDs::graph("$PNG_DIR" . "$PNG1",
|
$pic = $rrd{$version}->("$PNG_DIR" . "$PNG1",
|
||||||
"--title=$config->{graphs}->{_user1} ($tf->{nwhen}$tf->{twhen})",
|
"--title=$config->{graphs}->{_user1} ($tf->{nwhen}$tf->{twhen})",
|
||||||
"--start=-$tf->{nwhen}$tf->{twhen}",
|
"--start=-$tf->{nwhen}$tf->{twhen}",
|
||||||
"--imgformat=PNG",
|
"--imgformat=PNG",
|
||||||
|
@ -302,7 +312,7 @@ sub user_cgi {
|
||||||
print("ERROR: while graphing $PNG_DIR" . "$PNG1: $err\n") if $err;
|
print("ERROR: while graphing $PNG_DIR" . "$PNG1: $err\n") if $err;
|
||||||
if(lc($config->{enable_zoom}) eq "y") {
|
if(lc($config->{enable_zoom}) eq "y") {
|
||||||
($width, $height) = split('x', $config->{graph_size}->{zoom});
|
($width, $height) = split('x', $config->{graph_size}->{zoom});
|
||||||
RRDs::graph("$PNG_DIR" . "$PNG1z",
|
$picz = $rrd{$version}->("$PNG_DIR" . "$PNG1z",
|
||||||
"--title=$config->{graphs}->{_user1} ($tf->{nwhen}$tf->{twhen})",
|
"--title=$config->{graphs}->{_user1} ($tf->{nwhen}$tf->{twhen})",
|
||||||
"--start=-$tf->{nwhen}$tf->{twhen}",
|
"--start=-$tf->{nwhen}$tf->{twhen}",
|
||||||
"--imgformat=PNG",
|
"--imgformat=PNG",
|
||||||
|
@ -310,6 +320,7 @@ sub user_cgi {
|
||||||
"--width=$width",
|
"--width=$width",
|
||||||
"--height=$height",
|
"--height=$height",
|
||||||
@riglim,
|
@riglim,
|
||||||
|
$zoom,
|
||||||
@{$cgi->{version12}},
|
@{$cgi->{version12}},
|
||||||
@{$colors->{graph_colors}},
|
@{$colors->{graph_colors}},
|
||||||
"DEF:sys=$rrd:user_sys:AVERAGE",
|
"DEF:sys=$rrd:user_sys:AVERAGE",
|
||||||
|
@ -325,7 +336,14 @@ sub user_cgi {
|
||||||
print(" <a href=\"" . $config->{url} . "/" . $config->{imgs_dir} . $PNG1z . "\"><img src='" . $config->{url} . "/" . $config->{imgs_dir} . $PNG1 . "' border='0'></a>\n");
|
print(" <a href=\"" . $config->{url} . "/" . $config->{imgs_dir} . $PNG1z . "\"><img src='" . $config->{url} . "/" . $config->{imgs_dir} . $PNG1 . "' border='0'></a>\n");
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
print(" <a href=\"javascript:void(window.open('" . $config->{url} . "/" . $config->{imgs_dir} . $PNG1z . "','','width=" . ($width + 115) . ",height=" . ($height + 100) . ",scrollbars=0,resizable=0'))\"><img src='" . $config->{url} . "/" . $config->{imgs_dir} . $PNG1 . "' border='0'></a>\n");
|
if($version eq "new") {
|
||||||
|
$picz_width = $picz->{image_width} * $config->{global_zoom};
|
||||||
|
$picz_height = $picz->{image_height} * $config->{global_zoom};
|
||||||
|
} else {
|
||||||
|
$picz_width = $width + 115;
|
||||||
|
$picz_height = $height + 100;
|
||||||
|
}
|
||||||
|
print(" <a href=\"javascript:void(window.open('" . $config->{url} . "/" . $config->{imgs_dir} . $PNG1z . "','','width=" . $picz_width . ",height=" . $picz_height . ",scrollbars=0,resizable=0'))\"><img src='" . $config->{url} . "/" . $config->{imgs_dir} . $PNG1 . "' border='0'></a>\n");
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
print(" <img src='" . $config->{url} . "/" . $config->{imgs_dir} . $PNG1 . "'>\n");
|
print(" <img src='" . $config->{url} . "/" . $config->{imgs_dir} . $PNG1 . "'>\n");
|
||||||
|
@ -359,7 +377,7 @@ sub user_cgi {
|
||||||
push(@tmp, "COMMENT: \\n");
|
push(@tmp, "COMMENT: \\n");
|
||||||
push(@tmp, "COMMENT: \\n");
|
push(@tmp, "COMMENT: \\n");
|
||||||
}
|
}
|
||||||
RRDs::graph("$PNG_DIR" . "$PNG2",
|
$pic = $rrd{$version}->("$PNG_DIR" . "$PNG2",
|
||||||
"--title=$config->{graphs}->{_user2} ($tf->{nwhen}$tf->{twhen})",
|
"--title=$config->{graphs}->{_user2} ($tf->{nwhen}$tf->{twhen})",
|
||||||
"--start=-$tf->{nwhen}$tf->{twhen}",
|
"--start=-$tf->{nwhen}$tf->{twhen}",
|
||||||
"--imgformat=PNG",
|
"--imgformat=PNG",
|
||||||
|
@ -379,7 +397,7 @@ sub user_cgi {
|
||||||
print("ERROR: while graphing $PNG_DIR" . "$PNG2: $err\n") if $err;
|
print("ERROR: while graphing $PNG_DIR" . "$PNG2: $err\n") if $err;
|
||||||
if(lc($config->{enable_zoom}) eq "y") {
|
if(lc($config->{enable_zoom}) eq "y") {
|
||||||
($width, $height) = split('x', $config->{graph_size}->{zoom});
|
($width, $height) = split('x', $config->{graph_size}->{zoom});
|
||||||
RRDs::graph("$PNG_DIR" . "$PNG2z",
|
$picz = $rrd{$version}->("$PNG_DIR" . "$PNG2z",
|
||||||
"--title=$config->{graphs}->{_user2} ($tf->{nwhen}$tf->{twhen})",
|
"--title=$config->{graphs}->{_user2} ($tf->{nwhen}$tf->{twhen})",
|
||||||
"--start=-$tf->{nwhen}$tf->{twhen}",
|
"--start=-$tf->{nwhen}$tf->{twhen}",
|
||||||
"--imgformat=PNG",
|
"--imgformat=PNG",
|
||||||
|
@ -387,6 +405,7 @@ sub user_cgi {
|
||||||
"--width=$width",
|
"--width=$width",
|
||||||
"--height=$height",
|
"--height=$height",
|
||||||
@riglim,
|
@riglim,
|
||||||
|
$zoom,
|
||||||
@{$cgi->{version12}},
|
@{$cgi->{version12}},
|
||||||
@{$cgi->{version12_small}},
|
@{$cgi->{version12_small}},
|
||||||
@{$colors->{graph_colors}},
|
@{$colors->{graph_colors}},
|
||||||
|
@ -403,7 +422,14 @@ sub user_cgi {
|
||||||
print(" <a href=\"" . $config->{url} . "/" . $config->{imgs_dir} . $PNG2z . "\"><img src='" . $config->{url} . "/" . $config->{imgs_dir} . $PNG2 . "' border='0'></a>\n");
|
print(" <a href=\"" . $config->{url} . "/" . $config->{imgs_dir} . $PNG2z . "\"><img src='" . $config->{url} . "/" . $config->{imgs_dir} . $PNG2 . "' border='0'></a>\n");
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
print(" <a href=\"javascript:void(window.open('" . $config->{url} . "/" . $config->{imgs_dir} . $PNG2z . "','','width=" . ($width + 115) . ",height=" . ($height + 100) . ",scrollbars=0,resizable=0'))\"><img src='" . $config->{url} . "/" . $config->{imgs_dir} . $PNG2 . "' border='0'></a>\n");
|
if($version eq "new") {
|
||||||
|
$picz_width = $picz->{image_width} * $config->{global_zoom};
|
||||||
|
$picz_height = $picz->{image_height} * $config->{global_zoom};
|
||||||
|
} else {
|
||||||
|
$picz_width = $width + 115;
|
||||||
|
$picz_height = $height + 100;
|
||||||
|
}
|
||||||
|
print(" <a href=\"javascript:void(window.open('" . $config->{url} . "/" . $config->{imgs_dir} . $PNG2z . "','','width=" . $picz_width . ",height=" . $picz_height . ",scrollbars=0,resizable=0'))\"><img src='" . $config->{url} . "/" . $config->{imgs_dir} . $PNG2 . "' border='0'></a>\n");
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
print(" <img src='" . $config->{url} . "/" . $config->{imgs_dir} . $PNG2 . "'>\n");
|
print(" <img src='" . $config->{url} . "/" . $config->{imgs_dir} . $PNG2 . "'>\n");
|
||||||
|
@ -433,7 +459,7 @@ sub user_cgi {
|
||||||
push(@tmp, "COMMENT: \\n");
|
push(@tmp, "COMMENT: \\n");
|
||||||
push(@tmp, "COMMENT: \\n");
|
push(@tmp, "COMMENT: \\n");
|
||||||
}
|
}
|
||||||
RRDs::graph("$PNG_DIR" . "$PNG3",
|
$pic = $rrd{$version}->("$PNG_DIR" . "$PNG3",
|
||||||
"--title=$config->{graphs}->{_user3} ($tf->{nwhen}$tf->{twhen})",
|
"--title=$config->{graphs}->{_user3} ($tf->{nwhen}$tf->{twhen})",
|
||||||
"--start=-$tf->{nwhen}$tf->{twhen}",
|
"--start=-$tf->{nwhen}$tf->{twhen}",
|
||||||
"--imgformat=PNG",
|
"--imgformat=PNG",
|
||||||
|
@ -453,7 +479,7 @@ sub user_cgi {
|
||||||
print("ERROR: while graphing $PNG_DIR" . "$PNG3: $err\n") if $err;
|
print("ERROR: while graphing $PNG_DIR" . "$PNG3: $err\n") if $err;
|
||||||
if(lc($config->{enable_zoom}) eq "y") {
|
if(lc($config->{enable_zoom}) eq "y") {
|
||||||
($width, $height) = split('x', $config->{graph_size}->{zoom});
|
($width, $height) = split('x', $config->{graph_size}->{zoom});
|
||||||
RRDs::graph("$PNG_DIR" . "$PNG3z",
|
$picz = $rrd{$version}->("$PNG_DIR" . "$PNG3z",
|
||||||
"--title=$config->{graphs}->{_user3} ($tf->{nwhen}$tf->{twhen})",
|
"--title=$config->{graphs}->{_user3} ($tf->{nwhen}$tf->{twhen})",
|
||||||
"--start=-$tf->{nwhen}$tf->{twhen}",
|
"--start=-$tf->{nwhen}$tf->{twhen}",
|
||||||
"--imgformat=PNG",
|
"--imgformat=PNG",
|
||||||
|
@ -461,6 +487,7 @@ sub user_cgi {
|
||||||
"--width=$width",
|
"--width=$width",
|
||||||
"--height=$height",
|
"--height=$height",
|
||||||
@riglim,
|
@riglim,
|
||||||
|
$zoom,
|
||||||
@{$cgi->{version12}},
|
@{$cgi->{version12}},
|
||||||
@{$cgi->{version12_small}},
|
@{$cgi->{version12_small}},
|
||||||
@{$colors->{graph_colors}},
|
@{$colors->{graph_colors}},
|
||||||
|
@ -477,7 +504,14 @@ sub user_cgi {
|
||||||
print(" <a href=\"" . $config->{url} . "/" . $config->{imgs_dir} . $PNG3z . "\"><img src='" . $config->{url} . "/" . $config->{imgs_dir} . $PNG3 . "' border='0'></a>\n");
|
print(" <a href=\"" . $config->{url} . "/" . $config->{imgs_dir} . $PNG3z . "\"><img src='" . $config->{url} . "/" . $config->{imgs_dir} . $PNG3 . "' border='0'></a>\n");
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
print(" <a href=\"javascript:void(window.open('" . $config->{url} . "/" . $config->{imgs_dir} . $PNG3z . "','','width=" . ($width + 115) . ",height=" . ($height + 100) . ",scrollbars=0,resizable=0'))\"><img src='" . $config->{url} . "/" . $config->{imgs_dir} . $PNG3 . "' border='0'></a>\n");
|
if($version eq "new") {
|
||||||
|
$picz_width = $picz->{image_width} * $config->{global_zoom};
|
||||||
|
$picz_height = $picz->{image_height} * $config->{global_zoom};
|
||||||
|
} else {
|
||||||
|
$picz_width = $width + 115;
|
||||||
|
$picz_height = $height + 100;
|
||||||
|
}
|
||||||
|
print(" <a href=\"javascript:void(window.open('" . $config->{url} . "/" . $config->{imgs_dir} . $PNG3z . "','','width=" . $picz_width . ",height=" . $picz_height . ",scrollbars=0,resizable=0'))\"><img src='" . $config->{url} . "/" . $config->{imgs_dir} . $PNG3 . "' border='0'></a>\n");
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
print(" <img src='" . $config->{url} . "/" . $config->{imgs_dir} . $PNG3 . "'>\n");
|
print(" <img src='" . $config->{url} . "/" . $config->{imgs_dir} . $PNG3 . "'>\n");
|
||||||
|
|
Loading…
Reference in New Issue