ADVANCED Cisco CPU Utilization Template
Moderators: Developers, Moderators
ADVANCED Cisco CPU Utilization Template
hi all,
i love cacti and this is no bad word to the guys at cacti they have done a bloody fabulous job, however when i was using the cisco cpu templates i simply was not quite happy with it.
one fundamental issue i found is that because it doesnt graph 5 second utilisation your momentary spikes are not represented in the graph.
this means the impact of things like the bgp scanner spiking the router to 50% are not actually represented in the default cacti cisco cpu template.
here is an example of my graphs, this is a edge router providing ethernet services, nothing special.
now lets look at a bgp router holding a number of tables to a number of peers, you can see the 5 second spikes in comparison to the 1 and 5 minute utilisation. this granularity gives us much better visibility of momentary loads.
like what you see?
download the xml template
--matt
i love cacti and this is no bad word to the guys at cacti they have done a bloody fabulous job, however when i was using the cisco cpu templates i simply was not quite happy with it.
one fundamental issue i found is that because it doesnt graph 5 second utilisation your momentary spikes are not represented in the graph.
this means the impact of things like the bgp scanner spiking the router to 50% are not actually represented in the default cacti cisco cpu template.
here is an example of my graphs, this is a edge router providing ethernet services, nothing special.
now lets look at a bgp router holding a number of tables to a number of peers, you can see the 5 second spikes in comparison to the 1 and 5 minute utilisation. this granularity gives us much better visibility of momentary loads.
like what you see?
download the xml template
--matt
what version of cacti? i had some problems with importing templates which i think was linked to poor escaping by cacti which is due to be fixed in 0.8.6h.Ciscocow wrote:i tried to import the xml file but it does not seem to want to work
i will try re-exporting the graph template with dependancies if you want to try again?
--matt
seems to work just fine for me..Lojak wrote:Has this been updated to 0.8.6h?
# uname -a
Linux monitor02 2.6.9-5.ELsmp #1 SMP Wed Jan 5 19:30:39 EST 2005 i686 i686 i386 GNU/Linux
# cat /etc/redhat-release
Red Hat Enterprise Linux ES release 4 (Nahant)
# rpm -qa | grep -i cact
cacti-0.8.6h-1
cacti-cactid-0.8.6e-1
Hi,
No problems importating templates, and graphs are created.
Only: it doesn't seem to measure correctly: everything stays at value "0"
I checked with rrdtool: rrds are generated every 5 minutes, but seems to contain no valueable data:
See attached rrdtool dump output
It seems the rrd files are not generated correctly.
On the other hand, when doing an snmpwalk on an OID I found in the xml file, I get a value back
fyi: already deleted and reenterd any references to cpu templates, data-sources,...
Any ideas?
Thanks
Steven
No problems importating templates, and graphs are created.
Only: it doesn't seem to measure correctly: everything stays at value "0"
I checked with rrdtool: rrds are generated every 5 minutes, but seems to contain no valueable data:
See attached rrdtool dump output
It seems the rrd files are not generated correctly.
On the other hand, when doing an snmpwalk on an OID I found in the xml file, I get a value back
Code: Select all
server:/usr/share/cacti/site/rra# snmpwalk -v 2c -c kiekeboe cisco .1.3.6.1.4.1.9.2.1.56.0
SNMPv2-SMI::enterprises.9.2.1.56.0 = INTEGER: 9
server:/usr/share/cacti/site/rra# snmpwalk -v 2c -c kiekeboe cisco .1.3.6.1.4.1.9.2.1.56.0
SNMPv2-SMI::enterprises.9.2.1.56.0 = INTEGER: 10
server:/usr/share/cacti/site/rra# snmpwalk -v 2c -c kiekeboe cisco .1.3.6.1.4.1.9.2.1.56.0
SNMPv2-SMI::enterprises.9.2.1.56.0 = INTEGER: 9
Any ideas?
Thanks
Steven
- Attachments
-
- cisco_1min_cpu_119.rrd.zip
- (79.76 KiB) Downloaded 1668 times
Fixed it.
For some reason the snmd oid values were not entered in the database.
I mannually entered them via phpmyadmin.
for example for the 5min cpu:
Don't know if this is an error of me, or an error in the template.
Anyway, I just imported the template as instructed.
fyi: using cacti 0.8.6h
For some reason the snmd oid values were not entered in the database.
I mannually entered them via phpmyadmin.
for example for the 5min cpu:
Code: Select all
UPDATE `poller_item` SET `arg1` = '.1.3.6.1.4.1.9.2.1.58.0' WHERE `local_data_id` =120 AND CONVERT( `rrd_name` USING utf8 ) = '5min_cpu' LIMIT 1 ;
Anyway, I just imported the template as instructed.
fyi: using cacti 0.8.6h
hmm thats wierd.. ill try importing the template onto a fresh system with a clean db and see what happens..redcap wrote:Fixed it.
For some reason the snmd oid values were not entered in the database.
I mannually entered them via phpmyadmin.
for example for the 5min cpu:Don't know if this is an error of me, or an error in the template.Code: Select all
UPDATE `poller_item` SET `arg1` = '.1.3.6.1.4.1.9.2.1.58.0' WHERE `local_data_id` =120 AND CONVERT( `rrd_name` USING utf8 ) = '5min_cpu' LIMIT 1 ;
Anyway, I just imported the template as instructed.
fyi: using cacti 0.8.6h
I found a similar issue with this template and the advanced proc memory templates.
The OID's aren't being inserted into mysql properly.
I found I had to match up the database ids and data_input_fields and then insert the OID myself. It may be a mysql permissions problem or other bug with cacti.
I'll keep an eye out for other issues I see importing templates.
The OID's aren't being inserted into mysql properly.
I found I had to match up the database ids and data_input_fields and then insert the OID myself. It may be a mysql permissions problem or other bug with cacti.
I'll keep an eye out for other issues I see importing templates.
I'm finding either bugs in the template or bugs in Cacti's template engine which prevents the OIDs being inserted to the data_input_data table.
Through some troubleshooting the missing statements I had to manually add are:
This seems to happen because cacti wants to 'UPDATE" where data_input_id="71" but no rows exist with "71", so the update completes successfully with no rows modified.
This is a temporary fix until I can either report a bug or figure out what's really going on
Hope that helps, I'll be adding a similar post to the PROC MEM template.
Through some troubleshooting the missing statements I had to manually add are:
Code: Select all
INSERT into data_input_data SET t_value="",value=".1.3.6.1.4.1.9.2.1.56.0", data_template_data_id="70", data_input_field_id="6";
INSERT into data_input_data SET t_value="",value="", data_template_data_id="70", data_input_field_id="5";
INSERT into data_input_data SET t_value="",value="", data_template_data_id="70", data_input_field_id="4";
INSERT into data_input_data SET t_value="",value="", data_template_data_id="70", data_input_field_id="3";
INSERT into data_input_data SET t_value="",value="", data_template_data_id="70", data_input_field_id="2";
INSERT into data_input_data SET t_value="",value="", data_template_data_id="70", data_input_field_id="1";
INSERT into data_input_data SET t_value="",value=".1.3.6.1.4.1.9.2.1.57.0", data_template_data_id="71", data_input_field_id="6";
INSERT into data_input_data SET t_value="",value="", data_template_data_id="71", data_input_field_id="5";
INSERT into data_input_data SET t_value="",value="", data_template_data_id="71", data_input_field_id="4";
INSERT into data_input_data SET t_value="",value="", data_template_data_id="71", data_input_field_id="3";
INSERT into data_input_data SET t_value="",value="", data_template_data_id="71", data_input_field_id="2";
INSERT into data_input_data SET t_value="",value="", data_template_data_id="71", data_input_field_id="1";
This is a temporary fix until I can either report a bug or figure out what's really going on
Hope that helps, I'll be adding a similar post to the PROC MEM template.
FYI, after reading some cisco mib and thorogh checking in the thread (Thanks to mjc!!!) i have manage to create templates for Cisco Cpu utilization, and it seems to be working in order.
merely the same with mjc's template, but using snmp OID#. When check, the numbers are same if we run cisco cli "show process cpu"
The std, Cisco CPU template most likely not correct. This probably due to IOS update to version 12. (Mine is applied for v12.4) And the graph works like a charm on 2800, 3800, 7200vxr routers. I think it will work also on 1800 series.
merely the same with mjc's template, but using snmp OID#. When check, the numbers are same if we run cisco cli "show process cpu"
The std, Cisco CPU template most likely not correct. This probably due to IOS update to version 12. (Mine is applied for v12.4) And the graph works like a charm on 2800, 3800, 7200vxr routers. I think it will work also on 1800 series.
- Attachments
-
- cacti_graph_template_cisco_cpu_utilization_5sec_1min_5min.xml
- cacti cisco cpu utilization template
- (19.83 KiB) Downloaded 3799 times
-
- my cpu image
- cpu image.png (41.18 KiB) Viewed 36337 times
KeyBoarD Is MightieR ThaN ThE sWorD, iF onLy ConNecTed tO tHe InTernET..
I know this is a late reply, but anyways..
Cisco routers provide a 5 second 1 min and 5 min load. This doesn't mean you are going to get a plot every 5 seconds for the 5 second load. But you are going to the max in the last 5 seconds of the query, and the max for the last minute and the last 5 minutes.
Cisco routers provide a 5 second 1 min and 5 min load. This doesn't mean you are going to get a plot every 5 seconds for the 5 second load. But you are going to the max in the last 5 seconds of the query, and the max for the last minute and the last 5 minutes.
Who is online
Users browsing this forum: No registered users and 0 guests