I run into the same problem. Here's what I did
1. imported the xml-template
2. modified the data template 'Printer - HP - Black Toner Max'
2.1. changed the data input source to 'Get SNMP Data'
2.2. and set the OID to .1.3.6.1.2.1.43.11.1.1.8.1.1
3. created a new polling host
3.1 host template set 'Generic SNMP-enabled host'
4. created the data sources
4.1. set data template to the HP Toner Templates
4.2. and the host to the host we just made
5. created a new graph in Graph Management
5.1. selected Graph Template: Printer HP oner Level
5.2. selected the host we made
But somewhere I missed something because cacti refuses to create a graph
When I debug the graph, the DEF fields are missing.
This is what is looks like:
Code:
/usr/local/rrdtool-1.0.45/bin/rrdtool graph - \
--imgformat=PNG \
--start=-86400 \
--title="lexmark OptraColor 1200 - Toner Level" \
--base=1000 \
--height=120 \
--width=500 \
--alt-autoscale-max \
--lower-limit=0 \
--vertical-label="" \
AREA:#CDCFC4:"Maximum Toner Level" \
LINE1:#000000:"Current Toner Level" \
GPRINT::LAST:"mg of toner remaining\:%8.0lf"
And this is what is should look like:
Code:
/usr/local/rrdtool-1.0.45/bin/rrdtool graph - \
--imgformat=PNG \
--start=-86400 \
--title="lexmark OptraColor 1200 - Toner Level" \
--base=1000 \
--height=120 \
--width=500 \
--alt-autoscale-max \
--lower-limit=0 \
--vertical-label="" \
DEF:a=/home/www/htdocs/cacti/rra/lexmark_optracolor_1200_blk_toner_level_133.rrd:blk_toner_level:AVERAGE \
DEF:b=/home/www/htdocs/cacti/rra/lexmark_optracolor_1200_blk_toner_max_133.rrd:blk_toner_level:AVERAGE \
AREA:b#CDCFC4:"Maximum Toner Level" \
LINE1:a#000000:"Current Toner Level" \
GPRINT:a:LAST:"mg of toner remaining\:%8.0lf"
Where did we go wrong? (Novastar would ask

)
Additional information can be found in
http://www.raxnet.net/board/viewtopic.php?t=2831
cya,
Yvan