rrd files created but no graphs
Moderators: Developers, Moderators
rrd files created but no graphs
When i click on Debug i get teh following. It looks as though the path to the actuall rrd file is wrong on the tail end(after the E:\cacti). How can i fix that? it does not seam to be an option in the Path Setting area.
Data Source Debug
e:\rrdtool\rrdtool.exe create \
E:\cacti/rra/lcmscin_traffic_in_10.rrd \
--step 300 \
DS:traffic_in:COUNTER:600:0:100000000 \
DS:traffic_out:COUNTER:600:0:100000000 \
RRA:AVERAGE:0.5:1:600 \
RRA:AVERAGE:0.5:6:700 \
RRA:AVERAGE:0.5:24:775 \
RRA:AVERAGE:0.5:288:797 \
RRA:MAX:0.5:1:600 \
RRA:MAX:0.5:6:700 \
RRA:MAX:0.5:24:775 \
RRA:MAX:0.5:288:797 \
Data Source Debug
e:\rrdtool\rrdtool.exe create \
E:\cacti/rra/lcmscin_traffic_in_10.rrd \
--step 300 \
DS:traffic_in:COUNTER:600:0:100000000 \
DS:traffic_out:COUNTER:600:0:100000000 \
RRA:AVERAGE:0.5:1:600 \
RRA:AVERAGE:0.5:6:700 \
RRA:AVERAGE:0.5:24:775 \
RRA:AVERAGE:0.5:288:797 \
RRA:MAX:0.5:1:600 \
RRA:MAX:0.5:6:700 \
RRA:MAX:0.5:24:775 \
RRA:MAX:0.5:288:797 \
- TheWitness
- Developer
- Posts: 17047
- Joined: Tue May 14, 2002 5:08 pm
- Location: MI, USA
- Contact:
Goto Graph Management and select one of your problem graphs and select "Turn On Graph Debug Mode" and post what it says.
Thanks,
TheWitness
Thanks,
TheWitness
True understanding begins only when we realize how little we truly understand...
Life is an adventure, let yours begin with Cacti!
Author of dozens of Cacti plugins and customization's. Advocate of LAMP, MariaDB, IBM Spectrum LSF and the world of batch. Creator of IBM Spectrum RTM, author of quite a bit of unpublished work and most of Cacti's bugs.
_________________
Official Cacti Documentation
GitHub Repository with Supported Plugins
Percona Device Packages (no support)
Interesting Device Packages
For those wondering, I'm still here, but lost in the shadows. Yearning for less bugs. Who want's a Cacti 1.3/2.0? Streams anyone?
Life is an adventure, let yours begin with Cacti!
Author of dozens of Cacti plugins and customization's. Advocate of LAMP, MariaDB, IBM Spectrum LSF and the world of batch. Creator of IBM Spectrum RTM, author of quite a bit of unpublished work and most of Cacti's bugs.
_________________
Official Cacti Documentation
GitHub Repository with Supported Plugins
Percona Device Packages (no support)
Interesting Device Packages
For those wondering, I'm still here, but lost in the shadows. Yearning for less bugs. Who want's a Cacti 1.3/2.0? Streams anyone?
rrd files created but no graphs
When i click on Debug, it bomb's the broswer i am using. It lock's up the PC also while i try and kill the 'not responding' browser. I tried it from another PC & the server and it does the same.
What could that be?
What could that be?
- TheWitness
- Developer
- Posts: 17047
- Joined: Tue May 14, 2002 5:08 pm
- Location: MI, USA
- Contact:
I suspect a problem with either Cacti or RRDTool. What version of RRDTool and Cacti are you running? Cacti should be at 0.8.6b.
TheWitness
TheWitness
True understanding begins only when we realize how little we truly understand...
Life is an adventure, let yours begin with Cacti!
Author of dozens of Cacti plugins and customization's. Advocate of LAMP, MariaDB, IBM Spectrum LSF and the world of batch. Creator of IBM Spectrum RTM, author of quite a bit of unpublished work and most of Cacti's bugs.
_________________
Official Cacti Documentation
GitHub Repository with Supported Plugins
Percona Device Packages (no support)
Interesting Device Packages
For those wondering, I'm still here, but lost in the shadows. Yearning for less bugs. Who want's a Cacti 1.3/2.0? Streams anyone?
Life is an adventure, let yours begin with Cacti!
Author of dozens of Cacti plugins and customization's. Advocate of LAMP, MariaDB, IBM Spectrum LSF and the world of batch. Creator of IBM Spectrum RTM, author of quite a bit of unpublished work and most of Cacti's bugs.
_________________
Official Cacti Documentation
GitHub Repository with Supported Plugins
Percona Device Packages (no support)
Interesting Device Packages
For those wondering, I'm still here, but lost in the shadows. Yearning for less bugs. Who want's a Cacti 1.3/2.0? Streams anyone?
Hi,
I am trying to run external scripts with cacti. I found a script in the forum which works perfectly well when I run it in the command prompt. Here is the script:
#/perl/bin/perl
use Time::HiRes qw(gettimeofday tv_interval);
my $start_time = [ gettimeofday ];
$app = `graburl http://www.yahoo.com`;
$app = `graburl http://www.cnn.com`;
$app = `graburl http://www.imd.it`;
$app = `graburl nonags.sully.net`;
$app = `graburl http://www.da.ru`;
my $end_time = [ gettimeofday ];
my $msec = tv_interval($start_time,$end_time)*1000;
print "msec:$msec"
I created a data input method with script/command input and specified the path name and then created the data source. Everything seems to be working. The rrd file is getting created and the rrdtool says OK while creating the graph. Only problem is I see just an empty graph. My cacti log file says:
10/14/2004 12:09:08 PM - SYSTEM STATS: Time: 4.6817 s, Method: cmd.php, Processes: 1, Threads: N/A, Hosts: 4, Hosts/Process: 4
10/14/2004 12:09:07 PM - CMDPHP: Poller[0] Time: 3.1322 s, Theads: N/A, Hosts: 3
So where am I making a mistake. Everything seems to be working and still no graph. Please help!
I am trying to run external scripts with cacti. I found a script in the forum which works perfectly well when I run it in the command prompt. Here is the script:
#/perl/bin/perl
use Time::HiRes qw(gettimeofday tv_interval);
my $start_time = [ gettimeofday ];
$app = `graburl http://www.yahoo.com`;
$app = `graburl http://www.cnn.com`;
$app = `graburl http://www.imd.it`;
$app = `graburl nonags.sully.net`;
$app = `graburl http://www.da.ru`;
my $end_time = [ gettimeofday ];
my $msec = tv_interval($start_time,$end_time)*1000;
print "msec:$msec"
I created a data input method with script/command input and specified the path name and then created the data source. Everything seems to be working. The rrd file is getting created and the rrdtool says OK while creating the graph. Only problem is I see just an empty graph. My cacti log file says:
10/14/2004 12:09:08 PM - SYSTEM STATS: Time: 4.6817 s, Method: cmd.php, Processes: 1, Threads: N/A, Hosts: 4, Hosts/Process: 4
10/14/2004 12:09:07 PM - CMDPHP: Poller[0] Time: 3.1322 s, Theads: N/A, Hosts: 3
So where am I making a mistake. Everything seems to be working and still no graph. Please help!
crazy browser
No i have not found anything yet. I am glad i am not the only one.
I wonder if it is a php problem or cacti or snmp?
I wonder if it is a php problem or cacti or snmp?
Who is online
Users browsing this forum: No registered users and 3 guests