From 723a2683b5f677eabda54d65d581138638cb443d Mon Sep 17 00:00:00 2001 From: Savetheinternet Date: Tue, 7 Jun 2011 21:03:22 +1000 Subject: [PATCH] changed interval to 2 minutes --- templates/themes/rrdtool/info.php | 2 +- templates/themes/rrdtool/theme.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/themes/rrdtool/info.php b/templates/themes/rrdtool/info.php index 50d9ca04..4655d5bf 100644 --- a/templates/themes/rrdtool/info.php +++ b/templates/themes/rrdtool/info.php @@ -45,7 +45,7 @@ function rrdtool_install($settings) { global $config; - $job = '* * * * * php -q ' . str_replace('\\', '/', dirname(__FILE__)) . '/cron.php' . PHP_EOL; + $job = '*/2 * * * * php -q ' . str_replace('\\', '/', dirname(__FILE__)) . '/cron.php' . PHP_EOL; if(function_exists('system')) { $crontab = tempnam($config['tmp'], 'tinyboard-rrdtool'); diff --git a/templates/themes/rrdtool/theme.php b/templates/themes/rrdtool/theme.php index 20c68c8e..bfa5bfec 100644 --- a/templates/themes/rrdtool/theme.php +++ b/templates/themes/rrdtool/theme.php @@ -19,7 +19,7 @@ $this->boards = explode(' ', $settings['boards']); $this->spans = Array('minute', 'hour', 'day', 'week', 'month'); - $this->interval = 60; + $this->interval = 120; $this->height = 150; $this->width = 700; @@ -36,7 +36,7 @@ // Create graph if(!rrd_create($file, Array( '-s ' . $this->interval, - 'DS:posts:ABSOLUTE:120:0:100000000', + 'DS:posts:ABSOLUTE:' . ($this->interval*2) . ':0:100000000', 'RRA:AVERAGE:0.5:1:2880', 'RRA:AVERAGE:0.5:30:672', 'RRA:AVERAGE:0.5:120:732',