add tmpl
This commit is contained in:
parent
eb8851d472
commit
03189601ce
21
htdocs/cgi-bin/details.pl
Executable file
21
htdocs/cgi-bin/details.pl
Executable file
@ -0,0 +1,21 @@
|
||||
#!/usr/bin/perl
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
use Template;
|
||||
use CGI;
|
||||
use CGI::Carp qw(fatalsToBrowser);
|
||||
|
||||
my $cgi = new CGI;
|
||||
my $var = {
|
||||
GRAPH => $cgi->param('graph')
|
||||
};
|
||||
|
||||
my $template = Template->new({
|
||||
INCLUDE_PATH => '/var/www/mrtg/tmpl',
|
||||
INTERPOLATE => 1,
|
||||
});
|
||||
|
||||
$|++;
|
||||
print $cgi->header();
|
||||
$template->process('details.tmpl',$var);
|
46
htdocs/cgi-bin/graph.pl
Executable file
46
htdocs/cgi-bin/graph.pl
Executable file
@ -0,0 +1,46 @@
|
||||
#!/usr/bin/perl
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
use RRDs;
|
||||
use CGI;
|
||||
use CGI::Carp qw(fatalsToBrowser);
|
||||
|
||||
my $TMPLpath = "/var/www/mrtg/tmpl";
|
||||
|
||||
my $cgi = new CGI;
|
||||
my $graph = $cgi->param('graph') || $ARGV[0];
|
||||
|
||||
$|++;
|
||||
print $cgi->header(-type => "image/png") unless($ARGV[0]);
|
||||
|
||||
if($graph) {
|
||||
if(open(RRD,"<$TMPLpath/$graph.tmpl")) {
|
||||
my @rrd = <RRD>;
|
||||
close(RRD);
|
||||
chomp(@rrd);
|
||||
my @opts;
|
||||
|
||||
if($cgi->param('start')) {
|
||||
push @opts,"--start=" . $cgi->param('start');
|
||||
}
|
||||
if($cgi->param('end')) {
|
||||
push @opts,"--end=" . $cgi->param('end');
|
||||
}
|
||||
if($cgi->param('width')) {
|
||||
push @opts,"-w ".$cgi->param('width');
|
||||
}
|
||||
if($cgi->param('height')) {
|
||||
push @opts,"-h ".$cgi->param('height');
|
||||
}
|
||||
|
||||
push @opts,@rrd;
|
||||
if($ARGV[0]) {
|
||||
foreach (@rrd) {
|
||||
print $_ . "\n";
|
||||
}
|
||||
# exit;
|
||||
}
|
||||
RRDs::graph("-",@opts) or die(RRDs::error);
|
||||
}
|
||||
}
|
51
htdocs/crypto.html
Normal file
51
htdocs/crypto.html
Normal file
@ -0,0 +1,51 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>MRTG Index Page</TITLE>
|
||||
<meta http-equiv="content-type" content="text/html; charset=iso-8859-15" >
|
||||
<META HTTP-EQUIV="Refresh" CONTENT="600" >
|
||||
<META HTTP-EQUIV="Cache-Control" content="no-cache" >
|
||||
<META HTTP-EQUIV="Pragma" CONTENT="no-cache" >
|
||||
<LINK HREF="/cgi-bin/details.pl?graph=favicon.ico" rel="shortcut icon" >
|
||||
<LINK rel="stylesheet" type="text/css" HREF="style.css"/>
|
||||
</HEAD>
|
||||
|
||||
<BODY>
|
||||
<H1><a href="/">home</a> <a href="/lxc.html">lxc</a> <a href="/crypto.html">crypto</a> Crypto - Monitoring</H1>
|
||||
<DIV>
|
||||
|
||||
<DIV>
|
||||
<B>[Bitcoin (BTC)]</B><BR/>
|
||||
<A HREF="/cgi-bin/details.pl?graph=crypto-BTC"><IMG ALT="BTC-EUR" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=crypto-BTC"></A>
|
||||
</DIV>
|
||||
|
||||
<DIV>
|
||||
<B>[Etherium (ETH)]</B><BR/>
|
||||
<A HREF="/cgi-bin/details.pl?graph=crypto-ETH"><IMG ALT="ETH-EUR" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=crypto-ETH"></A>
|
||||
</DIV>
|
||||
|
||||
<DIV>
|
||||
<B>[Ripple (XRP)]</B><BR/>
|
||||
<A HREF="/cgi-bin/details.pl?graph=crypto-XRP"><IMG ALT="XRP-EUR" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=crypto-XRP"></A>
|
||||
</DIV>
|
||||
|
||||
|
||||
<DIV>
|
||||
<B>[EOS (EOS)]</B><BR/>
|
||||
<A HREF="/cgi-bin/details.pl?graph=crypto-EOS"><IMG ALT="EOS-EUR" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=crypto-EOS"></A>
|
||||
</DIV>
|
||||
|
||||
<DIV>
|
||||
<B>[Tezos (XTZ)]</B><BR/>
|
||||
<A HREF="/cgi-bin/details.pl?graph=crypto-XTZ"><IMG ALT="XTZ-EUR" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=crypto-XTZ"></A>
|
||||
</DIV>
|
||||
|
||||
<DIV>
|
||||
<B>[Stellar Lumens (XLM)]<BR/>
|
||||
<A HREF="/cgi-bin/details.pl?graph=crypto-XLM"><IMG ALT="XLM-EUR" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=crypto-XLM"></A>
|
||||
</DIV>
|
||||
|
||||
</DIV>
|
||||
</BODY>
|
||||
</HTML>
|
||||
|
129
htdocs/lxc.html
Normal file
129
htdocs/lxc.html
Normal file
@ -0,0 +1,129 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>MRTG Index Page</TITLE>
|
||||
<meta http-equiv="content-type" content="text/html; charset=iso-8859-15" >
|
||||
<META HTTP-EQUIV="Refresh" CONTENT="600" >
|
||||
<META HTTP-EQUIV="Cache-Control" content="no-cache" >
|
||||
<META HTTP-EQUIV="Pragma" CONTENT="no-cache" >
|
||||
<LINK HREF="/cgi-bin/details.pl?graph=favicon.ico" rel="shortcut icon" >
|
||||
<LINK rel="stylesheet" type="text/css" HREF="style.css"/>
|
||||
</HEAD>
|
||||
|
||||
<BODY>
|
||||
<H1><a href="/">home</a> <a href="/lxc.html">lxc</a> <a href="/crypto.html">crypto</a> LXC - Monitoring</H1>
|
||||
<DIV>
|
||||
|
||||
<DIV>
|
||||
<B>[cloud]</B><BR/>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-cloud.net"><IMG ALT="lxc-cloud.net" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-cloud.net"></A>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-cloud.cpu"><IMG ALT="lxc-cloud.cpu" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-cloud.cpu"></A>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-cloud.memory"><IMG ALT="lxc-cloud.memory" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-cloud.memory"></A>
|
||||
</DIV>
|
||||
<DIV>
|
||||
<B>[db]</B><BR/>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-db.net"><IMG ALT="lxc-db.net" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-db.net"></A>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-db.cpu"><IMG ALT="lxc-db.cpu" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-db.cpu"></A>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-db.memory"><IMG ALT="lxc-db.memory" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-db.memory"></A>
|
||||
</DIV>
|
||||
<DIV>
|
||||
<B>[gitea]</B><BR/>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-gitea.net"><IMG ALT="lxc-gitea.net" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-gitea.net"></A>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-gitea.cpu"><IMG ALT="lxc-gitea.cpu" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-gitea.cpu"></A>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-gitea.memory"><IMG ALT="lxc-gitea.memory" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-gitea.memory"></A>
|
||||
</DIV>
|
||||
<DIV>
|
||||
<B>[home-assistant]</B><BR/>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-home-assistant.net"><IMG ALT="lxc-home-assistant.net" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-home-assistant.net"></A>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-home-assistant.cpu"><IMG ALT="lxc-home-assistant.cpu" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-home-assistant.cpu"></A>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-home-assistant.memory"><IMG ALT="lxc-home-assistant.memory" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-home-assistant.memory"></A>
|
||||
</DIV>
|
||||
<DIV>
|
||||
<B>[jitsi]</B><BR/>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-jitsi.net"><IMG ALT="lxc-jitsi.net" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-jitsi.net"></A>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-jitsi.cpu"><IMG ALT="lxc-jitsi.cpu" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-jitsi.cpu"></A>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-jitsi.memory"><IMG ALT="lxc-jitsi.memory" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-jitsi.memory"></A>
|
||||
</DIV>
|
||||
<DIV>
|
||||
<B>[mail]</B><BR/>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-mail.net"><IMG ALT="lxc-mail.net" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-mail.net"></A>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-mail.cpu"><IMG ALT="lxc-mail.cpu" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-mail.cpu"></A>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-mail.memory"><IMG ALT="lxc-mail.memory" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-mail.memory"></A>
|
||||
</DIV>
|
||||
<DIV>
|
||||
<B>[matrix]</B><BR/>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-matrix.net"><IMG ALT="lxc-matrix.net" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-matrix.net"></A>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-matrix.cpu"><IMG ALT="lxc-matrix.cpu" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-matrix.cpu"></A>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-matrix.memory"><IMG ALT="lxc-matrix.memory" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-matrix.memory"></A>
|
||||
</DIV>
|
||||
<DIV>
|
||||
<B>[motion]</B><BR/>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-motion.net"><IMG ALT="lxc-motion.net" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-motion.net"></A>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-motion.cpu"><IMG ALT="lxc-motion.cpu" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-motion.cpu"></A>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-motion.memory"><IMG ALT="lxc-motion.memory" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-motion.memory"></A>
|
||||
</DIV>
|
||||
<DIV>
|
||||
<B>[mqtt]</B><BR/>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-mqtt.net"><IMG ALT="lxc-mqtt.net" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-mqtt.net"></A>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-mqtt.cpu"><IMG ALT="lxc-mqtt.cpu" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-mqtt.cpu"></A>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-mqtt.memory"><IMG ALT="lxc-mqtt.memory" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-mqtt.memory"></A>
|
||||
</DIV>
|
||||
<DIV>
|
||||
<B>[mrtg]</B><BR/>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-mrtg.net"><IMG ALT="lxc-mrtg.net" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-mrtg.net"></A>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-mrtg.cpu"><IMG ALT="lxc-mrtg.cpu" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-mrtg.cpu"></A>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-mrtg.memory"><IMG ALT="lxc-mrtg.memory" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-mrtg.memory"></A>
|
||||
</DIV>
|
||||
<DIV>
|
||||
<B>[node-red]</B><BR/>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-node-red.net"><IMG ALT="lxc-node-red.net" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-node-red.net"></A>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-node-red.cpu"><IMG ALT="lxc-node-red.cpu" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-node-red.cpu"></A>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-node-red.memory"><IMG ALT="lxc-node-red.memory" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-node-red.memory"></A>
|
||||
</DIV>
|
||||
<DIV>
|
||||
<B>[pihole]</B><BR/>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-pihole.net"><IMG ALT="lxc-pihole.net" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-pihole.net"></A>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-pihole.cpu"><IMG ALT="lxc-pihole.cpu" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-pihole.cpu"></A>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-pihole.memory"><IMG ALT="lxc-pihole.memory" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-pihole.memory"></A>
|
||||
</DIV>
|
||||
<DIV>
|
||||
<B>[redis]</B><BR/>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-redis.net"><IMG ALT="lxc-redis.net" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-redis.net"></A>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-redis.cpu"><IMG ALT="lxc-redis.cpu" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-redis.cpu"></A>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-redis.memory"><IMG ALT="lxc-redis.memory" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-redis.memory"></A>
|
||||
</DIV>
|
||||
<DIV>
|
||||
<B>[traccar]</B><BR/>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-traccar.net"><IMG ALT="lxc-traccar.net" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-traccar.net"></A>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-traccar.cpu"><IMG ALT="lxc-traccar.cpu" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-traccar.cpu"></A>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-traccar.memory"><IMG ALT="lxc-traccar.memory" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-traccar.memory"></A>
|
||||
</DIV>
|
||||
<DIV>
|
||||
<B>[webmail]</B><BR/>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-webmail.net"><IMG ALT="lxc-webmail.net" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-webmail.net"></A>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-webmail.cpu"><IMG ALT="lxc-webmail.cpu" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-webmail.cpu"></A>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-webmail.memory"><IMG ALT="lxc-webmail.memory" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-webmail.memory"></A>
|
||||
</DIV>
|
||||
<DIV>
|
||||
<B>[wireguard]</B><BR/>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-wireguard.net"><IMG ALT="lxc-wireguard.net" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-wireguard.net"></A>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-wireguard.cpu"><IMG ALT="lxc-wireguard.cpu" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-wireguard.cpu"></A>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-wireguard.memory"><IMG ALT="lxc-wireguard.memory" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-wireguard.memory"></A>
|
||||
</DIV>
|
||||
<DIV>
|
||||
<B>[www]</B><BR/>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-www.net"><IMG ALT="lxc-www.net" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-www.net"></A>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-www.cpu"><IMG ALT="lxc-www.cpu" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-www.cpu"></A>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-www.memory"><IMG ALT="lxc-www.memory" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-www.memory"></A>
|
||||
</DIV>
|
||||
<DIV>
|
||||
<B>[www-familienhilfe-baeumler]</B><BR/>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-www-familienhilfe-baeumler.net"><IMG ALT="lxc-www-familienhilfe-baeumler.net" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-www-familienhilfe-baeumler.net"></A>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-www-familienhilfe-baeumler.cpu"><IMG ALT="lxc-www-familienhilfe-baeumler.cpu" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-www-familienhilfe-baeumler.cpu"></A>
|
||||
<A HREF="/cgi-bin/details.pl?graph=lxc-www-familienhilfe-baeumler.memory"><IMG ALT="lxc-www-familienhilfe-baeumler.memory" SRC="/cgi-bin/graph.pl?width=540&height=200&graph=lxc-www-familienhilfe-baeumler.memory"></A>
|
||||
</DIV>
|
||||
|
||||
</DIV>
|
||||
</BODY>
|
||||
</HTML>
|
||||
|
16
tmpl/br0tkasten.br0.tmpl
Normal file
16
tmpl/br0tkasten.br0.tmpl
Normal file
@ -0,0 +1,16 @@
|
||||
-v in/up bps
|
||||
-t [br0tkasten] br0
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:d=/var/www/mrtg/rrd/br0tkasten.br0.rrd:ds0:AVERAGE
|
||||
DEF:u=/var/www/mrtg/rrd/br0tkasten.br0.rrd:ds1:AVERAGE
|
||||
CDEF:down=d,8,*
|
||||
CDEF:up=u,-8,*
|
||||
AREA:down#CC9A578060:Down
|
||||
AREA:up#2EA3496060:Up
|
||||
LINE1:down#CC9A57
|
||||
LINE1:up#2EA349
|
||||
LINE1:0#000000
|
10
tmpl/br0tkasten.io.tmpl
Normal file
10
tmpl/br0tkasten.io.tmpl
Normal file
@ -0,0 +1,10 @@
|
||||
-v RAM
|
||||
-t [br0tkasten] I/O stats
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:in=/var/www/mrtg/rrd/br0tkasten.io.rrd:ds0:AVERAGE
|
||||
AREA:in#CC9A5780
|
||||
LINE1:in#CC9A57
|
19
tmpl/crypto-BTC-predict.tmpl
Normal file
19
tmpl/crypto-BTC-predict.tmpl
Normal file
@ -0,0 +1,19 @@
|
||||
-v BTC in EUR
|
||||
-t BTC sell
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:a=/var/www/localhost/rrd/crypto-BTC.rrd:sell:AVERAGE
|
||||
COMMENT: max. avg. min. cur.\n
|
||||
CDEF:idle=a,0.00,EQ,INF,0,IF
|
||||
CDEF:smooth=a,7200,TREND
|
||||
CDEF:predict=86400,-7,3600,a,PREDICT
|
||||
CDEF:sigma=86400,-7,3600,a,PREDICTSIGMA
|
||||
VDEF:avg=a,AVERAGE
|
||||
AREA:a#CC9A5760:sell
|
||||
AREA:idle#AFEEEE
|
||||
LINE2:avg#00FF00:"Avg\n":dashes=5
|
||||
LINE2:predict#FF00FF:"Trend Prediction\n":dashes=5
|
||||
LINE1:smooth#FF0000:"Sliding Window Smoothing"
|
15
tmpl/crypto-BTC.tmpl
Normal file
15
tmpl/crypto-BTC.tmpl
Normal file
@ -0,0 +1,15 @@
|
||||
-v BTC in EUR
|
||||
-t BTC sell
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:sell=/var/www/localhost/rrd/crypto-BTC.rrd:sell:AVERAGE
|
||||
COMMENT: max. avg. min. cur.\n
|
||||
AREA:sell#CC9A5760:sell
|
||||
GPRINT:sell:MAX:%6.4lf %sEUR
|
||||
GPRINT:sell:AVERAGE:%6.4lf %sEUR
|
||||
GPRINT:sell:MIN:%6.4lf %sEUR
|
||||
GPRINT:sell:LAST:%6.4lf %sEUR\n
|
||||
LINE1:0#000000
|
15
tmpl/crypto-EOS.tmpl
Normal file
15
tmpl/crypto-EOS.tmpl
Normal file
@ -0,0 +1,15 @@
|
||||
-v EOS in EUR
|
||||
-t EOS sell
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:sell=/var/www/localhost/rrd/crypto-EOS.rrd:sell:AVERAGE
|
||||
COMMENT: max. avg. min. cur.\n
|
||||
AREA:sell#CC9A5760:sell
|
||||
GPRINT:sell:MAX:%6.4lf %sEUR
|
||||
GPRINT:sell:AVERAGE:%6.4lf %sEUR
|
||||
GPRINT:sell:MIN:%6.4lf %sEUR
|
||||
GPRINT:sell:LAST:%6.4lf %sEUR\n
|
||||
LINE1:0#000000
|
15
tmpl/crypto-ETH.tmpl
Normal file
15
tmpl/crypto-ETH.tmpl
Normal file
@ -0,0 +1,15 @@
|
||||
-v ETH in EUR
|
||||
-t ETH sell
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:sell=/var/www/localhost/rrd/crypto-ETH.rrd:sell:AVERAGE
|
||||
COMMENT: max. avg. min. cur.\n
|
||||
AREA:sell#CC9A5760:sell
|
||||
GPRINT:sell:MAX:%6.4lf %sEUR
|
||||
GPRINT:sell:AVERAGE:%6.4lf %sEUR
|
||||
GPRINT:sell:MIN:%6.4lf %sEUR
|
||||
GPRINT:sell:LAST:%6.4lf %sEUR\n
|
||||
LINE1:0#000000
|
15
tmpl/crypto-XLM.tmpl
Normal file
15
tmpl/crypto-XLM.tmpl
Normal file
@ -0,0 +1,15 @@
|
||||
-v XLM in EUR
|
||||
-t XLM sell
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:sell=/var/www/localhost/rrd/crypto-XLM.rrd:sell:AVERAGE
|
||||
COMMENT: max. avg. min. cur.\n
|
||||
AREA:sell#CC9A5760:sell
|
||||
GPRINT:sell:MAX:%6.4lf %sEUR
|
||||
GPRINT:sell:AVERAGE:%6.4lf %sEUR
|
||||
GPRINT:sell:MIN:%6.4lf %sEUR
|
||||
GPRINT:sell:LAST:%6.4lf %sEUR\n
|
||||
LINE1:0#000000
|
15
tmpl/crypto-XRP.tmpl
Normal file
15
tmpl/crypto-XRP.tmpl
Normal file
@ -0,0 +1,15 @@
|
||||
-v XRP in EUR
|
||||
-t XRP sell
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:sell=/var/www/localhost/rrd/crypto-XRP.rrd:sell:AVERAGE
|
||||
COMMENT: max. avg. min. cur.\n
|
||||
AREA:sell#CC9A5760:sell
|
||||
GPRINT:sell:MAX:%6.4lf %sEUR
|
||||
GPRINT:sell:AVERAGE:%6.4lf %sEUR
|
||||
GPRINT:sell:MIN:%6.4lf %sEUR
|
||||
GPRINT:sell:LAST:%6.4lf %sEUR\n
|
||||
LINE1:0#000000
|
15
tmpl/crypto-XTZ.tmpl
Normal file
15
tmpl/crypto-XTZ.tmpl
Normal file
@ -0,0 +1,15 @@
|
||||
-v XTZ in EUR
|
||||
-t XTZ sell
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:sell=/var/www/localhost/rrd/crypto-XTZ.rrd:sell:AVERAGE
|
||||
COMMENT: max. avg. min. cur.\n
|
||||
AREA:sell#CC9A5760:sell
|
||||
GPRINT:sell:MAX:%6.4lf %sEUR
|
||||
GPRINT:sell:AVERAGE:%6.4lf %sEUR
|
||||
GPRINT:sell:MIN:%6.4lf %sEUR
|
||||
GPRINT:sell:LAST:%6.4lf %sEUR\n
|
||||
LINE1:0#000000
|
16
tmpl/fritzbox.wan.tmpl
Normal file
16
tmpl/fritzbox.wan.tmpl
Normal file
@ -0,0 +1,16 @@
|
||||
-v in/up bps
|
||||
-t [FritzBox] WAN interface
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:d=/var/www/mrtg/rrd/fritzbox.wan.rrd:ds0:AVERAGE
|
||||
DEF:u=/var/www/mrtg/rrd/fritzbox.wan.rrd:ds1:AVERAGE
|
||||
CDEF:down=d,8,*
|
||||
CDEF:up=u,-8,*
|
||||
AREA:down#CC9A5780:Down
|
||||
AREA:up#2EA34960:Up
|
||||
LINE1:down#CC9A57
|
||||
LINE1:up#045C55
|
||||
LINE1:0#000000
|
10
tmpl/lxc-cloud.cpu.tmpl
Normal file
10
tmpl/lxc-cloud.cpu.tmpl
Normal file
@ -0,0 +1,10 @@
|
||||
-v cpu
|
||||
-t [cloud] cpu
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:in=/var/www/mrtg/rrd/lxc-cloud.cpu.rrd:ds0:AVERAGE
|
||||
AREA:in#CC9A5780
|
||||
LINE1:in#CC9A57
|
10
tmpl/lxc-cloud.memory.tmpl
Normal file
10
tmpl/lxc-cloud.memory.tmpl
Normal file
@ -0,0 +1,10 @@
|
||||
-v memory
|
||||
-t [cloud] memory
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:in=/var/www/mrtg/rrd/lxc-cloud.memory.rrd:ds0:AVERAGE
|
||||
AREA:in#CC9A5780
|
||||
LINE1:in#CC9A57
|
23
tmpl/lxc-cloud.net.tmpl
Normal file
23
tmpl/lxc-cloud.net.tmpl
Normal file
@ -0,0 +1,23 @@
|
||||
-v in/up bps
|
||||
-t [cloud] net
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:rx=/var/www/mrtg/rrd/lxc-cloud.net.rrd:ds0:AVERAGE
|
||||
DEF:tx=/var/www/mrtg/rrd/lxc-cloud.net.rrd:ds1:AVERAGE
|
||||
CDEF:RX=rx,8,*
|
||||
CDEF:TX=tx,8,*
|
||||
COMMENT: max. avg. min. cur.\n
|
||||
AREA:RX#CC9A5760:Rx
|
||||
GPRINT:RX:MAX:%6.2lf %sbps
|
||||
GPRINT:RX:AVERAGE:%6.2lf %sbps
|
||||
GPRINT:RX:MIN:%6.2lf %sbps
|
||||
GPRINT:RX:LAST:%6.2lf %sbps\n
|
||||
LINE1:TX#2EA349:Tx
|
||||
GPRINT:TX:MAX:%6.2lf %sbps
|
||||
GPRINT:TX:AVERAGE:%6.2lf %sbps
|
||||
GPRINT:TX:MIN:%6.2lf %sbps
|
||||
GPRINT:TX:LAST:%6.2lf %sbps\n
|
||||
LINE1:0#000000
|
10
tmpl/lxc-db.cpu.tmpl
Normal file
10
tmpl/lxc-db.cpu.tmpl
Normal file
@ -0,0 +1,10 @@
|
||||
-v cpu
|
||||
-t [db] cpu
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:in=/var/www/mrtg/rrd/lxc-db.cpu.rrd:ds0:AVERAGE
|
||||
AREA:in#CC9A5780
|
||||
LINE1:in#CC9A57
|
10
tmpl/lxc-db.memory.tmpl
Normal file
10
tmpl/lxc-db.memory.tmpl
Normal file
@ -0,0 +1,10 @@
|
||||
-v memory
|
||||
-t [db] memory
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:in=/var/www/mrtg/rrd/lxc-db.memory.rrd:ds0:AVERAGE
|
||||
AREA:in#CC9A5780
|
||||
LINE1:in#CC9A57
|
23
tmpl/lxc-db.net.tmpl
Normal file
23
tmpl/lxc-db.net.tmpl
Normal file
@ -0,0 +1,23 @@
|
||||
-v in/up bps
|
||||
-t [db] net
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:rx=/var/www/mrtg/rrd/lxc-db.net.rrd:ds0:AVERAGE
|
||||
DEF:tx=/var/www/mrtg/rrd/lxc-db.net.rrd:ds1:AVERAGE
|
||||
CDEF:RX=rx,8,*
|
||||
CDEF:TX=tx,8,*
|
||||
COMMENT: max. avg. min. cur.\n
|
||||
AREA:RX#CC9A5760:Rx
|
||||
GPRINT:RX:MAX:%6.2lf %sbps
|
||||
GPRINT:RX:AVERAGE:%6.2lf %sbps
|
||||
GPRINT:RX:MIN:%6.2lf %sbps
|
||||
GPRINT:RX:LAST:%6.2lf %sbps\n
|
||||
LINE1:TX#2EA349:Tx
|
||||
GPRINT:TX:MAX:%6.2lf %sbps
|
||||
GPRINT:TX:AVERAGE:%6.2lf %sbps
|
||||
GPRINT:TX:MIN:%6.2lf %sbps
|
||||
GPRINT:TX:LAST:%6.2lf %sbps\n
|
||||
LINE1:0#000000
|
10
tmpl/lxc-gitea.cpu.tmpl
Normal file
10
tmpl/lxc-gitea.cpu.tmpl
Normal file
@ -0,0 +1,10 @@
|
||||
-v cpu
|
||||
-t [gitea] cpu
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:in=/var/www/mrtg/rrd/lxc-gitea.cpu.rrd:ds0:AVERAGE
|
||||
AREA:in#CC9A5780
|
||||
LINE1:in#CC9A57
|
10
tmpl/lxc-gitea.memory.tmpl
Normal file
10
tmpl/lxc-gitea.memory.tmpl
Normal file
@ -0,0 +1,10 @@
|
||||
-v memory
|
||||
-t [gitea] memory
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:in=/var/www/mrtg/rrd/lxc-gitea.memory.rrd:ds0:AVERAGE
|
||||
AREA:in#CC9A5780
|
||||
LINE1:in#CC9A57
|
23
tmpl/lxc-gitea.net.tmpl
Normal file
23
tmpl/lxc-gitea.net.tmpl
Normal file
@ -0,0 +1,23 @@
|
||||
-v in/up bps
|
||||
-t [gitea] net
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:rx=/var/www/mrtg/rrd/lxc-gitea.net.rrd:ds0:AVERAGE
|
||||
DEF:tx=/var/www/mrtg/rrd/lxc-gitea.net.rrd:ds1:AVERAGE
|
||||
CDEF:RX=rx,8,*
|
||||
CDEF:TX=tx,8,*
|
||||
COMMENT: max. avg. min. cur.\n
|
||||
AREA:RX#CC9A5760:Rx
|
||||
GPRINT:RX:MAX:%6.2lf %sbps
|
||||
GPRINT:RX:AVERAGE:%6.2lf %sbps
|
||||
GPRINT:RX:MIN:%6.2lf %sbps
|
||||
GPRINT:RX:LAST:%6.2lf %sbps\n
|
||||
LINE1:TX#2EA349:Tx
|
||||
GPRINT:TX:MAX:%6.2lf %sbps
|
||||
GPRINT:TX:AVERAGE:%6.2lf %sbps
|
||||
GPRINT:TX:MIN:%6.2lf %sbps
|
||||
GPRINT:TX:LAST:%6.2lf %sbps\n
|
||||
LINE1:0#000000
|
10
tmpl/lxc-home-assistant.cpu.tmpl
Normal file
10
tmpl/lxc-home-assistant.cpu.tmpl
Normal file
@ -0,0 +1,10 @@
|
||||
-v cpu
|
||||
-t [home-assistant] cpu
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:in=/var/www/mrtg/rrd/lxc-home-assistant.cpu.rrd:ds0:AVERAGE
|
||||
AREA:in#CC9A5780
|
||||
LINE1:in#CC9A57
|
10
tmpl/lxc-home-assistant.memory.tmpl
Normal file
10
tmpl/lxc-home-assistant.memory.tmpl
Normal file
@ -0,0 +1,10 @@
|
||||
-v memory
|
||||
-t [home-assistant] memory
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:in=/var/www/mrtg/rrd/lxc-home-assistant.memory.rrd:ds0:AVERAGE
|
||||
AREA:in#CC9A5780
|
||||
LINE1:in#CC9A57
|
23
tmpl/lxc-home-assistant.net.tmpl
Normal file
23
tmpl/lxc-home-assistant.net.tmpl
Normal file
@ -0,0 +1,23 @@
|
||||
-v in/up bps
|
||||
-t [home-assistant] net
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:rx=/var/www/mrtg/rrd/lxc-home-assistant.net.rrd:ds0:AVERAGE
|
||||
DEF:tx=/var/www/mrtg/rrd/lxc-home-assistant.net.rrd:ds1:AVERAGE
|
||||
CDEF:RX=rx,8,*
|
||||
CDEF:TX=tx,8,*
|
||||
COMMENT: max. avg. min. cur.\n
|
||||
AREA:RX#CC9A5760:Rx
|
||||
GPRINT:RX:MAX:%6.2lf %sbps
|
||||
GPRINT:RX:AVERAGE:%6.2lf %sbps
|
||||
GPRINT:RX:MIN:%6.2lf %sbps
|
||||
GPRINT:RX:LAST:%6.2lf %sbps\n
|
||||
LINE1:TX#2EA349:Tx
|
||||
GPRINT:TX:MAX:%6.2lf %sbps
|
||||
GPRINT:TX:AVERAGE:%6.2lf %sbps
|
||||
GPRINT:TX:MIN:%6.2lf %sbps
|
||||
GPRINT:TX:LAST:%6.2lf %sbps\n
|
||||
LINE1:0#000000
|
10
tmpl/lxc-jitsi.cpu.tmpl
Normal file
10
tmpl/lxc-jitsi.cpu.tmpl
Normal file
@ -0,0 +1,10 @@
|
||||
-v cpu
|
||||
-t [jitsi] cpu
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:in=/var/www/mrtg/rrd/lxc-jitsi.cpu.rrd:ds0:AVERAGE
|
||||
AREA:in#CC9A5780
|
||||
LINE1:in#CC9A57
|
10
tmpl/lxc-jitsi.memory.tmpl
Normal file
10
tmpl/lxc-jitsi.memory.tmpl
Normal file
@ -0,0 +1,10 @@
|
||||
-v memory
|
||||
-t [jitsi] memory
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:in=/var/www/mrtg/rrd/lxc-jitsi.memory.rrd:ds0:AVERAGE
|
||||
AREA:in#CC9A5780
|
||||
LINE1:in#CC9A57
|
23
tmpl/lxc-jitsi.net.tmpl
Normal file
23
tmpl/lxc-jitsi.net.tmpl
Normal file
@ -0,0 +1,23 @@
|
||||
-v in/up bps
|
||||
-t [jitsi] net
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:rx=/var/www/mrtg/rrd/lxc-jitsi.net.rrd:ds0:AVERAGE
|
||||
DEF:tx=/var/www/mrtg/rrd/lxc-jitsi.net.rrd:ds1:AVERAGE
|
||||
CDEF:RX=rx,8,*
|
||||
CDEF:TX=tx,8,*
|
||||
COMMENT: max. avg. min. cur.\n
|
||||
AREA:RX#CC9A5760:Rx
|
||||
GPRINT:RX:MAX:%6.2lf %sbps
|
||||
GPRINT:RX:AVERAGE:%6.2lf %sbps
|
||||
GPRINT:RX:MIN:%6.2lf %sbps
|
||||
GPRINT:RX:LAST:%6.2lf %sbps\n
|
||||
LINE1:TX#2EA349:Tx
|
||||
GPRINT:TX:MAX:%6.2lf %sbps
|
||||
GPRINT:TX:AVERAGE:%6.2lf %sbps
|
||||
GPRINT:TX:MIN:%6.2lf %sbps
|
||||
GPRINT:TX:LAST:%6.2lf %sbps\n
|
||||
LINE1:0#000000
|
10
tmpl/lxc-mail.cpu.tmpl
Normal file
10
tmpl/lxc-mail.cpu.tmpl
Normal file
@ -0,0 +1,10 @@
|
||||
-v cpu
|
||||
-t [mail] cpu
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:in=/var/www/mrtg/rrd/lxc-mail.cpu.rrd:ds0:AVERAGE
|
||||
AREA:in#CC9A5780
|
||||
LINE1:in#CC9A57
|
10
tmpl/lxc-mail.memory.tmpl
Normal file
10
tmpl/lxc-mail.memory.tmpl
Normal file
@ -0,0 +1,10 @@
|
||||
-v memory
|
||||
-t [mail] memory
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:in=/var/www/mrtg/rrd/lxc-mail.memory.rrd:ds0:AVERAGE
|
||||
AREA:in#CC9A5780
|
||||
LINE1:in#CC9A57
|
23
tmpl/lxc-mail.net.tmpl
Normal file
23
tmpl/lxc-mail.net.tmpl
Normal file
@ -0,0 +1,23 @@
|
||||
-v in/up bps
|
||||
-t [mail] net
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:rx=/var/www/mrtg/rrd/lxc-mail.net.rrd:ds0:AVERAGE
|
||||
DEF:tx=/var/www/mrtg/rrd/lxc-mail.net.rrd:ds1:AVERAGE
|
||||
CDEF:RX=rx,8,*
|
||||
CDEF:TX=tx,8,*
|
||||
COMMENT: max. avg. min. cur.\n
|
||||
AREA:RX#CC9A5760:Rx
|
||||
GPRINT:RX:MAX:%6.2lf %sbps
|
||||
GPRINT:RX:AVERAGE:%6.2lf %sbps
|
||||
GPRINT:RX:MIN:%6.2lf %sbps
|
||||
GPRINT:RX:LAST:%6.2lf %sbps\n
|
||||
LINE1:TX#2EA349:Tx
|
||||
GPRINT:TX:MAX:%6.2lf %sbps
|
||||
GPRINT:TX:AVERAGE:%6.2lf %sbps
|
||||
GPRINT:TX:MIN:%6.2lf %sbps
|
||||
GPRINT:TX:LAST:%6.2lf %sbps\n
|
||||
LINE1:0#000000
|
10
tmpl/lxc-matrix.cpu.tmpl
Normal file
10
tmpl/lxc-matrix.cpu.tmpl
Normal file
@ -0,0 +1,10 @@
|
||||
-v cpu
|
||||
-t [matrix] cpu
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:in=/var/www/mrtg/rrd/lxc-matrix.cpu.rrd:ds0:AVERAGE
|
||||
AREA:in#CC9A5780
|
||||
LINE1:in#CC9A57
|
10
tmpl/lxc-matrix.memory.tmpl
Normal file
10
tmpl/lxc-matrix.memory.tmpl
Normal file
@ -0,0 +1,10 @@
|
||||
-v memory
|
||||
-t [matrix] memory
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:in=/var/www/mrtg/rrd/lxc-matrix.memory.rrd:ds0:AVERAGE
|
||||
AREA:in#CC9A5780
|
||||
LINE1:in#CC9A57
|
23
tmpl/lxc-matrix.net.tmpl
Normal file
23
tmpl/lxc-matrix.net.tmpl
Normal file
@ -0,0 +1,23 @@
|
||||
-v in/up bps
|
||||
-t [matrix] net
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:rx=/var/www/mrtg/rrd/lxc-matrix.net.rrd:ds0:AVERAGE
|
||||
DEF:tx=/var/www/mrtg/rrd/lxc-matrix.net.rrd:ds1:AVERAGE
|
||||
CDEF:RX=rx,8,*
|
||||
CDEF:TX=tx,8,*
|
||||
COMMENT: max. avg. min. cur.\n
|
||||
AREA:RX#CC9A5760:Rx
|
||||
GPRINT:RX:MAX:%6.2lf %sbps
|
||||
GPRINT:RX:AVERAGE:%6.2lf %sbps
|
||||
GPRINT:RX:MIN:%6.2lf %sbps
|
||||
GPRINT:RX:LAST:%6.2lf %sbps\n
|
||||
LINE1:TX#2EA349:Tx
|
||||
GPRINT:TX:MAX:%6.2lf %sbps
|
||||
GPRINT:TX:AVERAGE:%6.2lf %sbps
|
||||
GPRINT:TX:MIN:%6.2lf %sbps
|
||||
GPRINT:TX:LAST:%6.2lf %sbps\n
|
||||
LINE1:0#000000
|
10
tmpl/lxc-motion.cpu.tmpl
Normal file
10
tmpl/lxc-motion.cpu.tmpl
Normal file
@ -0,0 +1,10 @@
|
||||
-v cpu
|
||||
-t [motion] cpu
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:in=/var/www/mrtg/rrd/lxc-motion.cpu.rrd:ds0:AVERAGE
|
||||
AREA:in#CC9A5780
|
||||
LINE1:in#CC9A57
|
10
tmpl/lxc-motion.memory.tmpl
Normal file
10
tmpl/lxc-motion.memory.tmpl
Normal file
@ -0,0 +1,10 @@
|
||||
-v memory
|
||||
-t [motion] memory
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:in=/var/www/mrtg/rrd/lxc-motion.memory.rrd:ds0:AVERAGE
|
||||
AREA:in#CC9A5780
|
||||
LINE1:in#CC9A57
|
23
tmpl/lxc-motion.net.tmpl
Normal file
23
tmpl/lxc-motion.net.tmpl
Normal file
@ -0,0 +1,23 @@
|
||||
-v in/up bps
|
||||
-t [motion] net
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:rx=/var/www/mrtg/rrd/lxc-motion.net.rrd:ds0:AVERAGE
|
||||
DEF:tx=/var/www/mrtg/rrd/lxc-motion.net.rrd:ds1:AVERAGE
|
||||
CDEF:RX=rx,8,*
|
||||
CDEF:TX=tx,8,*
|
||||
COMMENT: max. avg. min. cur.\n
|
||||
AREA:RX#CC9A5760:Rx
|
||||
GPRINT:RX:MAX:%6.2lf %sbps
|
||||
GPRINT:RX:AVERAGE:%6.2lf %sbps
|
||||
GPRINT:RX:MIN:%6.2lf %sbps
|
||||
GPRINT:RX:LAST:%6.2lf %sbps\n
|
||||
LINE1:TX#2EA349:Tx
|
||||
GPRINT:TX:MAX:%6.2lf %sbps
|
||||
GPRINT:TX:AVERAGE:%6.2lf %sbps
|
||||
GPRINT:TX:MIN:%6.2lf %sbps
|
||||
GPRINT:TX:LAST:%6.2lf %sbps\n
|
||||
LINE1:0#000000
|
10
tmpl/lxc-mqtt.cpu.tmpl
Normal file
10
tmpl/lxc-mqtt.cpu.tmpl
Normal file
@ -0,0 +1,10 @@
|
||||
-v cpu
|
||||
-t [mqtt] cpu
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:in=/var/www/mrtg/rrd/lxc-mqtt.cpu.rrd:ds0:AVERAGE
|
||||
AREA:in#CC9A5780
|
||||
LINE1:in#CC9A57
|
10
tmpl/lxc-mqtt.memory.tmpl
Normal file
10
tmpl/lxc-mqtt.memory.tmpl
Normal file
@ -0,0 +1,10 @@
|
||||
-v memory
|
||||
-t [mqtt] memory
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:in=/var/www/mrtg/rrd/lxc-mqtt.memory.rrd:ds0:AVERAGE
|
||||
AREA:in#CC9A5780
|
||||
LINE1:in#CC9A57
|
23
tmpl/lxc-mqtt.net.tmpl
Normal file
23
tmpl/lxc-mqtt.net.tmpl
Normal file
@ -0,0 +1,23 @@
|
||||
-v in/up bps
|
||||
-t [mqtt] net
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:rx=/var/www/mrtg/rrd/lxc-mqtt.net.rrd:ds0:AVERAGE
|
||||
DEF:tx=/var/www/mrtg/rrd/lxc-mqtt.net.rrd:ds1:AVERAGE
|
||||
CDEF:RX=rx,8,*
|
||||
CDEF:TX=tx,8,*
|
||||
COMMENT: max. avg. min. cur.\n
|
||||
AREA:RX#CC9A5760:Rx
|
||||
GPRINT:RX:MAX:%6.2lf %sbps
|
||||
GPRINT:RX:AVERAGE:%6.2lf %sbps
|
||||
GPRINT:RX:MIN:%6.2lf %sbps
|
||||
GPRINT:RX:LAST:%6.2lf %sbps\n
|
||||
LINE1:TX#2EA349:Tx
|
||||
GPRINT:TX:MAX:%6.2lf %sbps
|
||||
GPRINT:TX:AVERAGE:%6.2lf %sbps
|
||||
GPRINT:TX:MIN:%6.2lf %sbps
|
||||
GPRINT:TX:LAST:%6.2lf %sbps\n
|
||||
LINE1:0#000000
|
10
tmpl/lxc-mrtg.cpu.tmpl
Normal file
10
tmpl/lxc-mrtg.cpu.tmpl
Normal file
@ -0,0 +1,10 @@
|
||||
-v cpu
|
||||
-t [mrtg] cpu
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:in=/var/www/mrtg/rrd/lxc-mrtg.cpu.rrd:ds0:AVERAGE
|
||||
AREA:in#CC9A5780
|
||||
LINE1:in#CC9A57
|
10
tmpl/lxc-mrtg.memory.tmpl
Normal file
10
tmpl/lxc-mrtg.memory.tmpl
Normal file
@ -0,0 +1,10 @@
|
||||
-v memory
|
||||
-t [mrtg] memory
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:in=/var/www/mrtg/rrd/lxc-mrtg.memory.rrd:ds0:AVERAGE
|
||||
AREA:in#CC9A5780
|
||||
LINE1:in#CC9A57
|
23
tmpl/lxc-mrtg.net.tmpl
Normal file
23
tmpl/lxc-mrtg.net.tmpl
Normal file
@ -0,0 +1,23 @@
|
||||
-v in/up bps
|
||||
-t [mrtg] net
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:rx=/var/www/mrtg/rrd/lxc-mrtg.net.rrd:ds0:AVERAGE
|
||||
DEF:tx=/var/www/mrtg/rrd/lxc-mrtg.net.rrd:ds1:AVERAGE
|
||||
CDEF:RX=rx,8,*
|
||||
CDEF:TX=tx,8,*
|
||||
COMMENT: max. avg. min. cur.\n
|
||||
AREA:RX#CC9A5760:Rx
|
||||
GPRINT:RX:MAX:%6.2lf %sbps
|
||||
GPRINT:RX:AVERAGE:%6.2lf %sbps
|
||||
GPRINT:RX:MIN:%6.2lf %sbps
|
||||
GPRINT:RX:LAST:%6.2lf %sbps\n
|
||||
LINE1:TX#2EA349:Tx
|
||||
GPRINT:TX:MAX:%6.2lf %sbps
|
||||
GPRINT:TX:AVERAGE:%6.2lf %sbps
|
||||
GPRINT:TX:MIN:%6.2lf %sbps
|
||||
GPRINT:TX:LAST:%6.2lf %sbps\n
|
||||
LINE1:0#000000
|
10
tmpl/lxc-node-red.cpu.tmpl
Normal file
10
tmpl/lxc-node-red.cpu.tmpl
Normal file
@ -0,0 +1,10 @@
|
||||
-v cpu
|
||||
-t [node-red] cpu
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:in=/var/www/mrtg/rrd/lxc-node-red.cpu.rrd:ds0:AVERAGE
|
||||
AREA:in#CC9A5780
|
||||
LINE1:in#CC9A57
|
10
tmpl/lxc-node-red.memory.tmpl
Normal file
10
tmpl/lxc-node-red.memory.tmpl
Normal file
@ -0,0 +1,10 @@
|
||||
-v memory
|
||||
-t [node-red] memory
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:in=/var/www/mrtg/rrd/lxc-node-red.memory.rrd:ds0:AVERAGE
|
||||
AREA:in#CC9A5780
|
||||
LINE1:in#CC9A57
|
23
tmpl/lxc-node-red.net.tmpl
Normal file
23
tmpl/lxc-node-red.net.tmpl
Normal file
@ -0,0 +1,23 @@
|
||||
-v in/up bps
|
||||
-t [node-red] net
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:rx=/var/www/mrtg/rrd/lxc-node-red.net.rrd:ds0:AVERAGE
|
||||
DEF:tx=/var/www/mrtg/rrd/lxc-node-red.net.rrd:ds1:AVERAGE
|
||||
CDEF:RX=rx,8,*
|
||||
CDEF:TX=tx,8,*
|
||||
COMMENT: max. avg. min. cur.\n
|
||||
AREA:RX#CC9A5760:Rx
|
||||
GPRINT:RX:MAX:%6.2lf %sbps
|
||||
GPRINT:RX:AVERAGE:%6.2lf %sbps
|
||||
GPRINT:RX:MIN:%6.2lf %sbps
|
||||
GPRINT:RX:LAST:%6.2lf %sbps\n
|
||||
LINE1:TX#2EA349:Tx
|
||||
GPRINT:TX:MAX:%6.2lf %sbps
|
||||
GPRINT:TX:AVERAGE:%6.2lf %sbps
|
||||
GPRINT:TX:MIN:%6.2lf %sbps
|
||||
GPRINT:TX:LAST:%6.2lf %sbps\n
|
||||
LINE1:0#000000
|
10
tmpl/lxc-pihole.cpu.tmpl
Normal file
10
tmpl/lxc-pihole.cpu.tmpl
Normal file
@ -0,0 +1,10 @@
|
||||
-v cpu
|
||||
-t [pihole] cpu
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:in=/var/www/mrtg/rrd/lxc-pihole.cpu.rrd:ds0:AVERAGE
|
||||
AREA:in#CC9A5780
|
||||
LINE1:in#CC9A57
|
10
tmpl/lxc-pihole.memory.tmpl
Normal file
10
tmpl/lxc-pihole.memory.tmpl
Normal file
@ -0,0 +1,10 @@
|
||||
-v memory
|
||||
-t [pihole] memory
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:in=/var/www/mrtg/rrd/lxc-pihole.memory.rrd:ds0:AVERAGE
|
||||
AREA:in#CC9A5780
|
||||
LINE1:in#CC9A57
|
23
tmpl/lxc-pihole.net.tmpl
Normal file
23
tmpl/lxc-pihole.net.tmpl
Normal file
@ -0,0 +1,23 @@
|
||||
-v in/up bps
|
||||
-t [pihole] net
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:rx=/var/www/mrtg/rrd/lxc-pihole.net.rrd:ds0:AVERAGE
|
||||
DEF:tx=/var/www/mrtg/rrd/lxc-pihole.net.rrd:ds1:AVERAGE
|
||||
CDEF:RX=rx,8,*
|
||||
CDEF:TX=tx,8,*
|
||||
COMMENT: max. avg. min. cur.\n
|
||||
AREA:RX#CC9A5760:Rx
|
||||
GPRINT:RX:MAX:%6.2lf %sbps
|
||||
GPRINT:RX:AVERAGE:%6.2lf %sbps
|
||||
GPRINT:RX:MIN:%6.2lf %sbps
|
||||
GPRINT:RX:LAST:%6.2lf %sbps\n
|
||||
LINE1:TX#2EA349:Tx
|
||||
GPRINT:TX:MAX:%6.2lf %sbps
|
||||
GPRINT:TX:AVERAGE:%6.2lf %sbps
|
||||
GPRINT:TX:MIN:%6.2lf %sbps
|
||||
GPRINT:TX:LAST:%6.2lf %sbps\n
|
||||
LINE1:0#000000
|
10
tmpl/lxc-redis.cpu.tmpl
Normal file
10
tmpl/lxc-redis.cpu.tmpl
Normal file
@ -0,0 +1,10 @@
|
||||
-v cpu
|
||||
-t [redis] cpu
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:in=/var/www/mrtg/rrd/lxc-redis.cpu.rrd:ds0:AVERAGE
|
||||
AREA:in#CC9A5780
|
||||
LINE1:in#CC9A57
|
10
tmpl/lxc-redis.memory.tmpl
Normal file
10
tmpl/lxc-redis.memory.tmpl
Normal file
@ -0,0 +1,10 @@
|
||||
-v memory
|
||||
-t [redis] memory
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:in=/var/www/mrtg/rrd/lxc-redis.memory.rrd:ds0:AVERAGE
|
||||
AREA:in#CC9A5780
|
||||
LINE1:in#CC9A57
|
23
tmpl/lxc-redis.net.tmpl
Normal file
23
tmpl/lxc-redis.net.tmpl
Normal file
@ -0,0 +1,23 @@
|
||||
-v in/up bps
|
||||
-t [redis] net
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:rx=/var/www/mrtg/rrd/lxc-redis.net.rrd:ds0:AVERAGE
|
||||
DEF:tx=/var/www/mrtg/rrd/lxc-redis.net.rrd:ds1:AVERAGE
|
||||
CDEF:RX=rx,8,*
|
||||
CDEF:TX=tx,8,*
|
||||
COMMENT: max. avg. min. cur.\n
|
||||
AREA:RX#CC9A5760:Rx
|
||||
GPRINT:RX:MAX:%6.2lf %sbps
|
||||
GPRINT:RX:AVERAGE:%6.2lf %sbps
|
||||
GPRINT:RX:MIN:%6.2lf %sbps
|
||||
GPRINT:RX:LAST:%6.2lf %sbps\n
|
||||
LINE1:TX#2EA349:Tx
|
||||
GPRINT:TX:MAX:%6.2lf %sbps
|
||||
GPRINT:TX:AVERAGE:%6.2lf %sbps
|
||||
GPRINT:TX:MIN:%6.2lf %sbps
|
||||
GPRINT:TX:LAST:%6.2lf %sbps\n
|
||||
LINE1:0#000000
|
10
tmpl/lxc-traccar.cpu.tmpl
Normal file
10
tmpl/lxc-traccar.cpu.tmpl
Normal file
@ -0,0 +1,10 @@
|
||||
-v cpu
|
||||
-t [traccar] cpu
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:in=/var/www/mrtg/rrd/lxc-traccar.cpu.rrd:ds0:AVERAGE
|
||||
AREA:in#CC9A5780
|
||||
LINE1:in#CC9A57
|
10
tmpl/lxc-traccar.memory.tmpl
Normal file
10
tmpl/lxc-traccar.memory.tmpl
Normal file
@ -0,0 +1,10 @@
|
||||
-v memory
|
||||
-t [traccar] memory
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:in=/var/www/mrtg/rrd/lxc-traccar.memory.rrd:ds0:AVERAGE
|
||||
AREA:in#CC9A5780
|
||||
LINE1:in#CC9A57
|
23
tmpl/lxc-traccar.net.tmpl
Normal file
23
tmpl/lxc-traccar.net.tmpl
Normal file
@ -0,0 +1,23 @@
|
||||
-v in/up bps
|
||||
-t [traccar] net
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:rx=/var/www/mrtg/rrd/lxc-traccar.net.rrd:ds0:AVERAGE
|
||||
DEF:tx=/var/www/mrtg/rrd/lxc-traccar.net.rrd:ds1:AVERAGE
|
||||
CDEF:RX=rx,8,*
|
||||
CDEF:TX=tx,8,*
|
||||
COMMENT: max. avg. min. cur.\n
|
||||
AREA:RX#CC9A5760:Rx
|
||||
GPRINT:RX:MAX:%6.2lf %sbps
|
||||
GPRINT:RX:AVERAGE:%6.2lf %sbps
|
||||
GPRINT:RX:MIN:%6.2lf %sbps
|
||||
GPRINT:RX:LAST:%6.2lf %sbps\n
|
||||
LINE1:TX#2EA349:Tx
|
||||
GPRINT:TX:MAX:%6.2lf %sbps
|
||||
GPRINT:TX:AVERAGE:%6.2lf %sbps
|
||||
GPRINT:TX:MIN:%6.2lf %sbps
|
||||
GPRINT:TX:LAST:%6.2lf %sbps\n
|
||||
LINE1:0#000000
|
10
tmpl/lxc-webmail.cpu.tmpl
Normal file
10
tmpl/lxc-webmail.cpu.tmpl
Normal file
@ -0,0 +1,10 @@
|
||||
-v cpu
|
||||
-t [webmail] cpu
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:in=/var/www/mrtg/rrd/lxc-webmail.cpu.rrd:ds0:AVERAGE
|
||||
AREA:in#CC9A5780
|
||||
LINE1:in#CC9A57
|
10
tmpl/lxc-webmail.memory.tmpl
Normal file
10
tmpl/lxc-webmail.memory.tmpl
Normal file
@ -0,0 +1,10 @@
|
||||
-v memory
|
||||
-t [webmail] memory
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:in=/var/www/mrtg/rrd/lxc-webmail.memory.rrd:ds0:AVERAGE
|
||||
AREA:in#CC9A5780
|
||||
LINE1:in#CC9A57
|
23
tmpl/lxc-webmail.net.tmpl
Normal file
23
tmpl/lxc-webmail.net.tmpl
Normal file
@ -0,0 +1,23 @@
|
||||
-v in/up bps
|
||||
-t [webmail] net
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:rx=/var/www/mrtg/rrd/lxc-webmail.net.rrd:ds0:AVERAGE
|
||||
DEF:tx=/var/www/mrtg/rrd/lxc-webmail.net.rrd:ds1:AVERAGE
|
||||
CDEF:RX=rx,8,*
|
||||
CDEF:TX=tx,8,*
|
||||
COMMENT: max. avg. min. cur.\n
|
||||
AREA:RX#CC9A5760:Rx
|
||||
GPRINT:RX:MAX:%6.2lf %sbps
|
||||
GPRINT:RX:AVERAGE:%6.2lf %sbps
|
||||
GPRINT:RX:MIN:%6.2lf %sbps
|
||||
GPRINT:RX:LAST:%6.2lf %sbps\n
|
||||
LINE1:TX#2EA349:Tx
|
||||
GPRINT:TX:MAX:%6.2lf %sbps
|
||||
GPRINT:TX:AVERAGE:%6.2lf %sbps
|
||||
GPRINT:TX:MIN:%6.2lf %sbps
|
||||
GPRINT:TX:LAST:%6.2lf %sbps\n
|
||||
LINE1:0#000000
|
10
tmpl/lxc-wireguard.cpu.tmpl
Normal file
10
tmpl/lxc-wireguard.cpu.tmpl
Normal file
@ -0,0 +1,10 @@
|
||||
-v cpu
|
||||
-t [wireguard] cpu
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:in=/var/www/mrtg/rrd/lxc-wireguard.cpu.rrd:ds0:AVERAGE
|
||||
AREA:in#CC9A5780
|
||||
LINE1:in#CC9A57
|
10
tmpl/lxc-wireguard.memory.tmpl
Normal file
10
tmpl/lxc-wireguard.memory.tmpl
Normal file
@ -0,0 +1,10 @@
|
||||
-v memory
|
||||
-t [wireguard] memory
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:in=/var/www/mrtg/rrd/lxc-wireguard.memory.rrd:ds0:AVERAGE
|
||||
AREA:in#CC9A5780
|
||||
LINE1:in#CC9A57
|
23
tmpl/lxc-wireguard.net.tmpl
Normal file
23
tmpl/lxc-wireguard.net.tmpl
Normal file
@ -0,0 +1,23 @@
|
||||
-v in/up bps
|
||||
-t [wireguard] net
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:rx=/var/www/mrtg/rrd/lxc-wireguard.net.rrd:ds0:AVERAGE
|
||||
DEF:tx=/var/www/mrtg/rrd/lxc-wireguard.net.rrd:ds1:AVERAGE
|
||||
CDEF:RX=rx,8,*
|
||||
CDEF:TX=tx,8,*
|
||||
COMMENT: max. avg. min. cur.\n
|
||||
AREA:RX#CC9A5760:Rx
|
||||
GPRINT:RX:MAX:%6.2lf %sbps
|
||||
GPRINT:RX:AVERAGE:%6.2lf %sbps
|
||||
GPRINT:RX:MIN:%6.2lf %sbps
|
||||
GPRINT:RX:LAST:%6.2lf %sbps\n
|
||||
LINE1:TX#2EA349:Tx
|
||||
GPRINT:TX:MAX:%6.2lf %sbps
|
||||
GPRINT:TX:AVERAGE:%6.2lf %sbps
|
||||
GPRINT:TX:MIN:%6.2lf %sbps
|
||||
GPRINT:TX:LAST:%6.2lf %sbps\n
|
||||
LINE1:0#000000
|
10
tmpl/lxc-www-familienhilfe-baeumler.cpu.tmpl
Normal file
10
tmpl/lxc-www-familienhilfe-baeumler.cpu.tmpl
Normal file
@ -0,0 +1,10 @@
|
||||
-v cpu
|
||||
-t [www-familienhilfe-baeumler] cpu
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:in=/var/www/mrtg/rrd/lxc-www-familienhilfe-baeumler.cpu.rrd:ds0:AVERAGE
|
||||
AREA:in#CC9A5780
|
||||
LINE1:in#CC9A57
|
10
tmpl/lxc-www-familienhilfe-baeumler.memory.tmpl
Normal file
10
tmpl/lxc-www-familienhilfe-baeumler.memory.tmpl
Normal file
@ -0,0 +1,10 @@
|
||||
-v memory
|
||||
-t [www-familienhilfe-baeumler] memory
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:in=/var/www/mrtg/rrd/lxc-www-familienhilfe-baeumler.memory.rrd:ds0:AVERAGE
|
||||
AREA:in#CC9A5780
|
||||
LINE1:in#CC9A57
|
23
tmpl/lxc-www-familienhilfe-baeumler.net.tmpl
Normal file
23
tmpl/lxc-www-familienhilfe-baeumler.net.tmpl
Normal file
@ -0,0 +1,23 @@
|
||||
-v in/up bps
|
||||
-t [www-familienhilfe-baeumler] net
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:rx=/var/www/mrtg/rrd/lxc-www-familienhilfe-baeumler.net.rrd:ds0:AVERAGE
|
||||
DEF:tx=/var/www/mrtg/rrd/lxc-www-familienhilfe-baeumler.net.rrd:ds1:AVERAGE
|
||||
CDEF:RX=rx,8,*
|
||||
CDEF:TX=tx,8,*
|
||||
COMMENT: max. avg. min. cur.\n
|
||||
AREA:RX#CC9A5760:Rx
|
||||
GPRINT:RX:MAX:%6.2lf %sbps
|
||||
GPRINT:RX:AVERAGE:%6.2lf %sbps
|
||||
GPRINT:RX:MIN:%6.2lf %sbps
|
||||
GPRINT:RX:LAST:%6.2lf %sbps\n
|
||||
LINE1:TX#2EA349:Tx
|
||||
GPRINT:TX:MAX:%6.2lf %sbps
|
||||
GPRINT:TX:AVERAGE:%6.2lf %sbps
|
||||
GPRINT:TX:MIN:%6.2lf %sbps
|
||||
GPRINT:TX:LAST:%6.2lf %sbps\n
|
||||
LINE1:0#000000
|
10
tmpl/lxc-www.cpu.tmpl
Normal file
10
tmpl/lxc-www.cpu.tmpl
Normal file
@ -0,0 +1,10 @@
|
||||
-v cpu
|
||||
-t [www] cpu
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:in=/var/www/mrtg/rrd/lxc-www.cpu.rrd:ds0:AVERAGE
|
||||
AREA:in#CC9A5780
|
||||
LINE1:in#CC9A57
|
10
tmpl/lxc-www.memory.tmpl
Normal file
10
tmpl/lxc-www.memory.tmpl
Normal file
@ -0,0 +1,10 @@
|
||||
-v memory
|
||||
-t [www] memory
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:in=/var/www/mrtg/rrd/lxc-www.memory.rrd:ds0:AVERAGE
|
||||
AREA:in#CC9A5780
|
||||
LINE1:in#CC9A57
|
23
tmpl/lxc-www.net.tmpl
Normal file
23
tmpl/lxc-www.net.tmpl
Normal file
@ -0,0 +1,23 @@
|
||||
-v in/up bps
|
||||
-t [www] net
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:rx=/var/www/mrtg/rrd/lxc-www.net.rrd:ds0:AVERAGE
|
||||
DEF:tx=/var/www/mrtg/rrd/lxc-www.net.rrd:ds1:AVERAGE
|
||||
CDEF:RX=rx,8,*
|
||||
CDEF:TX=tx,8,*
|
||||
COMMENT: max. avg. min. cur.\n
|
||||
AREA:RX#CC9A5760:Rx
|
||||
GPRINT:RX:MAX:%6.2lf %sbps
|
||||
GPRINT:RX:AVERAGE:%6.2lf %sbps
|
||||
GPRINT:RX:MIN:%6.2lf %sbps
|
||||
GPRINT:RX:LAST:%6.2lf %sbps\n
|
||||
LINE1:TX#2EA349:Tx
|
||||
GPRINT:TX:MAX:%6.2lf %sbps
|
||||
GPRINT:TX:AVERAGE:%6.2lf %sbps
|
||||
GPRINT:TX:MIN:%6.2lf %sbps
|
||||
GPRINT:TX:LAST:%6.2lf %sbps\n
|
||||
LINE1:0#000000
|
10
tmpl/roof.cpu.tmpl
Normal file
10
tmpl/roof.cpu.tmpl
Normal file
@ -0,0 +1,10 @@
|
||||
-v utilization
|
||||
-t [roof] CPU
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:in=/var/www/mrtg/rrd/roof.cpu.rrd:ds0:AVERAGE
|
||||
AREA:in#CC9A5780
|
||||
LINE1:in#CC9A57
|
12
tmpl/roof.memtotal.tmpl
Normal file
12
tmpl/roof.memtotal.tmpl
Normal file
@ -0,0 +1,12 @@
|
||||
-v RAM
|
||||
-t [roof] memory utilization
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:total=/var/www/mrtg/rrd/roof.memtotal.rrd:ds0:AVERAGE
|
||||
DEF:used=/var/www/mrtg/rrd/roof.memtotal.rrd:ds1:AVERAGE
|
||||
AREA:total#CC9A5780
|
||||
LINE1:total#CC9A57
|
||||
AREA:used#C7424E
|
10
tmpl/roof.ram.tmpl
Normal file
10
tmpl/roof.ram.tmpl
Normal file
@ -0,0 +1,10 @@
|
||||
-v ram
|
||||
-t [roof] ram utilization
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:in=/var/www/mrtg/rrd/roof.ram.rrd:ds0:AVERAGE
|
||||
AREA:in#CC9A5780
|
||||
LINE1:in#CC9A57
|
12
tmpl/roof.swap.tmpl
Normal file
12
tmpl/roof.swap.tmpl
Normal file
@ -0,0 +1,12 @@
|
||||
-v swap
|
||||
-t [roof] swap utilization
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:total=/var/www/mrtg/rrd/roof.swap.rrd:ds0:AVERAGE
|
||||
DEF:avail=/var/www/mrtg/rrd/roof.swap.rrd:ds1:AVERAGE
|
||||
AREA:total#CC9A5780
|
||||
AREA:avail#2EA349
|
||||
LINE1:total#CC9A57
|
16
tmpl/roof.tap0.tmpl
Normal file
16
tmpl/roof.tap0.tmpl
Normal file
@ -0,0 +1,16 @@
|
||||
-v in/up
|
||||
-t [roof] tap0
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:d=/var/www/mrtg/rrd/roof.tap0.rrd:ds0:AVERAGE
|
||||
DEF:u=/var/www/mrtg/rrd/roof.tap0.rrd:ds1:AVERAGE
|
||||
CDEF:down=d,8,*
|
||||
CDEF:up=u,-8,*
|
||||
AREA:down#CC9A5780:Down
|
||||
AREA:up#2EA34960:Up
|
||||
LINE1:down#CC9A57
|
||||
LINE1:up#2EA349
|
||||
LINE1:0#000000
|
15
tmpl/roof.temp.tmpl
Normal file
15
tmpl/roof.temp.tmpl
Normal file
@ -0,0 +1,15 @@
|
||||
-v Celsius
|
||||
-t [roof] Temperature
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:in=/var/www/mrtg/rrd/roof.temp.rrd:ds0:AVERAGE
|
||||
CDEF:red=in,54,GT,in,UNKN,IF
|
||||
CDEF:green=in,54,GT,54,in,IF
|
||||
AREA:red#C7424EC0
|
||||
AREA:green#FFFFFF
|
||||
AREA:green#2EA34960
|
||||
LINE1:green#2EA349
|
||||
LINE1:red#C7424E
|
10
tmpl/roof.tv.tmpl
Normal file
10
tmpl/roof.tv.tmpl
Normal file
@ -0,0 +1,10 @@
|
||||
-v on/off
|
||||
-t [roof] TV stats
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:in=/var/www/mrtg/rrd/roof.tv.rrd:ds0:AVERAGE
|
||||
AREA:in#CC9A5780
|
||||
LINE1:in#CC9A57
|
16
tmpl/roof.wlan0.tmpl
Normal file
16
tmpl/roof.wlan0.tmpl
Normal file
@ -0,0 +1,16 @@
|
||||
-v in/up
|
||||
-t [roof] wlan0
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:d=/var/www/mrtg/rrd/roof.wlan0.rrd:ds0:AVERAGE
|
||||
DEF:u=/var/www/mrtg/rrd/roof.wlan0.rrd:ds1:AVERAGE
|
||||
CDEF:down=d,8,*
|
||||
CDEF:up=u,-8,*
|
||||
AREA:down#CC9A5780:Down
|
||||
AREA:up#2EA34960:Up
|
||||
LINE1:down#CC9A57
|
||||
LINE1:up#2EA349
|
||||
LINE1:0#000000
|
10
tmpl/wdr4300.arp.tmpl
Normal file
10
tmpl/wdr4300.arp.tmpl
Normal file
@ -0,0 +1,10 @@
|
||||
-v clients connected
|
||||
-t [TL-WDR4300] ARP table
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:in=/var/www/mrtg/rrd/wdr4300.arp.rrd:ds0:AVERAGE
|
||||
AREA:in#CC9A5780
|
||||
LINE1:in#CC9A57
|
16
tmpl/wdr4300.wan.tmpl
Normal file
16
tmpl/wdr4300.wan.tmpl
Normal file
@ -0,0 +1,16 @@
|
||||
-v in/up bps
|
||||
-t [TL-WDR4300] WAN interface
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:d=/var/www/mrtg/rrd/wdr4300.wan.rrd:ds0:AVERAGE
|
||||
DEF:u=/var/www/mrtg/rrd/wdr4300.wan.rrd:ds1:AVERAGE
|
||||
CDEF:down=d,8,*
|
||||
CDEF:up=u,-8,*
|
||||
AREA:down#CC9A5780:Down
|
||||
AREA:up#2EA34960:Up
|
||||
LINE1:down#CC9A57
|
||||
LINE1:up#045C55
|
||||
LINE1:0#000000
|
10
tmpl/wrt1200ac.arp.tmpl
Normal file
10
tmpl/wrt1200ac.arp.tmpl
Normal file
@ -0,0 +1,10 @@
|
||||
-v clients connected
|
||||
-t [WRT1200AC] ARP table
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:in=/var/www/mrtg/rrd/wrt1200ac.arp.rrd:ds0:AVERAGE
|
||||
AREA:in#CC9A5780
|
||||
LINE1:in#CC9A57
|
16
tmpl/wrt1200ac.wan.tmpl
Normal file
16
tmpl/wrt1200ac.wan.tmpl
Normal file
@ -0,0 +1,16 @@
|
||||
-v in/up bps
|
||||
-t [WRT1200AC] WAN interface
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:d=/var/www/mrtg/rrd/wrt1200ac.wan.rrd:ds0:AVERAGE
|
||||
DEF:u=/var/www/mrtg/rrd/wrt1200ac.wan.rrd:ds1:AVERAGE
|
||||
CDEF:down=d,8,*
|
||||
CDEF:up=u,-8,*
|
||||
AREA:down#CC9A5780:Down
|
||||
AREA:up#2EA34960:Up
|
||||
LINE1:down#CC9A57
|
||||
LINE1:up#045C55
|
||||
LINE1:0#000000
|
16
tmpl/wrt54.br0.tmpl
Normal file
16
tmpl/wrt54.br0.tmpl
Normal file
@ -0,0 +1,16 @@
|
||||
-v in/up bps
|
||||
-t [WRT54] br0
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:d=/var/www/mrtg/rrd/wrt54.br0.rrd:ds0:AVERAGE
|
||||
DEF:u=/var/www/mrtg/rrd/wrt54.br0.rrd:ds1:AVERAGE
|
||||
CDEF:down=d,8,*
|
||||
CDEF:up=u,-8,*
|
||||
AREA:down#CC9A5780:Down
|
||||
AREA:up#2EA34960:Up
|
||||
LINE1:down#CC9A57
|
||||
LINE1:up#045C55
|
||||
LINE1:0#000000
|
10
tmpl/wrt54.numclients.tmpl
Normal file
10
tmpl/wrt54.numclients.tmpl
Normal file
@ -0,0 +1,10 @@
|
||||
-v clients connected
|
||||
-t [WRT54] Number of wifi clients
|
||||
--full-size-mode
|
||||
--color=BACK#343637
|
||||
--color=CANVAS#F0F0F0
|
||||
--color=FONT#F0F0F0
|
||||
--font=TITLE:12:DejaVu Bold
|
||||
DEF:in=/var/www/mrtg/rrd/wrt54.numclients.rrd:ds0:AVERAGE
|
||||
AREA:in#CC9A5780
|
||||
LINE1:in#CC9A57
|
Loading…
x
Reference in New Issue
Block a user