Quantcast

Custom graph not displaying in node resource graphs

classic Classic list List threaded Threaded
49 messages Options
123
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Custom graph not displaying in node resource graphs

Jason Lixfeld-4
I'm getting this error in jetty.log after trying to load resource graphs for a node:

2011-02-26 02:49:18,869 DEBUG [22938664@qtp-3311766-3 - /opennms/graph/results.htm?reports=all&resourceId=node[72].nodeSnmp[]] PropertiesGraphDao: not adding cisco.routercpu to prefab graph list because the required list of RRD attributes (routercpuI1, routercpuI66, routercpuI82, routercpuI2050, routercpuI2066) is not in the list of RRD attributes on the resource (routercpuI82, icmpInTimestamps, icmpOutAddrMasks, tcpPassiveOpens, routercpuI2066, icmpOutTimestmpReps, icmpOutAddrMaskReps, icmpOutDestUnreachs, tcpActiveOpens, icmpOutMsgs, routercpuI66, tcpAttemptFails, icmpInTimeExcds, icmpOutTimestamps, icmpOutEchoReps, icmpInMsgs, ciscoMemoryPoolFree, icmpInParmProbs, icmpOutEchos, icmpInEchoReps, tcpOutRsts, icmpInAddrMaskReps, icmpInSrcQuenchs, icmpOutRedirects, icmpInErrors, tcpOutSegs, icmpOutErrors, icmpOutSrcQuenchs, routercpuI2050, tcpRetransSegs, icmpOutParmProbs, tcpInErrors, tcpCurrEstab, icmpInDestUnreachs, tcpInSegs, tcpEstabResets, icmpInEchos, icmpInAddrMasks, icmpOutTimeExcds, ciscoMemoryPoolUsed, icmpInRedirects, icmpInTimestampReps)

I can't decipher the error because I don't knwow what it's referring to when it says "attributes on the resource".  To me, the resource (node 72) has the jerbs in it's rrd directory, so it obviously knows what it's asking for and ONMS seems to understand that.  Not sure what I'm missing tho.

Any ideas?

---

The jerbs exist:

[ario@amon /usr/local/opennms/share/rrd/snmp/72]$ ls -al *router*
-rw-rw-r--  1 root  wheel  37388 Feb 26 03:02 routercpuI2050.jrb
-rw-rw-r--  1 root  wheel  37388 Feb 26 03:02 routercpuI2066.jrb
-rw-rw-r--  1 root  wheel  37388 Feb 26 03:02 routercpuI66.jrb
-rw-rw-r--  1 root  wheel  37388 Feb 26 03:02 routercpuI82.jrb
[ario@amon /usr/local/opennms/share/rrd/snmp/72]$

---

Here's the config for the graph and supporting bits...

# datacollection-config.xml
      <group name="cisco-router" ifType="ignore">
        <mibObj oid=".1.3.6.1.4.1.9.2.1.58"          instance="0" alias="avgBusy5"        type="integer" />
        <mibObj oid=".1.3.6.1.4.1.9.2.1.8"           instance="0" alias="freeMem"         type="gauge" />
        <mibObj oid=".1.3.6.1.4.1.9.2.1.46"          instance="0" alias="bufferFail"      type="counter" />
        <mibObj oid=".1.3.6.1.4.1.9.2.1.47"          instance="0" alias="bufferNoMem"     type="counter" />
        <mibObj oid=".1.3.6.1.4.1.9.9.109.1.1.1.1.8" instance="1" alias="routercpuI1" type="integer" />
        <mibObj oid=".1.3.6.1.4.1.9.9.109.1.1.1.1.8" instance="66" alias="routercpuI66" type="integer" />
        <mibObj oid=".1.3.6.1.4.1.9.9.109.1.1.1.1.8" instance="82" alias="routercpuI82" type="integer" />
        <mibObj oid=".1.3.6.1.4.1.9.9.109.1.1.1.1.8" instance="2050" alias="routercpuI2050" type="integer" />
        <mibObj oid=".1.3.6.1.4.1.9.9.109.1.1.1.1.8" instance="2066" alias="routercpuI2066" type="integer" />
      </group>

# snmp-graph.properties
reports=mib2.HCbits, mib2.bits, mib2.percentdiscards, mib2.percenterrors, \
...
...
...
cisco.avgbusy5, cisco.routercpu, cisco.bufferfails, cisco.buffhits, cisco.buffmiss, \
...
...
report.cisco.routercpu.name=CPU Utilization (Cisco)
report.cisco.routercpu.columns=routercpuI1,routercpuI66,routercpuI82,routercpuI2050,routercpuI2066
report.cisco.routercpu.type=nodeSnmp
report.cisco.routercpu.command=--title="CPU Utilization" \
 DEF:avgChassis={rrd1}:routercpuI1:AVERAGE \
 DEF:minChassis={rrd1}:routercpuI1:MIN \
 DEF:maxChassis={rrd1}:routercpuI1:MAX \
 LINE2:Chassis#000000:"Chassis CPU Level" \
 GPRINT:Chassis:AVERAGE:" Avg  \\: %8.2lf %s" \
 GPRINT:Chassis:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:Chassis:MAX:"Max  \\: %8.2lf %s\\n"
 DEF:avg0/RSP0/CPU0={rrd2}:routercpuI66:AVERAGE \
 DEF:min0/RSP0/CPU0={rrd2}:routercpuI66:MIN \
 DEF:max0/RSP0/CPU0={rrd2}:routercpuI66:MAX \
 LINE2:0/RSP0/CPU0#FF0080:"0/RSP1/CPU0 Level" \
 GPRINT:0/RSP0/CPU0:AVERAGE:" Avg  \\: %8.2lf %s" \
 GPRINT:0/RSP0/CPU0:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:0/RSP0/CPU0:MAX:"Max  \\: %8.2lf %s\\n"
 DEF:avg0/RSP1/CPU0={rrd3}:routercpuI82:AVERAGE \
 DEF:min0/RSP1/CPU0={rrd3}:routercpuI82:MIN \
 DEF:max0/RSP1/CPU0={rrd3}:routercpuI82:MAX \
 LINE2:0/RSP1/CPU0#FFFF00:"0/RSP1/CPU0 Level" \
 GPRINT:0/RSP1/CPU0:AVERAGE:" Avg  \\: %8.2lf %s" \
 GPRINT:0/RSP1/CPU0:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:0/RSP1/CPU0:MAX:"Max  \\: %8.2lf %s\\n"
 DEF:avg0/0/CPU0={rrd4}:routercpuI2050:AVERAGE \
 DEF:min0/0/CPU0={rrd4}:routercpuI2050:MIN \
 DEF:max0/0/CPU0={rrd4}:routercpuI2050:MAX \
 LINE2:0/0/CPU0#00FF00:"0/0/CPU0 Level" \
 GPRINT:0/0/CPU0:AVERAGE:" Avg  \\: %8.2lf %s" \
 GPRINT:0/0/CPU0:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:0/0/CPU0:MAX:"Max  \\: %8.2lf %s\\n"
 DEF:avg0/1/CPU0={rrd5}:routercpuI2066:AVERAGE \
 DEF:min0/1/CPU0={rrd5}:routercpuI2066:MIN \
 DEF:max0/1/CPU0={rrd5}:routercpuI2066:MAX \
 LINE2:0/1/CPU0#0000ff:"0/1/CPU0 Level" \
 GPRINT:0/1/CPU0:AVERAGE:" Avg  \\: %8.2lf %s" \
 GPRINT:0/1/CPU0:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:0/1/CPU0:MAX:"Max  \\: %8.2lf %s\\n"


------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in
Real-Time with Splunk. Collect, index and harness all the fast moving IT data
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business
insights. http://p.sf.net/sfu/splunk-dev2dev 
_______________________________________________
Please read the OpenNMS Mailing List FAQ:
http://www.opennms.org/index.php/Mailing_List_FAQ

opennms-discuss mailing list

To *unsubscribe* or change your subscription options, see the bottom of this page:
https://lists.sourceforge.net/lists/listinfo/opennms-discuss
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Custom graph not displaying in node resource graphs

ayresw
On Sat, 2011-02-26 at 03:14 -0500, Jason Lixfeld wrote:

> I'm getting this error in jetty.log after trying to load resource graphs for a node:
>
> 2011-02-26 02:49:18,869 DEBUG [22938664@qtp-3311766-3 - /opennms/graph/results.htm?reports=all&resourceId=node[72].nodeSnmp[]] PropertiesGraphDao: not adding cisco.routercpu to prefab graph list because the required list of RRD attributes (routercpuI1, routercpuI66, routercpuI82, routercpuI2050, routercpuI2066) is not in the list of RRD attributes on the resource (routercpuI82, icmpInTimestamps, icmpOutAddrMasks, tcpPassiveOpens, routercpuI2066, icmpOutTimestmpReps, icmpOutAddrMaskReps, icmpOutDestUnreachs, tcpActiveOpens, icmpOutMsgs, routercpuI66, tcpAttemptFails, icmpInTimeExcds, icmpOutTimestamps, icmpOutEchoReps, icmpInMsgs, ciscoMemoryPoolFree, icmpInParmProbs, icmpOutEchos, icmpInEchoReps, tcpOutRsts, icmpInAddrMaskReps, icmpInSrcQuenchs, icmpOutRedirects, icmpInErrors, tcpOutSegs, icmpOutErrors, icmpOutSrcQuenchs, routercpuI2050, tcpRetransSegs, icmpOutParmProbs, tcpInErrors, tcpCurrEstab, icmpInDestUnreachs, tcpInSegs, tcpEstabResets, icmpInEchos, icmpInAddrMasks, icmpOutTimeExcds, ciscoMemoryPoolUsed, icmpInRedirects, icmpInTimestampReps)
>
> I can't decipher the error because I don't knwow what it's referring to when it says "attributes on the resource".  To me, the resource (node 72) has the jerbs in it's rrd directory, so it obviously knows what it's asking for and ONMS seems to understand that.  Not sure what I'm missing tho.
>
> Any ideas?
>
> ---
>
> The jerbs exist:
>
> [ario@amon /usr/local/opennms/share/rrd/snmp/72]$ ls -al *router*
> -rw-rw-r--  1 root  wheel  37388 Feb 26 03:02 routercpuI2050.jrb
> -rw-rw-r--  1 root  wheel  37388 Feb 26 03:02 routercpuI2066.jrb
> -rw-rw-r--  1 root  wheel  37388 Feb 26 03:02 routercpuI66.jrb
> -rw-rw-r--  1 root  wheel  37388 Feb 26 03:02 routercpuI82.jrb
> [ario@amon /usr/local/opennms/share/rrd/snmp/72]$
>
> ---
>
> Here's the config for the graph and supporting bits...
>
> # datacollection-config.xml
>       <group name="cisco-router" ifType="ignore">
>         <mibObj oid=".1.3.6.1.4.1.9.2.1.58"          instance="0" alias="avgBusy5"        type="integer" />
>         <mibObj oid=".1.3.6.1.4.1.9.2.1.8"           instance="0" alias="freeMem"         type="gauge" />
>         <mibObj oid=".1.3.6.1.4.1.9.2.1.46"          instance="0" alias="bufferFail"      type="counter" />
>         <mibObj oid=".1.3.6.1.4.1.9.2.1.47"          instance="0" alias="bufferNoMem"     type="counter" />
>         <mibObj oid=".1.3.6.1.4.1.9.9.109.1.1.1.1.8" instance="1" alias="routercpuI1" type="integer" />
>         <mibObj oid=".1.3.6.1.4.1.9.9.109.1.1.1.1.8" instance="66" alias="routercpuI66" type="integer" />
>         <mibObj oid=".1.3.6.1.4.1.9.9.109.1.1.1.1.8" instance="82" alias="routercpuI82" type="integer" />
>         <mibObj oid=".1.3.6.1.4.1.9.9.109.1.1.1.1.8" instance="2050" alias="routercpuI2050" type="integer" />
>         <mibObj oid=".1.3.6.1.4.1.9.9.109.1.1.1.1.8" instance="2066" alias="routercpuI2066" type="integer" />
>       </group>
>
> # snmp-graph.properties
> reports=mib2.HCbits, mib2.bits, mib2.percentdiscards, mib2.percenterrors, \
> ...
> ...
> ...
> cisco.avgbusy5, cisco.routercpu, cisco.bufferfails, cisco.buffhits, cisco.buffmiss, \
> ...
> ...
> report.cisco.routercpu.name=CPU Utilization (Cisco)
> report.cisco.routercpu.columns=routercpuI1,routercpuI66,routercpuI82,routercpuI2050,routercpuI2066
> report.cisco.routercpu.type=nodeSnmp
> report.cisco.routercpu.command=--title="CPU Utilization" \
>  DEF:avgChassis={rrd1}:routercpuI1:AVERAGE \
>  DEF:minChassis={rrd1}:routercpuI1:MIN \
>  DEF:maxChassis={rrd1}:routercpuI1:MAX \
>  LINE2:Chassis#000000:"Chassis CPU Level" \
>  GPRINT:Chassis:AVERAGE:" Avg  \\: %8.2lf %s" \
>  GPRINT:Chassis:MIN:"Min  \\: %8.2lf %s" \
>  GPRINT:Chassis:MAX:"Max  \\: %8.2lf %s\\n"
>  DEF:avg0/RSP0/CPU0={rrd2}:routercpuI66:AVERAGE \
>  DEF:min0/RSP0/CPU0={rrd2}:routercpuI66:MIN \
>  DEF:max0/RSP0/CPU0={rrd2}:routercpuI66:MAX \
>  LINE2:0/RSP0/CPU0#FF0080:"0/RSP1/CPU0 Level" \
>  GPRINT:0/RSP0/CPU0:AVERAGE:" Avg  \\: %8.2lf %s" \
>  GPRINT:0/RSP0/CPU0:MIN:"Min  \\: %8.2lf %s" \
>  GPRINT:0/RSP0/CPU0:MAX:"Max  \\: %8.2lf %s\\n"
>  DEF:avg0/RSP1/CPU0={rrd3}:routercpuI82:AVERAGE \
>  DEF:min0/RSP1/CPU0={rrd3}:routercpuI82:MIN \
>  DEF:max0/RSP1/CPU0={rrd3}:routercpuI82:MAX \
>  LINE2:0/RSP1/CPU0#FFFF00:"0/RSP1/CPU0 Level" \
>  GPRINT:0/RSP1/CPU0:AVERAGE:" Avg  \\: %8.2lf %s" \
>  GPRINT:0/RSP1/CPU0:MIN:"Min  \\: %8.2lf %s" \
>  GPRINT:0/RSP1/CPU0:MAX:"Max  \\: %8.2lf %s\\n"
>  DEF:avg0/0/CPU0={rrd4}:routercpuI2050:AVERAGE \
>  DEF:min0/0/CPU0={rrd4}:routercpuI2050:MIN \
>  DEF:max0/0/CPU0={rrd4}:routercpuI2050:MAX \
>  LINE2:0/0/CPU0#00FF00:"0/0/CPU0 Level" \
>  GPRINT:0/0/CPU0:AVERAGE:" Avg  \\: %8.2lf %s" \
>  GPRINT:0/0/CPU0:MIN:"Min  \\: %8.2lf %s" \
>  GPRINT:0/0/CPU0:MAX:"Max  \\: %8.2lf %s\\n"
>  DEF:avg0/1/CPU0={rrd5}:routercpuI2066:AVERAGE \
>  DEF:min0/1/CPU0={rrd5}:routercpuI2066:MIN \
>  DEF:max0/1/CPU0={rrd5}:routercpuI2066:MAX \
>  LINE2:0/1/CPU0#0000ff:"0/1/CPU0 Level" \
>  GPRINT:0/1/CPU0:AVERAGE:" Avg  \\: %8.2lf %s" \
>  GPRINT:0/1/CPU0:MIN:"Min  \\: %8.2lf %s" \
>  GPRINT:0/1/CPU0:MAX:"Max  \\: %8.2lf %s\\n"

The answer is in your message. The graph requires routercpuI1 but thats
not in your jrb files.

--Bill--


------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in
Real-Time with Splunk. Collect, index and harness all the fast moving IT data
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business
insights. http://p.sf.net/sfu/splunk-dev2dev 
_______________________________________________
Please read the OpenNMS Mailing List FAQ:
http://www.opennms.org/index.php/Mailing_List_FAQ

opennms-discuss mailing list

To *unsubscribe* or change your subscription options, see the bottom of this page:
https://lists.sourceforge.net/lists/listinfo/opennms-discuss
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Custom graph not displaying in node resource graphs

Jason Lixfeld-4

On 2011-02-26, at 9:33 AM, ayresw wrote:

> The answer is in your message. The graph requires routercpuI1 but thats
> not in your jrb files.

I see.  That's because that particular node only has routercpuI66,routercpuI82,routercpuI2050,routercpuI2066 only.  Another node has routercpuI1 and none of the other four.  I was under the impression that even if one (or multiple) were missing, it would just ignore it and graph what it had.

What I'm trying to do is create one graph that can be a catch-all for a bunch of different nodes without having to create multiple graph definitions and report definitions.

Is that possible?
------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in
Real-Time with Splunk. Collect, index and harness all the fast moving IT data
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business
insights. http://p.sf.net/sfu/splunk-dev2dev 
_______________________________________________
Please read the OpenNMS Mailing List FAQ:
http://www.opennms.org/index.php/Mailing_List_FAQ

opennms-discuss mailing list

To *unsubscribe* or change your subscription options, see the bottom of this page:
https://lists.sourceforge.net/lists/listinfo/opennms-discuss
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Custom graph not displaying in node resource graphs

ayresw
On Sat, 2011-02-26 at 09:40 -0500, Jason Lixfeld wrote:

> On 2011-02-26, at 9:33 AM, ayresw wrote:
>
> > The answer is in your message. The graph requires routercpuI1 but thats
> > not in your jrb files.
>
> I see.  That's because that particular node only has routercpuI66,routercpuI82,routercpuI2050,routercpuI2066 only.  Another node has routercpuI1 and none of the other four.  I was under the impression that even if one (or multiple) were missing, it would just ignore it and graph what it had.
>
> What I'm trying to do is create one graph that can be a catch-all for a bunch of different nodes without having to create multiple graph definitions and report definitions.
>
> Is that possible?

I don't know of a good way. In snmp-graph.properties you can define
separate graphs with 1, 2, 3, and all 4 of your variables and then use
the suppress option to suppress graphs with fewer variables when more
variables exist. Search for suppress in snmp-graph.properties to see the
syntax. This solution doesn't scale well though.

--Bill--


------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in
Real-Time with Splunk. Collect, index and harness all the fast moving IT data
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business
insights. http://p.sf.net/sfu/splunk-dev2dev 
_______________________________________________
Please read the OpenNMS Mailing List FAQ:
http://www.opennms.org/index.php/Mailing_List_FAQ

opennms-discuss mailing list

To *unsubscribe* or change your subscription options, see the bottom of this page:
https://lists.sourceforge.net/lists/listinfo/opennms-discuss
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Custom graph not displaying in node resource graphs

Jason Lixfeld-4

On 2011-02-26, at 10:21 AM, ayresw wrote:

> On Sat, 2011-02-26 at 09:40 -0500, Jason Lixfeld wrote:
>> On 2011-02-26, at 9:33 AM, ayresw wrote:
>>
>>> The answer is in your message. The graph requires routercpuI1 but thats
>>> not in your jrb files.
>>
>> I see.  That's because that particular node only has routercpuI66,routercpuI82,routercpuI2050,routercpuI2066 only.  Another node has routercpuI1 and none of the other four.  I was under the impression that even if one (or multiple) were missing, it would just ignore it and graph what it had.
>>
>> What I'm trying to do is create one graph that can be a catch-all for a bunch of different nodes without having to create multiple graph definitions and report definitions.
>>
>> Is that possible?
>
> I don't know of a good way. In snmp-graph.properties you can define
> separate graphs with 1, 2, 3, and all 4 of your variables and then use
> the suppress option to suppress graphs with fewer variables when more
> variables exist. Search for suppress in snmp-graph.properties to see the
> syntax. This solution doesn't scale well though.

I can't believe there isn't a way to do this.  Especially now with chassis based systems.

Here are some examples:

[ario@amon ~]$ snmpwalk -m +ENTITY-MIB:CISCO-PROCESS-MIB -v2c -c x 10.219.49.1 cpmCPUTotal5minRev
CISCO-PROCESS-MIB::cpmCPUTotal5minRev.66 = Gauge32: 2 percent
CISCO-PROCESS-MIB::cpmCPUTotal5minRev.82 = Gauge32: 0 percent
CISCO-PROCESS-MIB::cpmCPUTotal5minRev.2050 = Gauge32: 0 percent
CISCO-PROCESS-MIB::cpmCPUTotal5minRev.2066 = Gauge32: 0 percent
[ario@amon ~]$ snmpwalk -m +ENTITY-MIB:CISCO-PROCESS-MIB -v2c -c x 10.219.49.1 cpmCPUTotalPhysicalIndex
CISCO-PROCESS-MIB::cpmCPUTotalPhysicalIndex.66 = INTEGER: 38557239
CISCO-PROCESS-MIB::cpmCPUTotalPhysicalIndex.82 = INTEGER: 56744940
CISCO-PROCESS-MIB::cpmCPUTotalPhysicalIndex.2050 = INTEGER: 16203662
CISCO-PROCESS-MIB::cpmCPUTotalPhysicalIndex.2066 = INTEGER: 29682305
[ario@amon ~]$ for i in `snmpwalk -Ovq -m +ENTITY-MIB:CISCO-PROCESS-MIB -v2c -c x 10.219.49.1 cpmCPUTotalPhysicalIndex` ; do snmpwalk -m +ENTITY-MIB:CISCO-PROCESS-MIB -v2c -c x 10.219.49.1 entPhysicalName.$i ; done
ENTITY-MIB::entPhysicalName.38557239 = STRING: module 0/RSP0/CPU0
ENTITY-MIB::entPhysicalName.56744940 = STRING: module 0/RSP1/CPU0
ENTITY-MIB::entPhysicalName.16203662 = STRING: module 0/0/CPU0
ENTITY-MIB::entPhysicalName.29682305 = STRING: module 0/1/CPU0

Here's another:

[ario@amon ~]$ snmpwalk -m +ENTITY-MIB:CISCO-PROCESS-MIB -v2c -c x 10.219.49.13 cpmCPUTotal5minRev
CISCO-PROCESS-MIB::cpmCPUTotal5minRev.2 = Gauge32: 4 percent
CISCO-PROCESS-MIB::cpmCPUTotal5minRev.3 = Gauge32: 1 percent
CISCO-PROCESS-MIB::cpmCPUTotal5minRev.4 = Gauge32: 1 percent
[ario@amon ~]$ snmpwalk -m +ENTITY-MIB:CISCO-PROCESS-MIB -v2c -c x 10.219.49.13 cpmCPUTotalPhysicalIndex
CISCO-PROCESS-MIB::cpmCPUTotalPhysicalIndex.2 = INTEGER: 7026
CISCO-PROCESS-MIB::cpmCPUTotalPhysicalIndex.3 = INTEGER: 9026
CISCO-PROCESS-MIB::cpmCPUTotalPhysicalIndex.4 = INTEGER: 1026
[ario@amon ~]$ for i in `snmpwalk -Ovq -m +ENTITY-MIB:CISCO-PROCESS-MIB -v2c -c x 10.219.49.13 cpmCPUTotalPhysicalIndex` ; do snmpwalk -m +ENTITY-MIB:CISCO-PROCESS-MIB -v2c -c x 10.219.49.13 entPhysicalName.$i ; done
ENTITY-MIB::entPhysicalName.7026 = STRING: cpu R0/0
ENTITY-MIB::entPhysicalName.9026 = STRING: cpu F0/0
ENTITY-MIB::entPhysicalName.1026 = STRING: cpu 0/0
[ario@amon ~]$

Here's another - same as the first one, only one less module:

[ario@amon ~]$ snmpwalk -m +ENTITY-MIB:CISCO-PROCESS-MIB -v2c -c x 10.219.49.11 cpmCPUTotal5minRev
CISCO-PROCESS-MIB::cpmCPUTotal5minRev.66 = Gauge32: 4 percent
CISCO-PROCESS-MIB::cpmCPUTotal5minRev.82 = Gauge32: 0 percent
CISCO-PROCESS-MIB::cpmCPUTotal5minRev.2050 = Gauge32: 1 percent
[ario@amon ~]$ snmpwalk -m +ENTITY-MIB:CISCO-PROCESS-MIB -v2c -c x 10.219.49.11 cpmCPUTotalPhysicalIndex
CISCO-PROCESS-MIB::cpmCPUTotalPhysicalIndex.66 = INTEGER: 38557239
CISCO-PROCESS-MIB::cpmCPUTotalPhysicalIndex.82 = INTEGER: 56744940
CISCO-PROCESS-MIB::cpmCPUTotalPhysicalIndex.2050 = INTEGER: 16203662
[ario@amon ~]$ for i in `snmpwalk -Ovq -m +ENTITY-MIB:CISCO-PROCESS-MIB -v2c -c x 10.219.49.11 cpmCPUTotalPhysicalIndex` ; do snmpwalk -m +ENTITY-MIB:CISCO-PROCESS-MIB -v2c -c x 10.219.49.11 entPhysicalName.$i ; done
ENTITY-MIB::entPhysicalName.38557239 = STRING: module 0/RSP0/CPU0
ENTITY-MIB::entPhysicalName.56744940 = STRING: module 0/RSP1/CPU0
ENTITY-MIB::entPhysicalName.16203662 = STRING: module 0/0/CPU0
[ario@amon ~]$

Here's a completely different platform:

[ario@amon ~]$ snmpwalk -m +ENTITY-MIB:CISCO-PROCESS-MIB -v2c -c x x cpmCPUTotal5minRev
CISCO-PROCESS-MIB::cpmCPUTotal5minRev.1 = Gauge32: 9 percent
CISCO-PROCESS-MIB::cpmCPUTotal5minRev.2 = Gauge32: 14 percent
CISCO-PROCESS-MIB::cpmCPUTotal5minRev.3 = Gauge32: 0 percent
CISCO-PROCESS-MIB::cpmCPUTotal5minRev.4 = Gauge32: 1 percent
CISCO-PROCESS-MIB::cpmCPUTotal5minRev.5 = Gauge32: 6 percent
CISCO-PROCESS-MIB::cpmCPUTotal5minRev.6 = Gauge32: 2 percent
CISCO-PROCESS-MIB::cpmCPUTotal5minRev.7 = Gauge32: 5 percent
[ario@amon ~]$ snmpwalk -m +ENTITY-MIB:CISCO-PROCESS-MIB -v2c -c x x cpmCPUTotalPhysicalIndex
CISCO-PROCESS-MIB::cpmCPUTotalPhysicalIndex.1 = INTEGER: 4017
CISCO-PROCESS-MIB::cpmCPUTotalPhysicalIndex.2 = INTEGER: 4001
CISCO-PROCESS-MIB::cpmCPUTotalPhysicalIndex.3 = INTEGER: 3007
CISCO-PROCESS-MIB::cpmCPUTotalPhysicalIndex.4 = INTEGER: 6009
CISCO-PROCESS-MIB::cpmCPUTotalPhysicalIndex.5 = INTEGER: 5011
CISCO-PROCESS-MIB::cpmCPUTotalPhysicalIndex.6 = INTEGER: 1009
CISCO-PROCESS-MIB::cpmCPUTotalPhysicalIndex.7 = INTEGER: 2007
[ario@amon ~]$ for i in `snmpwalk -Ovq -m +ENTITY-MIB:CISCO-PROCESS-MIB -v2c -c x x cpmCPUTotalPhysicalIndex` ; do snmpwalk -m +ENTITY-MIB:CISCO-PROCESS-MIB -v2c -c xx entPhysicalName.$i ; done
ENTITY-MIB::entPhysicalName.4017 = STRING: CPU of Routing Processor 5
ENTITY-MIB::entPhysicalName.4001 = STRING: CPU of Switching Processor 5
ENTITY-MIB::entPhysicalName.3007 = STRING: CPU of Sub-Module 3 CFC Card
ENTITY-MIB::entPhysicalName.6009 = STRING: CPU of Sub-Module 8 CFC Card
ENTITY-MIB::entPhysicalName.5011 = STRING: CPU of Sub-Module 7 DFC Card
ENTITY-MIB::entPhysicalName.1009 = STRING: CPU of Sub-Module 1 CFC Card
ENTITY-MIB::entPhysicalName.2007 = STRING: CPU of Sub-Module 2 DFC Card
[ario@amon ~]$


Granted, some of these systems have only one CPU:

[ario@amon ~]$ snmpwalk -m +ENTITY-MIB:CISCO-PROCESS-MIB -v2c -c x 10.219.49.3 cpmCPUTotal5minRev
CISCO-PROCESS-MIB::cpmCPUTotal5minRev.1 = Gauge32: 2 percent
[ario@amon ~]$ snmpwalk -m +ENTITY-MIB:CISCO-PROCESS-MIB -v2c -c x 10.219.49.3 cpmCPUTotalPhysicalIndex
CISCO-PROCESS-MIB::cpmCPUTotalPhysicalIndex.1 = INTEGER: 0
[ario@amon ~]$ snmpwalk -m +ENTITY-MIB:CISCO-PROCESS-MIB -v2c -c x 10.219.49.3 entPhysicalName.0
entPhysicalName.0: Unknown Object Identifier (Index out of range: 0 (entPhysicalIndex))

Can't anything be done with that to make it more scalable?  If not, what?  If I have a chassis based system where each of my linecards has their own CPU, I have to create a specific a new report and graph definition in snmp-graph.properties for each node because one node could have 1 blade in slot 3, another node could have three blades, one in slot 3, one in slot 5 and one in slot 7?  That doesn't sound like it scales well :)


------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in
Real-Time with Splunk. Collect, index and harness all the fast moving IT data
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business
insights. http://p.sf.net/sfu/splunk-dev2dev 
_______________________________________________
Please read the OpenNMS Mailing List FAQ:
http://www.opennms.org/index.php/Mailing_List_FAQ

opennms-discuss mailing list

To *unsubscribe* or change your subscription options, see the bottom of this page:
https://lists.sourceforge.net/lists/listinfo/opennms-discuss
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Custom graph not displaying in node resource graphs

Mark Penzien
While you may not be able to get the CPU stats all onto one graph, this seems like the perfect situation to use indexed data collection and graphing. That will allow you to have a single graph definition regardless of how many cou's the device has.

http://www.opennms.org/wiki/Collecting_SNMP_data_from_tables_with_arbitrary_indexes

Hope that helps

Mark

On Feb 26, 2011, at 10:44 AM, "Jason Lixfeld" <[hidden email]> wrote:

>
> On 2011-02-26, at 10:21 AM, ayresw wrote:
>
>> On Sat, 2011-02-26 at 09:40 -0500, Jason Lixfeld wrote:
>>> On 2011-02-26, at 9:33 AM, ayresw wrote:
>>>
>>>> The answer is in your message. The graph requires routercpuI1 but thats
>>>> not in your jrb files.
>>>
>>> I see.  That's because that particular node only has routercpuI66,routercpuI82,routercpuI2050,routercpuI2066 only.  Another node has routercpuI1 and none of the other four.  I was under the impression that even if one (or multiple) were missing, it would just ignore it and graph what it had.
>>>
>>> What I'm trying to do is create one graph that can be a catch-all for a bunch of different nodes without having to create multiple graph definitions and report definitions.
>>>
>>> Is that possible?
>>
>> I don't know of a good way. In snmp-graph.properties you can define
>> separate graphs with 1, 2, 3, and all 4 of your variables and then use
>> the suppress option to suppress graphs with fewer variables when more
>> variables exist. Search for suppress in snmp-graph.properties to see the
>> syntax. This solution doesn't scale well though.
>
> I can't believe there isn't a way to do this.  Especially now with chassis based systems.
>
> Here are some examples:
>
> [ario@amon ~]$ snmpwalk -m +ENTITY-MIB:CISCO-PROCESS-MIB -v2c -c x 10.219.49.1 cpmCPUTotal5minRev
> CISCO-PROCESS-MIB::cpmCPUTotal5minRev.66 = Gauge32: 2 percent
> CISCO-PROCESS-MIB::cpmCPUTotal5minRev.82 = Gauge32: 0 percent
> CISCO-PROCESS-MIB::cpmCPUTotal5minRev.2050 = Gauge32: 0 percent
> CISCO-PROCESS-MIB::cpmCPUTotal5minRev.2066 = Gauge32: 0 percent
> [ario@amon ~]$ snmpwalk -m +ENTITY-MIB:CISCO-PROCESS-MIB -v2c -c x 10.219.49.1 cpmCPUTotalPhysicalIndex
> CISCO-PROCESS-MIB::cpmCPUTotalPhysicalIndex.66 = INTEGER: 38557239
> CISCO-PROCESS-MIB::cpmCPUTotalPhysicalIndex.82 = INTEGER: 56744940
> CISCO-PROCESS-MIB::cpmCPUTotalPhysicalIndex.2050 = INTEGER: 16203662
> CISCO-PROCESS-MIB::cpmCPUTotalPhysicalIndex.2066 = INTEGER: 29682305
> [ario@amon ~]$ for i in `snmpwalk -Ovq -m +ENTITY-MIB:CISCO-PROCESS-MIB -v2c -c x 10.219.49.1 cpmCPUTotalPhysicalIndex` ; do snmpwalk -m +ENTITY-MIB:CISCO-PROCESS-MIB -v2c -c x 10.219.49.1 entPhysicalName.$i ; done
> ENTITY-MIB::entPhysicalName.38557239 = STRING: module 0/RSP0/CPU0
> ENTITY-MIB::entPhysicalName.56744940 = STRING: module 0/RSP1/CPU0
> ENTITY-MIB::entPhysicalName.16203662 = STRING: module 0/0/CPU0
> ENTITY-MIB::entPhysicalName.29682305 = STRING: module 0/1/CPU0
>
> Here's another:
>
> [ario@amon ~]$ snmpwalk -m +ENTITY-MIB:CISCO-PROCESS-MIB -v2c -c x 10.219.49.13 cpmCPUTotal5minRev
> CISCO-PROCESS-MIB::cpmCPUTotal5minRev.2 = Gauge32: 4 percent
> CISCO-PROCESS-MIB::cpmCPUTotal5minRev.3 = Gauge32: 1 percent
> CISCO-PROCESS-MIB::cpmCPUTotal5minRev.4 = Gauge32: 1 percent
> [ario@amon ~]$ snmpwalk -m +ENTITY-MIB:CISCO-PROCESS-MIB -v2c -c x 10.219.49.13 cpmCPUTotalPhysicalIndex
> CISCO-PROCESS-MIB::cpmCPUTotalPhysicalIndex.2 = INTEGER: 7026
> CISCO-PROCESS-MIB::cpmCPUTotalPhysicalIndex.3 = INTEGER: 9026
> CISCO-PROCESS-MIB::cpmCPUTotalPhysicalIndex.4 = INTEGER: 1026
> [ario@amon ~]$ for i in `snmpwalk -Ovq -m +ENTITY-MIB:CISCO-PROCESS-MIB -v2c -c x 10.219.49.13 cpmCPUTotalPhysicalIndex` ; do snmpwalk -m +ENTITY-MIB:CISCO-PROCESS-MIB -v2c -c x 10.219.49.13 entPhysicalName.$i ; done
> ENTITY-MIB::entPhysicalName.7026 = STRING: cpu R0/0
> ENTITY-MIB::entPhysicalName.9026 = STRING: cpu F0/0
> ENTITY-MIB::entPhysicalName.1026 = STRING: cpu 0/0
> [ario@amon ~]$
>
> Here's another - same as the first one, only one less module:
>
> [ario@amon ~]$ snmpwalk -m +ENTITY-MIB:CISCO-PROCESS-MIB -v2c -c x 10.219.49.11 cpmCPUTotal5minRev
> CISCO-PROCESS-MIB::cpmCPUTotal5minRev.66 = Gauge32: 4 percent
> CISCO-PROCESS-MIB::cpmCPUTotal5minRev.82 = Gauge32: 0 percent
> CISCO-PROCESS-MIB::cpmCPUTotal5minRev.2050 = Gauge32: 1 percent
> [ario@amon ~]$ snmpwalk -m +ENTITY-MIB:CISCO-PROCESS-MIB -v2c -c x 10.219.49.11 cpmCPUTotalPhysicalIndex
> CISCO-PROCESS-MIB::cpmCPUTotalPhysicalIndex.66 = INTEGER: 38557239
> CISCO-PROCESS-MIB::cpmCPUTotalPhysicalIndex.82 = INTEGER: 56744940
> CISCO-PROCESS-MIB::cpmCPUTotalPhysicalIndex.2050 = INTEGER: 16203662
> [ario@amon ~]$ for i in `snmpwalk -Ovq -m +ENTITY-MIB:CISCO-PROCESS-MIB -v2c -c x 10.219.49.11 cpmCPUTotalPhysicalIndex` ; do snmpwalk -m +ENTITY-MIB:CISCO-PROCESS-MIB -v2c -c x 10.219.49.11 entPhysicalName.$i ; done
> ENTITY-MIB::entPhysicalName.38557239 = STRING: module 0/RSP0/CPU0
> ENTITY-MIB::entPhysicalName.56744940 = STRING: module 0/RSP1/CPU0
> ENTITY-MIB::entPhysicalName.16203662 = STRING: module 0/0/CPU0
> [ario@amon ~]$
>
> Here's a completely different platform:
>
> [ario@amon ~]$ snmpwalk -m +ENTITY-MIB:CISCO-PROCESS-MIB -v2c -c x x cpmCPUTotal5minRev
> CISCO-PROCESS-MIB::cpmCPUTotal5minRev.1 = Gauge32: 9 percent
> CISCO-PROCESS-MIB::cpmCPUTotal5minRev.2 = Gauge32: 14 percent
> CISCO-PROCESS-MIB::cpmCPUTotal5minRev.3 = Gauge32: 0 percent
> CISCO-PROCESS-MIB::cpmCPUTotal5minRev.4 = Gauge32: 1 percent
> CISCO-PROCESS-MIB::cpmCPUTotal5minRev.5 = Gauge32: 6 percent
> CISCO-PROCESS-MIB::cpmCPUTotal5minRev.6 = Gauge32: 2 percent
> CISCO-PROCESS-MIB::cpmCPUTotal5minRev.7 = Gauge32: 5 percent
> [ario@amon ~]$ snmpwalk -m +ENTITY-MIB:CISCO-PROCESS-MIB -v2c -c x x cpmCPUTotalPhysicalIndex
> CISCO-PROCESS-MIB::cpmCPUTotalPhysicalIndex.1 = INTEGER: 4017
> CISCO-PROCESS-MIB::cpmCPUTotalPhysicalIndex.2 = INTEGER: 4001
> CISCO-PROCESS-MIB::cpmCPUTotalPhysicalIndex.3 = INTEGER: 3007
> CISCO-PROCESS-MIB::cpmCPUTotalPhysicalIndex.4 = INTEGER: 6009
> CISCO-PROCESS-MIB::cpmCPUTotalPhysicalIndex.5 = INTEGER: 5011
> CISCO-PROCESS-MIB::cpmCPUTotalPhysicalIndex.6 = INTEGER: 1009
> CISCO-PROCESS-MIB::cpmCPUTotalPhysicalIndex.7 = INTEGER: 2007
> [ario@amon ~]$ for i in `snmpwalk -Ovq -m +ENTITY-MIB:CISCO-PROCESS-MIB -v2c -c x x cpmCPUTotalPhysicalIndex` ; do snmpwalk -m +ENTITY-MIB:CISCO-PROCESS-MIB -v2c -c xx entPhysicalName.$i ; done
> ENTITY-MIB::entPhysicalName.4017 = STRING: CPU of Routing Processor 5
> ENTITY-MIB::entPhysicalName.4001 = STRING: CPU of Switching Processor 5
> ENTITY-MIB::entPhysicalName.3007 = STRING: CPU of Sub-Module 3 CFC Card
> ENTITY-MIB::entPhysicalName.6009 = STRING: CPU of Sub-Module 8 CFC Card
> ENTITY-MIB::entPhysicalName.5011 = STRING: CPU of Sub-Module 7 DFC Card
> ENTITY-MIB::entPhysicalName.1009 = STRING: CPU of Sub-Module 1 CFC Card
> ENTITY-MIB::entPhysicalName.2007 = STRING: CPU of Sub-Module 2 DFC Card
> [ario@amon ~]$
>
>
> Granted, some of these systems have only one CPU:
>
> [ario@amon ~]$ snmpwalk -m +ENTITY-MIB:CISCO-PROCESS-MIB -v2c -c x 10.219.49.3 cpmCPUTotal5minRev
> CISCO-PROCESS-MIB::cpmCPUTotal5minRev.1 = Gauge32: 2 percent
> [ario@amon ~]$ snmpwalk -m +ENTITY-MIB:CISCO-PROCESS-MIB -v2c -c x 10.219.49.3 cpmCPUTotalPhysicalIndex
> CISCO-PROCESS-MIB::cpmCPUTotalPhysicalIndex.1 = INTEGER: 0
> [ario@amon ~]$ snmpwalk -m +ENTITY-MIB:CISCO-PROCESS-MIB -v2c -c x 10.219.49.3 entPhysicalName.0
> entPhysicalName.0: Unknown Object Identifier (Index out of range: 0 (entPhysicalIndex))
>
> Can't anything be done with that to make it more scalable?  If not, what?  If I have a chassis based system where each of my linecards has their own CPU, I have to create a specific a new report and graph definition in snmp-graph.properties for each node because one node could have 1 blade in slot 3, another node could have three blades, one in slot 3, one in slot 5 and one in slot 7?  That doesn't sound like it scales well :)
>
>
> ------------------------------------------------------------------------------
> Free Software Download: Index, Search & Analyze Logs and other IT data in
> Real-Time with Splunk. Collect, index and harness all the fast moving IT data
> generated by your applications, servers and devices whether physical, virtual
> or in the cloud. Deliver compliance at lower cost and gain new business
> insights. http://p.sf.net/sfu/splunk-dev2dev
> _______________________________________________
> Please read the OpenNMS Mailing List FAQ:
> http://www.opennms.org/index.php/Mailing_List_FAQ
>
> opennms-discuss mailing list
>
> To *unsubscribe* or change your subscription options, see the bottom of this page:
> https://lists.sourceforge.net/lists/listinfo/opennms-discuss
>

This transmission may contain information that is privileged, confidential, and/or exempt from disclosure under applicable law. If you are not the intended recipient, you are hereby notified that any disclosure, copying, distribution, or use of the information contained herein (including any reliance thereon) is STRICTLY PROHIBITED. If you received this transmission in error, please immediately contact the sender and destroy the material in its entirety, whether in electronic or hard copy format.


------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in
Real-Time with Splunk. Collect, index and harness all the fast moving IT data
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business
insights. http://p.sf.net/sfu/splunk-dev2dev 
_______________________________________________
Please read the OpenNMS Mailing List FAQ:
http://www.opennms.org/index.php/Mailing_List_FAQ

opennms-discuss mailing list

To *unsubscribe* or change your subscription options, see the bottom of this page:
https://lists.sourceforge.net/lists/listinfo/opennms-discuss
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Custom graph not displaying innode resource graphs

mritorto
In reply to this post by ayresw
How do you get graphs at all

I can't get graphs to work all for any of my servers

Why can't this product pull the info via snmp like solarwinds product and create graphs on the fly
Sent from my Verizon Wireless BlackBerry

-----Original Message-----
From: ayresw <[hidden email]>
Date: Sat, 26 Feb 2011 07:21:03
To: General OpenNMS Discussion<[hidden email]>
Reply-To: General OpenNMS Discussion <[hidden email]>
Subject: Re: [opennms-discuss] Custom graph not displaying in
        node resource graphs

On Sat, 2011-02-26 at 09:40 -0500, Jason Lixfeld wrote:

> On 2011-02-26, at 9:33 AM, ayresw wrote:
>
> > The answer is in your message. The graph requires routercpuI1 but thats
> > not in your jrb files.
>
> I see.  That's because that particular node only has routercpuI66,routercpuI82,routercpuI2050,routercpuI2066 only.  Another node has routercpuI1 and none of the other four.  I was under the impression that even if one (or multiple) were missing, it would just ignore it and graph what it had.
>
> What I'm trying to do is create one graph that can be a catch-all for a bunch of different nodes without having to create multiple graph definitions and report definitions.
>
> Is that possible?

I don't know of a good way. In snmp-graph.properties you can define
separate graphs with 1, 2, 3, and all 4 of your variables and then use
the suppress option to suppress graphs with fewer variables when more
variables exist. Search for suppress in snmp-graph.properties to see the
syntax. This solution doesn't scale well though.

--Bill--


------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in
Real-Time with Splunk. Collect, index and harness all the fast moving IT data
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business
insights. http://p.sf.net/sfu/splunk-dev2dev 
_______________________________________________
Please read the OpenNMS Mailing List FAQ:
http://www.opennms.org/index.php/Mailing_List_FAQ

opennms-discuss mailing list

To *unsubscribe* or change your subscription options, see the bottom of this page:
https://lists.sourceforge.net/lists/listinfo/opennms-discuss
------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in
Real-Time with Splunk. Collect, index and harness all the fast moving IT data
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business
insights. http://p.sf.net/sfu/splunk-dev2dev 
_______________________________________________
Please read the OpenNMS Mailing List FAQ:
http://www.opennms.org/index.php/Mailing_List_FAQ

opennms-discuss mailing list

To *unsubscribe* or change your subscription options, see the bottom of this page:
https://lists.sourceforge.net/lists/listinfo/opennms-discuss
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Custom graph not displaying innode resource graphs

Jason Lixfeld-4
It can, but in order to try and help, you'll have to be far more specific in your questions.  Include logs, device info, command output, platform, OS, etc.  We're not going to do all your work for you, so you'll have to show that you've done a lot of it yourself (unless you want to pay one of us to help you) first.

This product is not anywhere near as simple as Solar Winds.  If you are looking for something simple, you may have to look elsewhere.

--

Sent from my mobile device.

On 2011-02-26, at 12:39 PM, [hidden email] wrote:

> How do you get graphs at all
>
> I can't get graphs to work all for any of my servers
>
> Why can't this product pull the info via snmp like solarwinds product and create graphs on the fly
> Sent from my Verizon Wireless BlackBerry
>
> -----Original Message-----
> From: ayresw <[hidden email]>
> Date: Sat, 26 Feb 2011 07:21:03
> To: General OpenNMS Discussion<[hidden email]>
> Reply-To: General OpenNMS Discussion <[hidden email]>
> Subject: Re: [opennms-discuss] Custom graph not displaying in
>    node    resource    graphs
>
> On Sat, 2011-02-26 at 09:40 -0500, Jason Lixfeld wrote:
>> On 2011-02-26, at 9:33 AM, ayresw wrote:
>>
>>> The answer is in your message. The graph requires routercpuI1 but thats
>>> not in your jrb files.
>>
>> I see.  That's because that particular node only has routercpuI66,routercpuI82,routercpuI2050,routercpuI2066 only.  Another node has routercpuI1 and none of the other four.  I was under the impression that even if one (or multiple) were missing, it would just ignore it and graph what it had.
>>
>> What I'm trying to do is create one graph that can be a catch-all for a bunch of different nodes without having to create multiple graph definitions and report definitions.
>>
>> Is that possible?
>
> I don't know of a good way. In snmp-graph.properties you can define
> separate graphs with 1, 2, 3, and all 4 of your variables and then use
> the suppress option to suppress graphs with fewer variables when more
> variables exist. Search for suppress in snmp-graph.properties to see the
> syntax. This solution doesn't scale well though.
>
> --Bill--
>
>
> ------------------------------------------------------------------------------
> Free Software Download: Index, Search & Analyze Logs and other IT data in
> Real-Time with Splunk. Collect, index and harness all the fast moving IT data
> generated by your applications, servers and devices whether physical, virtual
> or in the cloud. Deliver compliance at lower cost and gain new business
> insights. http://p.sf.net/sfu/splunk-dev2dev 
> _______________________________________________
> Please read the OpenNMS Mailing List FAQ:
> http://www.opennms.org/index.php/Mailing_List_FAQ
>
> opennms-discuss mailing list
>
> To *unsubscribe* or change your subscription options, see the bottom of this page:
> https://lists.sourceforge.net/lists/listinfo/opennms-discuss
> ------------------------------------------------------------------------------
> Free Software Download: Index, Search & Analyze Logs and other IT data in
> Real-Time with Splunk. Collect, index and harness all the fast moving IT data
> generated by your applications, servers and devices whether physical, virtual
> or in the cloud. Deliver compliance at lower cost and gain new business
> insights. http://p.sf.net/sfu/splunk-dev2dev 
> _______________________________________________
> Please read the OpenNMS Mailing List FAQ:
> http://www.opennms.org/index.php/Mailing_List_FAQ
>
> opennms-discuss mailing list
>
> To *unsubscribe* or change your subscription options, see the bottom of this page:
> https://lists.sourceforge.net/lists/listinfo/opennms-discuss

------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in
Real-Time with Splunk. Collect, index and harness all the fast moving IT data
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business
insights. http://p.sf.net/sfu/splunk-dev2dev 
_______________________________________________
Please read the OpenNMS Mailing List FAQ:
http://www.opennms.org/index.php/Mailing_List_FAQ

opennms-discuss mailing list

To *unsubscribe* or change your subscription options, see the bottom of this page:
https://lists.sourceforge.net/lists/listinfo/opennms-discuss
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Custom graph not displaying innode resource graphs

mritorto
What's logs should I send

Right now its on centos 5.5

My others servers our windows 2003

I am new to linux


Sent from my Verizon Wireless BlackBerry

-----Original Message-----
From: Jason Lixfeld <[hidden email]>
Date: Sat, 26 Feb 2011 15:39:28
To: [hidden email]<[hidden email]>
Subject: Re: [opennms-discuss] Custom graph not displaying innode resource graphs

I'd send that info to the list.  I don't know if I'll know enough to be able to help.

--

Sent from my mobile device.

On 2011-02-26, at 3:03 PM, [hidden email] wrote:

> I will send info later
>
> What logs do you need
>
>
> Sent from my Verizon Wireless BlackBerry
>
> -----Original Message-----
> From: Jason Lixfeld <[hidden email]>
> Date: Sat, 26 Feb 2011 14:52:34
> To: [hidden email]<[hidden email]>; General OpenNMS Discussion<[hidden email]>
> Subject: Re: [opennms-discuss] Custom graph not displaying innode    resource    graphs
>
> It can, but in order to try and help, you'll have to be far more specific in your questions.  Include logs, device info, command output, platform, OS, etc.  We're not going to do all your work for you, so you'll have to show that you've done a lot of it yourself (unless you want to pay one of us to help you) first.
>
> This product is not anywhere near as simple as Solar Winds.  If you are looking for something simple, you may have to look elsewhere.
>
> --
>
> Sent from my mobile device.
>
> On 2011-02-26, at 12:39 PM, [hidden email] wrote:
>
>> How do you get graphs at all
>>
>> I can't get graphs to work all for any of my servers
>>
>> Why can't this product pull the info via snmp like solarwinds product and create graphs on the fly
>> Sent from my Verizon Wireless BlackBerry
>>
>> -----Original Message-----
>> From: ayresw <[hidden email]>
>> Date: Sat, 26 Feb 2011 07:21:03
>> To: General OpenNMS Discussion<[hidden email]>
>> Reply-To: General OpenNMS Discussion <[hidden email]>
>> Subject: Re: [opennms-discuss] Custom graph not displaying in
>>   node    resource    graphs
>>
>> On Sat, 2011-02-26 at 09:40 -0500, Jason Lixfeld wrote:
>>> On 2011-02-26, at 9:33 AM, ayresw wrote:
>>>
>>>> The answer is in your message. The graph requires routercpuI1 but thats
>>>> not in your jrb files.
>>>
>>> I see.  That's because that particular node only has routercpuI66,routercpuI82,routercpuI2050,routercpuI2066 only.  Another node has routercpuI1 and none of the other four.  I was under the impression that even if one (or multiple) were missing, it would just ignore it and graph what it had.
>>>
>>> What I'm trying to do is create one graph that can be a catch-all for a bunch of different nodes without having to create multiple graph definitions and report definitions.
>>>
>>> Is that possible?
>>
>> I don't know of a good way. In snmp-graph.properties you can define
>> separate graphs with 1, 2, 3, and all 4 of your variables and then use
>> the suppress option to suppress graphs with fewer variables when more
>> variables exist. Search for suppress in snmp-graph.properties to see the
>> syntax. This solution doesn't scale well though.
>>
>> --Bill--
>>
>>
>> ------------------------------------------------------------------------------
>> Free Software Download: Index, Search & Analyze Logs and other IT data in
>> Real-Time with Splunk. Collect, index and harness all the fast moving IT data
>> generated by your applications, servers and devices whether physical, virtual
>> or in the cloud. Deliver compliance at lower cost and gain new business
>> insights. http://p.sf.net/sfu/splunk-dev2dev 
>>_______________________________________________
>> Please read the OpenNMS Mailing List FAQ:
>> http://www.opennms.org/index.php/Mailing_List_FAQ
>>
>> opennms-discuss mailing list
>>
>> To *unsubscribe* or change your subscription options, see the bottom of this page:
>> https://lists.sourceforge.net/lists/listinfo/opennms-discuss
>> ------------------------------------------------------------------------------
>> Free Software Download: Index, Search & Analyze Logs and other IT data in
>> Real-Time with Splunk. Collect, index and harness all the fast moving IT data
>> generated by your applications, servers and devices whether physical, virtual
>> or in the cloud. Deliver compliance at lower cost and gain new business
>> insights. http://p.sf.net/sfu/splunk-dev2dev 
>>_______________________________________________
>> Please read the OpenNMS Mailing List FAQ:
>> http://www.opennms.org/index.php/Mailing_List_FAQ
>>
>> opennms-discuss mailing list
>>
>> To *unsubscribe* or change your subscription options, see the bottom of this page:
>> https://lists.sourceforge.net/lists/listinfo/opennms-discuss
------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in
Real-Time with Splunk. Collect, index and harness all the fast moving IT data
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business
insights. http://p.sf.net/sfu/splunk-dev2dev 
_______________________________________________
Please read the OpenNMS Mailing List FAQ:
http://www.opennms.org/index.php/Mailing_List_FAQ

opennms-discuss mailing list

To *unsubscribe* or change your subscription options, see the bottom of this page:
https://lists.sourceforge.net/lists/listinfo/opennms-discuss
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Custom graph not displaying innode resource graphs

Les Mikesell
In reply to this post by mritorto
On 2/26/11 11:39 AM, [hidden email] wrote:
> How do you get graphs at all
>
> I can't get graphs to work all for any of my servers
>
> Why can't this product pull the info via snmp like solarwinds product and create graphs on the fly

You should get graphs automatically for all of the things with definitions
included in the default config files (which should cover most server types and
common routers and switches).

--
    Les Mikesell
     [hidden email]



------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in
Real-Time with Splunk. Collect, index and harness all the fast moving IT data
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business
insights. http://p.sf.net/sfu/splunk-dev2dev 
_______________________________________________
Please read the OpenNMS Mailing List FAQ:
http://www.opennms.org/index.php/Mailing_List_FAQ

opennms-discuss mailing list

To *unsubscribe* or change your subscription options, see the bottom of this page:
https://lists.sourceforge.net/lists/listinfo/opennms-discuss
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Custom graph not displaying innode resource graphs

mritorto
In reply to this post by mritorto
okay any response to my question.

I am trying to get each node wheither its linux or windows to start graphing its cpu and memory information under the resource graphs.

The opennms server is running centos 5.5

I have 3 centos servers and 100 windows 2003 servers.

What logs can I sent you guys.

I am running opennms version 1.85


For the windows boxes I am mostly running just the builtin  windows snmp agents.

I do have snmp-informant running on one box as a test.  I have the same results.

Only the contact information and location show up in terms of snmp information.

I really want to pull all of the cpu, memory stats and disk stats using snmp.

Please help me!!!1

I am under a deadline


Thanks in advance

marc
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Custom graph not displaying innode resource graphs

Guarini, Jeremy
What is the custom graph? Cpu and memory stuff is already there by defaul
IIRC.


--
Jeremy Guarini






On 2/28/11 12:59 PM, "mritorto" <[hidden email]> wrote:

>okay any response to my question.
>
>I am trying to get each node wheither its linux or windows to start
>graphing
>its cpu and memory information under the resource graphs.
>
>The opennms server is running centos 5.5
>
>I have 3 centos servers and 100 windows 2003 servers.
>
>What logs can I sent you guys.
>
>I am running opennms version 1.85
>
>
>For the windows boxes I am mostly running just the builtin  windows snmp
>agents.
>
>I do have snmp-informant running on one box as a test.  I have the same
>results.
>
>Only the contact information and location show up in terms of snmp
>information.
>
>I really want to pull all of the cpu, memory stats and disk stats using
>snmp.
>
>Please help me!!!1
>
>I am under a deadline
>
>
>Thanks in advance
>
>marc
>
>--
>View this message in context:
>http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-re
>source-graphs-tp6067133p6074881.html
>Sent from the OpenNMS - discuss mailing list archive at Nabble.com.
>
>--------------------------------------------------------------------------
>----
>Free Software Download: Index, Search & Analyze Logs and other IT data in
>Real-Time with Splunk. Collect, index and harness all the fast moving IT
>data
>generated by your applications, servers and devices whether physical,
>virtual
>or in the cloud. Deliver compliance at lower cost and gain new business
>insights. http://p.sf.net/sfu/splunk-dev2dev
>_______________________________________________
>Please read the OpenNMS Mailing List FAQ:
>http://www.opennms.org/index.php/Mailing_List_FAQ
>
>opennms-discuss mailing list
>
>To *unsubscribe* or change your subscription options, see the bottom of
>this page:
>https://lists.sourceforge.net/lists/listinfo/opennms-discuss


------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in
Real-Time with Splunk. Collect, index and harness all the fast moving IT data
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business
insights. http://p.sf.net/sfu/splunk-dev2dev 
_______________________________________________
Please read the OpenNMS Mailing List FAQ:
http://www.opennms.org/index.php/Mailing_List_FAQ

opennms-discuss mailing list

To *unsubscribe* or change your subscription options, see the bottom of this page:
https://lists.sourceforge.net/lists/listinfo/opennms-discuss
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Custom graph not displaying innode resource graphs

mritorto
I don't see it there snmp walk works

Sent from my Verizon Wireless BlackBerry


From: "Guarini, Jeremy [via OpenNMS]" <[hidden email]>
Date: Mon, 28 Feb 2011 13:21:30 -0800 (PST)
To: mritorto<[hidden email]>
Subject: Re: Custom graph not displaying innode resource graphs

What is the custom graph? Cpu and memory stuff is already there by defaul
IIRC.


--
Jeremy Guarini






On 2/28/11 12:59 PM, "mritorto" <[hidden email]> wrote:

>okay any response to my question.
>
>I am trying to get each node wheither its linux or windows to start
>graphing
>its cpu and memory information under the resource graphs.
>
>The opennms server is running centos 5.5
>
>I have 3 centos servers and 100 windows 2003 servers.
>
>What logs can I sent you guys.
>
>I am running opennms version 1.85
>
>
>For the windows boxes I am mostly running just the builtin  windows snmp
>agents.
>
>I do have snmp-informant running on one box as a test.  I have the same
>results.
>
>Only the contact information and location show up in terms of snmp
>information.
>
>I really want to pull all of the cpu, memory stats and disk stats using
>snmp.
>
>Please help me!!!1
>
>I am under a deadline
>
>
>Thanks in advance
>
>marc
>
>--
>View this message in context:
>http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-re
>source-graphs-tp6067133p6074881.html
>Sent from the OpenNMS - discuss mailing list archive at Nabble.com.
>
>--------------------------------------------------------------------------
>----
>Free Software Download: Index, Search & Analyze Logs and other IT data in
>Real-Time with Splunk. Collect, index and harness all the fast moving IT
>data
>generated by your applications, servers and devices whether physical,
>virtual
>or in the cloud. Deliver compliance at lower cost and gain new business
>insights. http://p.sf.net/sfu/splunk-dev2dev
>_______________________________________________
>Please read the OpenNMS Mailing List FAQ:
>http://www.opennms.org/index.php/Mailing_List_FAQ
>
>opennms-discuss mailing list
>
>To *unsubscribe* or change your subscription options, see the bottom of
>this page:
>https://lists.sourceforge.net/lists/listinfo/opennms-discuss

------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in
Real-Time with Splunk. Collect, index and harness all the fast moving IT data
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business
insights. http://p.sf.net/sfu/splunk-dev2dev 
_______________________________________________
Please read the OpenNMS Mailing List FAQ:
http://www.opennms.org/index.php/Mailing_List_FAQ

opennms-discuss mailing list

To *unsubscribe* or change your subscription options, see the bottom of this page:
https://lists.sourceforge.net/lists/listinfo/opennms-discuss



If you reply to this email, your message will be added to the discussion below:
http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-resource-graphs-tp6067133p6074979.html
To unsubscribe from Custom graph not displaying in node resource graphs, click here.
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Custom graph not displaying innode resource graphs

Guarini, Jeremy
As I've found, just because snmpwalk works doesn't mean that the node will have snmp data (look for snmp timeout and 64 counters for reference). What do your logs show? Have you changed the logging levels to, say, debug?

Are nodes discovered and just not showing any snmp data?
Have you correctly added the snmp community string for the node and/or IP range in OpenNMS?

--
Jeremy Guarini


From: mritorto <[hidden email]<mailto:[hidden email]>>
Reply-To: opennms-discuss <[hidden email]<mailto:[hidden email]>>
Date: Mon, 28 Feb 2011 13:22:51 -0800
To: opennms-discuss <[hidden email]<mailto:[hidden email]>>
Subject: Re: [opennms-discuss] Custom graph not displaying innode resource graphs

I don't see it there snmp walk works

Sent from my Verizon Wireless BlackBerry

________________________________
From: "Guarini, Jeremy [via OpenNMS]" <[hidden email]</user/SendEmail.jtp?type=node&node=6074984&i=0>>
Date: Mon, 28 Feb 2011 13:21:30 -0800 (PST)
To: mritorto<[hidden email]</user/SendEmail.jtp?type=node&node=6074984&i=1>>
Subject: Re: Custom graph not displaying innode resource graphs

What is the custom graph? Cpu and memory stuff is already there by defaul
IIRC.


--
Jeremy Guarini






On 2/28/11 12:59 PM, "mritorto" <[hidden email]</user/SendEmail.jtp?type=node&node=6074979&i=0&by-user=t>> wrote:

>okay any response to my question.
>
>I am trying to get each node wheither its linux or windows to start
>graphing
>its cpu and memory information under the resource graphs.
>
>The opennms server is running centos 5.5
>
>I have 3 centos servers and 100 windows 2003 servers.
>
>What logs can I sent you guys.
>
>I am running opennms version 1.85
>
>
>For the windows boxes I am mostly running just the builtin  windows snmp
>agents.
>
>I do have snmp-informant running on one box as a test.  I have the same
>results.
>
>Only the contact information and location show up in terms of snmp
>information.
>
>I really want to pull all of the cpu, memory stats and disk stats using
>snmp.
>
>Please help me!!!1
>
>I am under a deadline
>
>
>Thanks in advance
>
>marc
>
>--
>View this message in context:
>http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-re<http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-re?by-user=t&by-user=t>
>source-graphs-tp6067133p6074881.html
>Sent from the OpenNMS - discuss mailing list archive at Nabble.com.
>
>--------------------------------------------------------------------------
>----
>Free Software Download: Index, Search & Analyze Logs and other IT data in
>Real-Time with Splunk. Collect, index and harness all the fast moving IT
>data
>generated by your applications, servers and devices whether physical,
>virtual
>or in the cloud. Deliver compliance at lower cost and gain new business
>insights. http://p.sf.net/sfu/splunk-dev2dev
>_______________________________________________
>Please read the OpenNMS Mailing List FAQ:
>http://www.opennms.org/index.php/Mailing_List_FAQ
>
>opennms-discuss mailing list
>
>To *unsubscribe* or change your subscription options, see the bottom of
>this page:
>https://lists.sourceforge.net/lists/listinfo/opennms-discuss

------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in
Real-Time with Splunk. Collect, index and harness all the fast moving IT data
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business
insights. http://p.sf.net/sfu/splunk-dev2dev
_______________________________________________
Please read the OpenNMS Mailing List FAQ:
http://www.opennms.org/index.php/Mailing_List_FAQ

opennms-discuss mailing list

To *unsubscribe* or change your subscription options, see the bottom of this page:
https://lists.sourceforge.net/lists/listinfo/opennms-discuss


________________________________
If you reply to this email, your message will be added to the discussion below:
http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-resource-graphs-tp6067133p6074979.html<http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-resource-graphs-tp6067133p6074979.html?by-user=t>

________________________________
View this message in context: Re: Custom graph not displaying innode resource graphs<http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-resource-graphs-tp6067133p6074984.html>
Sent from the OpenNMS - discuss mailing list archive<http://opennms.530661.n2.nabble.com/OpenNMS-discuss-f529575.html> at Nabble.com.
------------------------------------------------------------------------------ Free Software Download: Index, Search & Analyze Logs and other IT data in Real-Time with Splunk. Collect, index and harness all the fast moving IT data generated by your applications, servers and devices whether physical, virtual or in the cloud. Deliver compliance at lower cost and gain new business insights. http://p.sf.net/sfu/splunk-dev2dev _______________________________________________ Please read the OpenNMS Mailing List FAQ: http://www.opennms.org/index.php/Mailing_List_FAQ opennms-discuss mailing list To *unsubscribe* or change your subscription options, see the bottom of this page: https://lists.sourceforge.net/lists/listinfo/opennms-discuss

------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in
Real-Time with Splunk. Collect, index and harness all the fast moving IT data
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business
insights. http://p.sf.net/sfu/splunk-dev2dev 
_______________________________________________
Please read the OpenNMS Mailing List FAQ:
http://www.opennms.org/index.php/Mailing_List_FAQ

opennms-discuss mailing list

To *unsubscribe* or change your subscription options, see the bottom of this page:
https://lists.sourceforge.net/lists/listinfo/opennms-discuss
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Custom graph not displaying innode resource graphs

mritorto
i see the  nodes just no data and I see snmp information but not the stats or  the stas being graphed.

what logs can I look at so I can email them to the group

marc

On Mon, Feb 28, 2011 at 4:43 PM, Guarini, Jeremy [via OpenNMS] <[hidden email]> wrote:
As I've found, just because snmpwalk works doesn't mean that the node will have snmp data (look for snmp timeout and 64 counters for reference). What do your logs show? Have you changed the logging levels to, say, debug?

Are nodes discovered and just not showing any snmp data?
Have you correctly added the snmp community string for the node and/or IP range in OpenNMS?

--
Jeremy Guarini


From: mritorto <[hidden email]<mailto:[hidden email]>>
Reply-To: opennms-discuss <[hidden email]<mailto:[hidden email]>>
Date: Mon, 28 Feb 2011 13:22:51 -0800
To: opennms-discuss <[hidden email]<mailto:[hidden email]>>
Subject: Re: [opennms-discuss] Custom graph not displaying innode resource graphs

I don't see it there snmp walk works

Sent from my Verizon Wireless BlackBerry

________________________________
From: "Guarini, Jeremy [via OpenNMS]" <[hidden email]</user/SendEmail.jtp?type=node&node=6074984&i=0>>
Date: Mon, 28 Feb 2011 13:21:30 -0800 (PST)
To: mritorto<[hidden email]</user/SendEmail.jtp?type=node&node=6074984&i=1>>
Subject: Re: Custom graph not displaying innode resource graphs

What is the custom graph? Cpu and memory stuff is already there by defaul
IIRC.


--
Jeremy Guarini






On 2/28/11 12:59 PM, "mritorto" <[hidden email]</user/SendEmail.jtp?type=node&node=6074979&i=0&by-user=t>> wrote:

>okay any response to my question.
>
>I am trying to get each node wheither its linux or windows to start
>graphing
>its cpu and memory information under the resource graphs.
>
>The opennms server is running centos 5.5
>
>I have 3 centos servers and 100 windows 2003 servers.
>
>What logs can I sent you guys.
>
>I am running opennms version 1.85
>
>
>For the windows boxes I am mostly running just the builtin  windows snmp
>agents.
>
>I do have snmp-informant running on one box as a test.  I have the same
>results.
>
>Only the contact information and location show up in terms of snmp
>information.
>
>I really want to pull all of the cpu, memory stats and disk stats using
>snmp.
>
>Please help me!!!1
>
>I am under a deadline
>
>
>Thanks in advance
>
>marc
>
>--
>View this message in context:
>http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-re<http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-re?by-user=t&by-user=t>
>source-graphs-tp6067133p6074881.html

>Sent from the OpenNMS - discuss mailing list archive at Nabble.com.
>
>--------------------------------------------------------------------------
>----
>Free Software Download: Index, Search & Analyze Logs and other IT data in
>Real-Time with Splunk. Collect, index and harness all the fast moving IT
>data
>generated by your applications, servers and devices whether physical,
>virtual
>or in the cloud. Deliver compliance at lower cost and gain new business
>insights. http://p.sf.net/sfu/splunk-dev2dev
>_______________________________________________
>Please read the OpenNMS Mailing List FAQ:
>http://www.opennms.org/index.php/Mailing_List_FAQ
>
>opennms-discuss mailing list
>
>To *unsubscribe* or change your subscription options, see the bottom of
>this page:
>https://lists.sourceforge.net/lists/listinfo/opennms-discuss
------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in
Real-Time with Splunk. Collect, index and harness all the fast moving IT data
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business
insights. http://p.sf.net/sfu/splunk-dev2dev
_______________________________________________
Please read the OpenNMS Mailing List FAQ:
http://www.opennms.org/index.php/Mailing_List_FAQ

opennms-discuss mailing list

To *unsubscribe* or change your subscription options, see the bottom of this page:
https://lists.sourceforge.net/lists/listinfo/opennms-discuss


________________________________
If you reply to this email, your message will be added to the discussion below:
http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-resource-graphs-tp6067133p6074979.html<http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-resource-graphs-tp6067133p6074979.html?by-user=t>

________________________________
View this message in context: Re: Custom graph not displaying innode resource graphs<http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-resource-graphs-tp6067133p6074984.html>
Sent from the OpenNMS - discuss mailing list archive<http://opennms.530661.n2.nabble.com/OpenNMS-discuss-f529575.html> at Nabble.com.
------------------------------------------------------------------------------ Free Software Download: Index, Search & Analyze Logs and other IT data in Real-Time with Splunk. Collect, index and harness all the fast moving IT data generated by your applications, servers and devices whether physical, virtual or in the cloud. Deliver compliance at lower cost and gain new business insights. http://p.sf.net/sfu/splunk-dev2dev _______________________________________________ Please read the OpenNMS Mailing List FAQ: http://www.opennms.org/index.php/Mailing_List_FAQ opennms-discuss mailing list To *unsubscribe* or change your subscription options, see the bottom of this page: https://lists.sourceforge.net/lists/listinfo/opennms-discuss

------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in
Real-Time with Splunk. Collect, index and harness all the fast moving IT data
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business
insights. http://p.sf.net/sfu/splunk-dev2dev 
_______________________________________________
Please read the OpenNMS Mailing List FAQ:
http://www.opennms.org/index.php/Mailing_List_FAQ

opennms-discuss mailing list

To *unsubscribe* or change your subscription options, see the bottom of this page:
https://lists.sourceforge.net/lists/listinfo/opennms-discuss



If you reply to this email, your message will be added to the discussion below:
http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-resource-graphs-tp6067133p6075075.html
To unsubscribe from Custom graph not displaying in node resource graphs, click here.

Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Custom graph not displaying innode resource graphs

Guarini, Jeremy
Are the snmp directories being created under <opnnms install>/share/rrd/snmp ?

I think poller.log capsd.log collectd.log are ones that you should be looking at for errors. I take it you haven't seen any errors in any of of the logs since you haven't noted them yet.


--
Jeremy Guarini


From: mritorto <[hidden email]<mailto:[hidden email]>>
Reply-To: opennms-discuss <[hidden email]<mailto:[hidden email]>>
Date: Mon, 28 Feb 2011 13:46:40 -0800
To: opennms-discuss <[hidden email]<mailto:[hidden email]>>
Subject: Re: [opennms-discuss] Custom graph not displaying innode resource graphs

i see the  nodes just no data and I see snmp information but not the stats or  the stas being graphed.

what logs can I look at so I can email them to the group

marc

On Mon, Feb 28, 2011 at 4:43 PM, Guarini, Jeremy [via OpenNMS] <[hidden email]</user/SendEmail.jtp?type=node&node=6075086&i=0>> wrote:
As I've found, just because snmpwalk works doesn't mean that the node will have snmp data (look for snmp timeout and 64 counters for reference). What do your logs show? Have you changed the logging levels to, say, debug?

Are nodes discovered and just not showing any snmp data?
Have you correctly added the snmp community string for the node and/or IP range in OpenNMS?

--
Jeremy Guarini


From: mritorto <[hidden email]<http://user/SendEmail.jtp?type=node&node=6075075&i=0><mailto:[hidden email]<http://user/SendEmail.jtp?type=node&node=6075075&i=1>>>
Reply-To: opennms-discuss <[hidden email]<http://user/SendEmail.jtp?type=node&node=6075075&i=2><mailto:[hidden email]<http://user/SendEmail.jtp?type=node&node=6075075&i=3>>>
Date: Mon, 28 Feb 2011 13:22:51 -0800
To: opennms-discuss <[hidden email]<http://user/SendEmail.jtp?type=node&node=6075075&i=4><mailto:[hidden email]<http://user/SendEmail.jtp?type=node&node=6075075&i=5>>>
Subject: Re: [opennms-discuss] Custom graph not displaying innode resource graphs

I don't see it there snmp walk works

Sent from my Verizon Wireless BlackBerry

________________________________
From: "Guarini, Jeremy [via OpenNMS]" <[hidden email]</user/SendEmail.jtp?type=node&node=6074984&i=0>>
Date: Mon, 28 Feb 2011 13:21:30 -0800 (PST)
To: mritorto<[hidden email]</user/SendEmail.jtp?type=node&node=6074984&i=1>>
Subject: Re: Custom graph not displaying innode resource graphs

What is the custom graph? Cpu and memory stuff is already there by defaul
IIRC.


--
Jeremy Guarini






On 2/28/11 12:59 PM, "mritorto" <[hidden email]</user/SendEmail.jtp?type=node&node=6074979&i=0&by-user=t>> wrote:

>okay any response to my question.
>
>I am trying to get each node wheither its linux or windows to start
>graphing
>its cpu and memory information under the resource graphs.
>
>The opennms server is running centos 5.5
>
>I have 3 centos servers and 100 windows 2003 servers.
>
>What logs can I sent you guys.
>
>I am running opennms version 1.85
>
>
>For the windows boxes I am mostly running just the builtin  windows snmp
>agents.
>
>I do have snmp-informant running on one box as a test.  I have the same
>results.
>
>Only the contact information and location show up in terms of snmp
>information.
>
>I really want to pull all of the cpu, memory stats and disk stats using
>snmp.
>
>Please help me!!!1
>
>I am under a deadline
>
>
>Thanks in advance
>
>marc
>
>--
>View this message in context:
>http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-re<http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-re?by-user=t&by-user=t><http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-re?by-user=t&by-user=t<http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-re?by-user=t&by-user=t&by-user=t&by-user=t>>
>source-graphs-tp6067133p6074881.html

>Sent from the OpenNMS - discuss mailing list archive at Nabble.com.
>
>--------------------------------------------------------------------------
>----
>Free Software Download: Index, Search & Analyze Logs and other IT data in
>Real-Time with Splunk. Collect, index and harness all the fast moving IT
>data
>generated by your applications, servers and devices whether physical,
>virtual
>or in the cloud. Deliver compliance at lower cost and gain new business
>insights. http://p.sf.net/sfu/splunk-dev2dev
>_______________________________________________
>Please read the OpenNMS Mailing List FAQ:
>http://www.opennms.org/index.php/Mailing_List_FAQ
>
>opennms-discuss mailing list
>
>To *unsubscribe* or change your subscription options, see the bottom of
>this page:
>https://lists.sourceforge.net/lists/listinfo/opennms-discuss
------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in
Real-Time with Splunk. Collect, index and harness all the fast moving IT data
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business
insights. http://p.sf.net/sfu/splunk-dev2dev
_______________________________________________
Please read the OpenNMS Mailing List FAQ:
http://www.opennms.org/index.php/Mailing_List_FAQ

opennms-discuss mailing list

To *unsubscribe* or change your subscription options, see the bottom of this page:
https://lists.sourceforge.net/lists/listinfo/opennms-discuss


________________________________
If you reply to this email, your message will be added to the discussion below:
http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-resource-graphs-tp6067133p6074979.html<http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-resource-graphs-tp6067133p6074979.html?by-user=t&by-user=t><http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-resource-graphs-tp6067133p6074979.html?by-user=t<http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-resource-graphs-tp6067133p6074979.html?by-user=t&by-user=t&by-user=t>>

________________________________
View this message in context: Re: Custom graph not displaying innode resource graphs<http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-resource-graphs-tp6067133p6074984.html<http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-resource-graphs-tp6067133p6074984.html?by-user=t&by-user=t>>
Sent from the OpenNMS - discuss mailing list archive<http://opennms.530661.n2.nabble.com/OpenNMS-discuss-f529575.html<http://opennms.530661.n2.nabble.com/OpenNMS-discuss-f529575.html?by-user=t&by-user=t>> at Nabble.com.
------------------------------------------------------------------------------ Free Software Download: Index, Search & Analyze Logs and other IT data in Real-Time with Splunk. Collect, index and harness all the fast moving IT data generated by your applications, servers and devices whether physical, virtual or in the cloud. Deliver compliance at lower cost and gain new business insights. http://p.sf.net/sfu/splunk-dev2dev _______________________________________________ Please read the OpenNMS Mailing List FAQ: http://www.opennms.org/index.php/Mailing_List_FAQ opennms-discuss mailing list To *unsubscribe* or change your subscription options, see the bottom of this page: https://lists.sourceforge.net/lists/listinfo/opennms-discuss

------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in
Real-Time with Splunk. Collect, index and harness all the fast moving IT data
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business
insights. http://p.sf.net/sfu/splunk-dev2dev
_______________________________________________
Please read the OpenNMS Mailing List FAQ:
http://www.opennms.org/index.php/Mailing_List_FAQ

opennms-discuss mailing list

To *unsubscribe* or change your subscription options, see the bottom of this page:
https://lists.sourceforge.net/lists/listinfo/opennms-discuss


________________________________
If you reply to this email, your message will be added to the discussion below:
http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-resource-graphs-tp6067133p6075075.html<http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-resource-graphs-tp6067133p6075075.html?by-user=t>


________________________________
View this message in context: Re: Custom graph not displaying innode resource graphs<http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-resource-graphs-tp6067133p6075086.html>
Sent from the OpenNMS - discuss mailing list archive<http://opennms.530661.n2.nabble.com/OpenNMS-discuss-f529575.html> at Nabble.com.
------------------------------------------------------------------------------ Free Software Download: Index, Search & Analyze Logs and other IT data in Real-Time with Splunk. Collect, index and harness all the fast moving IT data generated by your applications, servers and devices whether physical, virtual or in the cloud. Deliver compliance at lower cost and gain new business insights. http://p.sf.net/sfu/splunk-dev2dev _______________________________________________ Please read the OpenNMS Mailing List FAQ: http://www.opennms.org/index.php/Mailing_List_FAQ opennms-discuss mailing list To *unsubscribe* or change your subscription options, see the bottom of this page: https://lists.sourceforge.net/lists/listinfo/opennms-discuss

------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in
Real-Time with Splunk. Collect, index and harness all the fast moving IT data
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business
insights. http://p.sf.net/sfu/splunk-dev2dev 
_______________________________________________
Please read the OpenNMS Mailing List FAQ:
http://www.opennms.org/index.php/Mailing_List_FAQ

opennms-discuss mailing list

To *unsubscribe* or change your subscription options, see the bottom of this page:
https://lists.sourceforge.net/lists/listinfo/opennms-discuss
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Custom graph not displaying innode resource graphs

Guarini, Jeremy
In reply to this post by mritorto
You may want to take a look at <opennms install>/ etc/snmp-config.xml

And verify that you see the correct community string, version, IP(s) in there

--
Jeremy Guarini


From: mritorto <[hidden email]<mailto:[hidden email]>>
Reply-To: opennms-discuss <[hidden email]<mailto:[hidden email]>>
Date: Mon, 28 Feb 2011 13:46:40 -0800
To: opennms-discuss <[hidden email]<mailto:[hidden email]>>
Subject: Re: [opennms-discuss] Custom graph not displaying innode resource graphs

i see the  nodes just no data and I see snmp information but not the stats or  the stas being graphed.

what logs can I look at so I can email them to the group

marc

On Mon, Feb 28, 2011 at 4:43 PM, Guarini, Jeremy [via OpenNMS] <[hidden email]</user/SendEmail.jtp?type=node&node=6075086&i=0>> wrote:
As I've found, just because snmpwalk works doesn't mean that the node will have snmp data (look for snmp timeout and 64 counters for reference). What do your logs show? Have you changed the logging levels to, say, debug?

Are nodes discovered and just not showing any snmp data?
Have you correctly added the snmp community string for the node and/or IP range in OpenNMS?

--
Jeremy Guarini


From: mritorto <[hidden email]<http://user/SendEmail.jtp?type=node&node=6075075&i=0><mailto:[hidden email]<http://user/SendEmail.jtp?type=node&node=6075075&i=1>>>
Reply-To: opennms-discuss <[hidden email]<http://user/SendEmail.jtp?type=node&node=6075075&i=2><mailto:[hidden email]<http://user/SendEmail.jtp?type=node&node=6075075&i=3>>>
Date: Mon, 28 Feb 2011 13:22:51 -0800
To: opennms-discuss <[hidden email]<http://user/SendEmail.jtp?type=node&node=6075075&i=4><mailto:[hidden email]<http://user/SendEmail.jtp?type=node&node=6075075&i=5>>>
Subject: Re: [opennms-discuss] Custom graph not displaying innode resource graphs

I don't see it there snmp walk works

Sent from my Verizon Wireless BlackBerry

________________________________
From: "Guarini, Jeremy [via OpenNMS]" <[hidden email]</user/SendEmail.jtp?type=node&node=6074984&i=0>>
Date: Mon, 28 Feb 2011 13:21:30 -0800 (PST)
To: mritorto<[hidden email]</user/SendEmail.jtp?type=node&node=6074984&i=1>>
Subject: Re: Custom graph not displaying innode resource graphs

What is the custom graph? Cpu and memory stuff is already there by defaul
IIRC.


--
Jeremy Guarini






On 2/28/11 12:59 PM, "mritorto" <[hidden email]</user/SendEmail.jtp?type=node&node=6074979&i=0&by-user=t>> wrote:

>okay any response to my question.
>
>I am trying to get each node wheither its linux or windows to start
>graphing
>its cpu and memory information under the resource graphs.
>
>The opennms server is running centos 5.5
>
>I have 3 centos servers and 100 windows 2003 servers.
>
>What logs can I sent you guys.
>
>I am running opennms version 1.85
>
>
>For the windows boxes I am mostly running just the builtin  windows snmp
>agents.
>
>I do have snmp-informant running on one box as a test.  I have the same
>results.
>
>Only the contact information and location show up in terms of snmp
>information.
>
>I really want to pull all of the cpu, memory stats and disk stats using
>snmp.
>
>Please help me!!!1
>
>I am under a deadline
>
>
>Thanks in advance
>
>marc
>
>--
>View this message in context:
>http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-re<http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-re?by-user=t&by-user=t><http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-re?by-user=t&by-user=t<http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-re?by-user=t&by-user=t&by-user=t&by-user=t>>
>source-graphs-tp6067133p6074881.html

>Sent from the OpenNMS - discuss mailing list archive at Nabble.com.
>
>--------------------------------------------------------------------------
>----
>Free Software Download: Index, Search & Analyze Logs and other IT data in
>Real-Time with Splunk. Collect, index and harness all the fast moving IT
>data
>generated by your applications, servers and devices whether physical,
>virtual
>or in the cloud. Deliver compliance at lower cost and gain new business
>insights. http://p.sf.net/sfu/splunk-dev2dev
>_______________________________________________
>Please read the OpenNMS Mailing List FAQ:
>http://www.opennms.org/index.php/Mailing_List_FAQ
>
>opennms-discuss mailing list
>
>To *unsubscribe* or change your subscription options, see the bottom of
>this page:
>https://lists.sourceforge.net/lists/listinfo/opennms-discuss
------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in
Real-Time with Splunk. Collect, index and harness all the fast moving IT data
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business
insights. http://p.sf.net/sfu/splunk-dev2dev
_______________________________________________
Please read the OpenNMS Mailing List FAQ:
http://www.opennms.org/index.php/Mailing_List_FAQ

opennms-discuss mailing list

To *unsubscribe* or change your subscription options, see the bottom of this page:
https://lists.sourceforge.net/lists/listinfo/opennms-discuss


________________________________
If you reply to this email, your message will be added to the discussion below:
http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-resource-graphs-tp6067133p6074979.html<http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-resource-graphs-tp6067133p6074979.html?by-user=t&by-user=t><http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-resource-graphs-tp6067133p6074979.html?by-user=t<http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-resource-graphs-tp6067133p6074979.html?by-user=t&by-user=t&by-user=t>>

________________________________
View this message in context: Re: Custom graph not displaying innode resource graphs<http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-resource-graphs-tp6067133p6074984.html<http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-resource-graphs-tp6067133p6074984.html?by-user=t&by-user=t>>
Sent from the OpenNMS - discuss mailing list archive<http://opennms.530661.n2.nabble.com/OpenNMS-discuss-f529575.html<http://opennms.530661.n2.nabble.com/OpenNMS-discuss-f529575.html?by-user=t&by-user=t>> at Nabble.com.
------------------------------------------------------------------------------ Free Software Download: Index, Search & Analyze Logs and other IT data in Real-Time with Splunk. Collect, index and harness all the fast moving IT data generated by your applications, servers and devices whether physical, virtual or in the cloud. Deliver compliance at lower cost and gain new business insights. http://p.sf.net/sfu/splunk-dev2dev _______________________________________________ Please read the OpenNMS Mailing List FAQ: http://www.opennms.org/index.php/Mailing_List_FAQ opennms-discuss mailing list To *unsubscribe* or change your subscription options, see the bottom of this page: https://lists.sourceforge.net/lists/listinfo/opennms-discuss

------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in
Real-Time with Splunk. Collect, index and harness all the fast moving IT data
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business
insights. http://p.sf.net/sfu/splunk-dev2dev
_______________________________________________
Please read the OpenNMS Mailing List FAQ:
http://www.opennms.org/index.php/Mailing_List_FAQ

opennms-discuss mailing list

To *unsubscribe* or change your subscription options, see the bottom of this page:
https://lists.sourceforge.net/lists/listinfo/opennms-discuss


________________________________
If you reply to this email, your message will be added to the discussion below:
http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-resource-graphs-tp6067133p6075075.html<http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-resource-graphs-tp6067133p6075075.html?by-user=t>


________________________________
View this message in context: Re: Custom graph not displaying innode resource graphs<http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-resource-graphs-tp6067133p6075086.html>
Sent from the OpenNMS - discuss mailing list archive<http://opennms.530661.n2.nabble.com/OpenNMS-discuss-f529575.html> at Nabble.com.
------------------------------------------------------------------------------ Free Software Download: Index, Search & Analyze Logs and other IT data in Real-Time with Splunk. Collect, index and harness all the fast moving IT data generated by your applications, servers and devices whether physical, virtual or in the cloud. Deliver compliance at lower cost and gain new business insights. http://p.sf.net/sfu/splunk-dev2dev _______________________________________________ Please read the OpenNMS Mailing List FAQ: http://www.opennms.org/index.php/Mailing_List_FAQ opennms-discuss mailing list To *unsubscribe* or change your subscription options, see the bottom of this page: https://lists.sourceforge.net/lists/listinfo/opennms-discuss

------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in
Real-Time with Splunk. Collect, index and harness all the fast moving IT data
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business
insights. http://p.sf.net/sfu/splunk-dev2dev 
_______________________________________________
Please read the OpenNMS Mailing List FAQ:
http://www.opennms.org/index.php/Mailing_List_FAQ

opennms-discuss mailing list

To *unsubscribe* or change your subscription options, see the bottom of this page:
https://lists.sourceforge.net/lists/listinfo/opennms-discuss
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Custom graph not displaying innode resource graphs

Les Mikesell
In reply to this post by mritorto
On 2/28/2011 2:59 PM, mritorto wrote:

> okay any response to my question.
>
> I am trying to get each node wheither its linux or windows to start graphing
> its cpu and memory information under the resource graphs.
>
> The opennms server is running centos 5.5
>
> I have 3 centos servers and 100 windows 2003 servers.
>
> What logs can I sent you guys.
>
> I am running opennms version 1.85
>
>
> For the windows boxes I am mostly running just the builtin  windows snmp
> agents.
>
> I do have snmp-informant running on one box as a test.  I have the same
> results.
>
> Only the contact information and location show up in terms of snmp
> information.
 >
>
> I really want to pull all of the cpu, memory stats and disk stats using
> snmp.

The Centos servers may have a very limited view defined in the default
snmpd.conf.  Try changing to something like:
view    systemview    included   .1
and you will need to add specific disk entries for each mount point you
want to graph (there are comments in the default snmpd.conf about this).
  I think the default windows 2003 server snmp config should "just work"
as long as you set the community string to match and enable access from
other systems  (and you wouldn't have the contact info otherwise).  I
have sometimes had trouble getting a server to pick up snmp info if the
initial community string wasn't right.  Deleting and rediscovering a
node would always fix it immediately, and it would usually fix itself
overnight anyway.

--
   Les Mikesell
    [hidden email]



------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in
Real-Time with Splunk. Collect, index and harness all the fast moving IT data
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business
insights. http://p.sf.net/sfu/splunk-dev2dev 
_______________________________________________
Please read the OpenNMS Mailing List FAQ:
http://www.opennms.org/index.php/Mailing_List_FAQ

opennms-discuss mailing list

To *unsubscribe* or change your subscription options, see the bottom of this page:
https://lists.sourceforge.net/lists/listinfo/opennms-discuss
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Custom graph not displaying innode resource graphs

mritorto
In reply to this post by Guarini, Jeremy
yes there is info under that directory

On Mon, Feb 28, 2011 at 5:02 PM, Guarini, Jeremy [via OpenNMS] <[hidden email]> wrote:
Are the snmp directories being created under <opnnms install>/share/rrd/snmp ?

I think poller.log capsd.log collectd.log are ones that you should be looking at for errors. I take it you haven't seen any errors in any of of the logs since you haven't noted them yet.


--
Jeremy Guarini


From: mritorto <[hidden email]<mailto:[hidden email]>>
Reply-To: opennms-discuss <[hidden email]<mailto:[hidden email]>>
Date: Mon, 28 Feb 2011 13:46:40 -0800
To: opennms-discuss <[hidden email]<mailto:[hidden email]>>
Subject: Re: [opennms-discuss] Custom graph not displaying innode resource graphs

i see the  nodes just no data and I see snmp information but not the stats or  the stas being graphed.

what logs can I look at so I can email them to the group

marc

On Mon, Feb 28, 2011 at 4:43 PM, Guarini, Jeremy [via OpenNMS] <[hidden email]</user/SendEmail.jtp?type=node&node=6075086&i=0>> wrote:
As I've found, just because snmpwalk works doesn't mean that the node will have snmp data (look for snmp timeout and 64 counters for reference). What do your logs show? Have you changed the logging levels to, say, debug?

Are nodes discovered and just not showing any snmp data?
Have you correctly added the snmp community string for the node and/or IP range in OpenNMS?

--
Jeremy Guarini


From: mritorto <[hidden email]<http://user/SendEmail.jtp?type=node&node=6075075&i=0><mailto:[hidden email]<http://user/SendEmail.jtp?type=node&node=6075075&i=1>>>
Reply-To: opennms-discuss <[hidden email]<http://user/SendEmail.jtp?type=node&node=6075075&i=2><mailto:[hidden email]<http://user/SendEmail.jtp?type=node&node=6075075&i=3>>>
Date: Mon, 28 Feb 2011 13:22:51 -0800
To: opennms-discuss <[hidden email]<http://user/SendEmail.jtp?type=node&node=6075075&i=4><mailto:[hidden email]<http://user/SendEmail.jtp?type=node&node=6075075&i=5>>>
Subject: Re: [opennms-discuss] Custom graph not displaying innode resource graphs

I don't see it there snmp walk works

Sent from my Verizon Wireless BlackBerry

________________________________
From: "Guarini, Jeremy [via OpenNMS]" <[hidden email]</user/SendEmail.jtp?type=node&node=6074984&i=0>>
Date: Mon, 28 Feb 2011 13:21:30 -0800 (PST)
To: mritorto<[hidden email]</user/SendEmail.jtp?type=node&node=6074984&i=1>>
Subject: Re: Custom graph not displaying innode resource graphs

What is the custom graph? Cpu and memory stuff is already there by defaul
IIRC.


--
Jeremy Guarini






On 2/28/11 12:59 PM, "mritorto" <[hidden email]</user/SendEmail.jtp?type=node&node=6074979&i=0&by-user=t>> wrote:

>okay any response to my question.
>
>I am trying to get each node wheither its linux or windows to start
>graphing
>its cpu and memory information under the resource graphs.
>
>The opennms server is running centos 5.5
>
>I have 3 centos servers and 100 windows 2003 servers.
>
>What logs can I sent you guys.
>
>I am running opennms version 1.85
>
>
>For the windows boxes I am mostly running just the builtin  windows snmp
>agents.
>
>I do have snmp-informant running on one box as a test.  I have the same
>results.
>
>Only the contact information and location show up in terms of snmp
>information.
>
>I really want to pull all of the cpu, memory stats and disk stats using
>snmp.
>
>Please help me!!!1
>
>I am under a deadline
>
>
>Thanks in advance
>
>marc
>
>--
>View this message in context:
>http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-re<http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-re?by-user=t&by-user=t><http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-re?by-user=t&by-user=t<http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-re?by-user=t&by-user=t&by-user=t&by-user=t>>

>source-graphs-tp6067133p6074881.html

>Sent from the OpenNMS - discuss mailing list archive at Nabble.com.
>
>--------------------------------------------------------------------------
>----
>Free Software Download: Index, Search & Analyze Logs and other IT data in
>Real-Time with Splunk. Collect, index and harness all the fast moving IT
>data
>generated by your applications, servers and devices whether physical,
>virtual
>or in the cloud. Deliver compliance at lower cost and gain new business
>insights. http://p.sf.net/sfu/splunk-dev2dev
>_______________________________________________
>Please read the OpenNMS Mailing List FAQ:
>http://www.opennms.org/index.php/Mailing_List_FAQ
>
>opennms-discuss mailing list
>
>To *unsubscribe* or change your subscription options, see the bottom of
>this page:
>https://lists.sourceforge.net/lists/listinfo/opennms-discuss
------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in
Real-Time with Splunk. Collect, index and harness all the fast moving IT data
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business
insights. http://p.sf.net/sfu/splunk-dev2dev
_______________________________________________
Please read the OpenNMS Mailing List FAQ:
http://www.opennms.org/index.php/Mailing_List_FAQ

opennms-discuss mailing list

To *unsubscribe* or change your subscription options, see the bottom of this page:
https://lists.sourceforge.net/lists/listinfo/opennms-discuss


________________________________
If you reply to this email, your message will be added to the discussion below:
http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-resource-graphs-tp6067133p6074979.html<http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-resource-graphs-tp6067133p6074979.html?by-user=t&by-user=t><http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-resource-graphs-tp6067133p6074979.html?by-user=t<http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-resource-graphs-tp6067133p6074979.html?by-user=t&by-user=t&by-user=t>>

________________________________
View this message in context: Re: Custom graph not displaying innode resource graphs<http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-resource-graphs-tp6067133p6074984.html<http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-resource-graphs-tp6067133p6074984.html?by-user=t&by-user=t>>
Sent from the OpenNMS - discuss mailing list archive<http://opennms.530661.n2.nabble.com/OpenNMS-discuss-f529575.html<http://opennms.530661.n2.nabble.com/OpenNMS-discuss-f529575.html?by-user=t&by-user=t>> at Nabble.com.
------------------------------------------------------------------------------ Free Software Download: Index, Search & Analyze Logs and other IT data in Real-Time with Splunk. Collect, index and harness all the fast moving IT data generated by your applications, servers and devices whether physical, virtual or in the cloud. Deliver compliance at lower cost and gain new business insights. http://p.sf.net/sfu/splunk-dev2dev _______________________________________________ Please read the OpenNMS Mailing List FAQ: http://www.opennms.org/index.php/Mailing_List_FAQ opennms-discuss mailing list To *unsubscribe* or change your subscription options, see the bottom of this page: https://lists.sourceforge.net/lists/listinfo/opennms-discuss

------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in
Real-Time with Splunk. Collect, index and harness all the fast moving IT data
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business
insights. http://p.sf.net/sfu/splunk-dev2dev
_______________________________________________
Please read the OpenNMS Mailing List FAQ:
http://www.opennms.org/index.php/Mailing_List_FAQ

opennms-discuss mailing list

To *unsubscribe* or change your subscription options, see the bottom of this page:
https://lists.sourceforge.net/lists/listinfo/opennms-discuss


________________________________
If you reply to this email, your message will be added to the discussion below:
http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-resource-graphs-tp6067133p6075075.html<http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-resource-graphs-tp6067133p6075075.html?by-user=t>


________________________________
View this message in context: Re: Custom graph not displaying innode resource graphs<http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-resource-graphs-tp6067133p6075086.html>
Sent from the OpenNMS - discuss mailing list archive<http://opennms.530661.n2.nabble.com/OpenNMS-discuss-f529575.html> at Nabble.com.
------------------------------------------------------------------------------ Free Software Download: Index, Search & Analyze Logs and other IT data in Real-Time with Splunk. Collect, index and harness all the fast moving IT data generated by your applications, servers and devices whether physical, virtual or in the cloud. Deliver compliance at lower cost and gain new business insights. http://p.sf.net/sfu/splunk-dev2dev _______________________________________________ Please read the OpenNMS Mailing List FAQ: http://www.opennms.org/index.php/Mailing_List_FAQ opennms-discuss mailing list To *unsubscribe* or change your subscription options, see the bottom of this page: https://lists.sourceforge.net/lists/listinfo/opennms-discuss

------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in
Real-Time with Splunk. Collect, index and harness all the fast moving IT data
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business
insights. http://p.sf.net/sfu/splunk-dev2dev 
_______________________________________________
Please read the OpenNMS Mailing List FAQ:
http://www.opennms.org/index.php/Mailing_List_FAQ

opennms-discuss mailing list

To *unsubscribe* or change your subscription options, see the bottom of this page:
https://lists.sourceforge.net/lists/listinfo/opennms-discuss



If you reply to this email, your message will be added to the discussion below:
http://opennms.530661.n2.nabble.com/Custom-graph-not-displaying-in-node-resource-graphs-tp6067133p6075164.html
To unsubscribe from Custom graph not displaying in node resource graphs, click here.

Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Custom graph not displaying innode resource graphs

Les Mikesell
On 2/28/2011 4:14 PM, mritorto wrote:
> yes there is info under that directory

So what do you see under a node's 'resource graphs' link - just icmp
response time?

--
   Les Mikesell
    [hidden email]

------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in
Real-Time with Splunk. Collect, index and harness all the fast moving IT data
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business
insights. http://p.sf.net/sfu/splunk-dev2dev 
_______________________________________________
Please read the OpenNMS Mailing List FAQ:
http://www.opennms.org/index.php/Mailing_List_FAQ

opennms-discuss mailing list

To *unsubscribe* or change your subscription options, see the bottom of this page:
https://lists.sourceforge.net/lists/listinfo/opennms-discuss
123
Loading...