You can subscribe to this list here.
| 2006 |
Jan
|
Feb
(38) |
Mar
(131) |
Apr
(5) |
May
(23) |
Jun
(9) |
Jul
(9) |
Aug
(9) |
Sep
(24) |
Oct
(28) |
Nov
(33) |
Dec
(4) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2007 |
Jan
(45) |
Feb
(22) |
Mar
(52) |
Apr
(17) |
May
(4) |
Jun
(68) |
Jul
(12) |
Aug
(25) |
Sep
(63) |
Oct
(45) |
Nov
(25) |
Dec
(76) |
| 2008 |
Jan
(34) |
Feb
(53) |
Mar
(30) |
Apr
(42) |
May
(50) |
Jun
(45) |
Jul
(21) |
Aug
(36) |
Sep
(33) |
Oct
(28) |
Nov
(32) |
Dec
(16) |
| 2009 |
Jan
(35) |
Feb
(36) |
Mar
(32) |
Apr
(24) |
May
(26) |
Jun
(15) |
Jul
(17) |
Aug
(30) |
Sep
(14) |
Oct
(18) |
Nov
(26) |
Dec
(22) |
| 2010 |
Jan
(11) |
Feb
(33) |
Mar
(35) |
Apr
(16) |
May
(11) |
Jun
(4) |
Jul
(36) |
Aug
(3) |
Sep
(14) |
Oct
(5) |
Nov
(10) |
Dec
(12) |
| 2011 |
Jan
(7) |
Feb
(31) |
Mar
(13) |
Apr
(14) |
May
(18) |
Jun
(25) |
Jul
(6) |
Aug
(23) |
Sep
(20) |
Oct
(18) |
Nov
(4) |
Dec
(9) |
| 2012 |
Jan
(32) |
Feb
(4) |
Mar
(15) |
Apr
(3) |
May
(8) |
Jun
(9) |
Jul
(6) |
Aug
(6) |
Sep
|
Oct
(14) |
Nov
(22) |
Dec
(4) |
| 2013 |
Jan
(16) |
Feb
(11) |
Mar
(1) |
Apr
|
May
(1) |
Jun
(6) |
Jul
|
Aug
(5) |
Sep
(3) |
Oct
|
Nov
|
Dec
(1) |
| 2014 |
Jan
|
Feb
|
Mar
|
Apr
(5) |
May
(3) |
Jun
|
Jul
(1) |
Aug
(1) |
Sep
(2) |
Oct
(5) |
Nov
(5) |
Dec
|
| 2015 |
Jan
|
Feb
|
Mar
(3) |
Apr
(4) |
May
|
Jun
(1) |
Jul
(19) |
Aug
(4) |
Sep
(13) |
Oct
(3) |
Nov
(8) |
Dec
(4) |
| 2016 |
Jan
(18) |
Feb
(1) |
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
(9) |
Aug
(1) |
Sep
(1) |
Oct
|
Nov
|
Dec
(7) |
| 2017 |
Jan
(5) |
Feb
|
Mar
(3) |
Apr
(7) |
May
|
Jun
|
Jul
|
Aug
|
Sep
(3) |
Oct
|
Nov
(1) |
Dec
|
| 2018 |
Jan
|
Feb
|
Mar
(4) |
Apr
(2) |
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2019 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
| 2020 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
(3) |
Sep
(5) |
Oct
|
Nov
|
Dec
|
| 2025 |
Jan
|
Feb
|
Mar
(2) |
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Johan S. <joh...@de...> - 2010-06-10 09:06:16
|
Hi.
I am creating a test for VMFS utilization in our ESX template. It consists on a client-side script that is executed by snmpd reporting volume label size and free space on three different OID:s.
It works fine if I use snmpwalk from the command-line on the devmon server, and it also works fine for 4 out of our 11 ESX hosts. One the other 7 I get the following error:
Received SNMP response with error code
error status: noSuchName
index 1 (OID: 1.3.6.1.4.1.6876.99999.2.3.101)
SNMPv2c_Session (remote host: "xxx.xxx.xxx.xxx" [xxx.xxx.xxx.xxx].161)
community: "public"
request ID: 339225935
PDU bufsize: 8000 bytes
timeout: 10s
retries: 10
backoff: 1)
at /usr/local/devmon/modules/dm_snmp.pm line 546
Does anyone have any idea why devmon gets this error for some of the hosts? All the hosts have the same configuration on the client side, and all of them work if I use snmpwalk.
Snmpd.conf:
dlmod cmaX /usr/lib64/libcmaX64.so
proxy -v 1 -c public udp:127.0.0.1:171 .1.3.6.1.4.1.6876
rocommunity public
exec .1.3.6.1.4.1.6876.99999.2.1 vmfslabel /usr/local/delta/vmfs_snmp.sh label
exec .1.3.6.1.4.1.6876.99999.2.2 vmfssize /usr/local/delta/vmfs_snmp.sh size
exec .1.3.6.1.4.1.6876.99999.2.3 vmfsfree /usr/local/delta/vmfs_snmp.sh free
vmfs_snmp.sh:
#!/bin/bash
OPTION=$1
VOLUMES=`ls /vmfs/volumes/ | grep -v :`
if [ $OPTION = "size" ]; then
for i in $VOLUMES;do
VMFS=`/usr/sbin/vmkfstools -P /vmfs/volumes/$i`
SIZE=`echo "$VMFS" | grep Capacity | awk '{print $2}'`
echo $SIZE
done
fi
if [ $OPTION = "free" ]; then
for i in $VOLUMES;do
VMFS=`/usr/sbin/vmkfstools -P /vmfs/volumes/$i`
FREE=`echo "$VMFS" | grep Capacity | awk '{print $8}'`
echo $FREE
done
fi
if [ $OPTION = "label" ]; then
for i in $VOLUMES;do
VMFS=`/usr/sbin/vmkfstools -P /vmfs/volumes/$i`
LABEL=`echo "$VMFS" | grep label | awk '{print $6}'`
echo $LABEL
done
fi
Best Regards,
Johan
|
|
From: Martin F. <mar...@de...> - 2010-05-21 18:59:28
|
Thanks Buchan for explanations
On Wed, 19 May 2010, Buchan Milne wrote:
>>> Have you tried snmpwalk? E.g.:
>>>
>>> snmpwalk -v2c -c public ip.add.re.ss 1.3.6.1.4.1.674.10892.1.600.12.1.5
>>
>> Ok course :-)
>>
>> snmpwalk -v2c -c secret hostname 1.3.6.1.4.1.674.10892.1.600.12
>> Cannot find module (BASEBRDD_MIB-MIB): At line 0 in (none)
>> MIB-Dell-10892::powerSupplyTable = No Such Object available on this agent
>> at this OID
>>
>
> So, no data for this test (which is to validate whether both power supplies
> are working ...).
Ok, thanks i will check it ..
>
>> Does that mean, that my machine send no data for powerSupply ?
>
> Yes. You may want to disable this test (by listing all the other tests for
> this template that do apply in the tests option for the DEVMON tag in bb-
> hosts).
Yep, done now :-)
>> snmpwalk -v2c -c public wof-webserv2 1.3.6.1.4.1.674.10892.1.600|grep power
>> Cannot find module (BASEBRDD_MIB-MIB): At line 0 in (none)
>> MIB-Dell-10892::powerUsageChassisIndex.1.1 = INTEGER: 1
>> MIB-Dell-10892::powerUsageIndex.1.1 = INTEGER: 1
>> MIB-Dell-10892::powerUsageStateCapabilities.1.1 = INTEGER: 0
>> MIB-Dell-10892::powerUsageStateSettings.1.1 = INTEGER: enabled(2)
>> MIB-Dell-10892::powerUsageStatus.1.1 = INTEGER: ok(3)
>> MIB-Dell-10892::powerUsageEntityName.1.1 = STRING: "System power
>> consumption data" MIB-Dell-10892::powerUsageCumulativeWattage.1.1 =
>> INTEGER: 167876
>>
>> and what does that means ?
>>
>> Cannot find module (BASEBRDD_MIB-MIB): At line 0 in (none)
>>
>> The mib sholud be present
>>
>> grep BASEBRDD_MIB-MIB /usr/share/snmp/mibs/*
>> /usr/share/snmp/mibs/dellserv.mib:BASEBRDD_MIB-MIB DEFINITIONS ::= BEGIN
>
> Not sure, seems like a problem with the MIB, or your MIBLIST, or something
> else. This is one for the dell list.
i will contact them ..
>
>>> Check all the OIDs for any tests that are clear, devmon (currently) gives
>>> up if one "walk" fails, so some tests may be clear, even though there is
>>> data for it, because other data was not available.
>>
>> Is that rather a target problem (maybe asking on the linux-poweredge-list,
>> how i can get this informations for powerSupply?) or my devmon/snmp Server
>> configuration-problem ?
>
> The hardware may not support this, the information may be somewhere else etc.,
> but it is not a problem with your devmon server. It could be that a new
> template should be created. I don't currently have any Dell PowerEdge servers
> on which to test this template, and the ones I did use before were quite old
> at the time (6650, 8450, 1750, 2650).
Ok, i've got newer Models in production 1950 2950 m600,m610 etc ...
If i'm more familiar to build my own templates, i will report it
Thanks & Cheers,
Martin
|
|
From: Mario V. <mar...@gm...> - 2010-05-20 13:14:09
|
Hi,
I've noticed that the FCS-Err and RCV-Err in the CISCO "sh int counters
errors" command are not strictly available via snmp (I stand to be corrected
though).
The output of {ifInError} and {ifOutError} succesfully display the number of
errors on the ports since boot, but I'd like to be alerted when either
increases (even by 1) as I can then go and check the ports on the related
switch.
I've used the {ifInEps} and {ifoutEps} built-in transform which should
calculate if there is a difference between checks and alert me if a
difference exists. At the moment, I am not receiving an alert when errors
increase the numbers and am not sure why.
Is there a better way to do this or can anyone see where I've gone wrong in
the settings below:
*transforms (built-in):*
# Do delta transform on all error counters
ifInEps : DELTA : {ifInErrors}
ifOutEps : DELTA : {ifOutErrors}
*thresholds:*
ifInEps : yellow : >=1 : {ifName}{ifAliasBox} - High input
error ({ifInEps})
ifInEps : red : >=10 : {ifName}{ifAliasBox} - Very high
input error ({ifInEps})
ifOutEps : yellow : >=1 : {ifName}{ifAliasBox} - High output
error ({ifOutEps})
ifOutEps : red : >=10 : {ifName}{ifAliasBox} - Very high
output error ({ifOutEps})
*message:*
Input error: yellow={ifInEps.thresh:yellow}, red={ifInEps.thresh:red}
Output error: yellow={ifOutEps.thresh:yellow}, red={ifOutEps.thresh:red}
TABLE:
Ifc name|Errors in|Error rate in|Error load in|Errors out|Error rate
out|Error load out
{ifName}{ifAliasBox}|{ifInErrors}|{ifInEps.color}{ifInEps}|{ifInErrPct.color}{ifInErrPct}%{ifInErrPct.errors}|{ifOutErrors}|{ifOutEps.color}{ifOutEps}|{ifOutErrPct.color}{ifOutErrPct}%{ifOutErrPct.errors}
Thanks,
Mario
|
|
From: Jon D. <jd...@us...> - 2010-05-19 20:59:08
|
> 1. Re: create new template question (Buchan Milne)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Fri, 5 Mar 2010 22:44:35 +0100
> From: Buchan Milne <bg...@st...>
> Subject: Re: [Devmon] create new template question
> To: dev...@li...
> Cc: Jon Dustin <jd...@us...>
> Message-ID: <201...@st...>
> Content-Type: Text/Plain; charset="iso-8859-1"
>
> On Sunday, 28 February 2010 00:18:19 Jon Dustin wrote:
>> Greetings -
>>
>> I am trying to develop a new template for Cisco Wireless Controllers, and
>> running into a snag with devmon's features. Here is a quick snippet of the
>> SNMP conversations I am trying to analyze:
>>
>> (names of wireless access points connected to controller)
>> snmpwalk -v2c -cpublic 10.13.1.4 .1.3.6.1.4.1.14179.2.2.1.1.3
>> SNMPv2-SMI::enterprises.14179.2.2.1.1.3.0.35.235.10.79.64 = STRING:
>> "wap-1st-2" SNMPv2-SMI::enterprises.14179.2.2.1.1.3.0.37.132.253.194.144 =
>> STRING: "wap-2nd-5"
>> SNMPv2-SMI::enterprises.14179.2.2.1.1.3.0.37.132.253.200.192 = STRING:
>> "wap-2nd-4"
>>
>> (number of clients connected to each WAP - by radio)
>> snmpwalk -v2c -cpublic 10.13.1.4 .1.3.6.1.4.1.14179.2.2.2.1.15
>> SNMPv2-SMI::enterprises.14179.2.2.2.1.15.0.35.235.10.79.64.0 = Counter32: 4
>> SNMPv2-SMI::enterprises.14179.2.2.2.1.15.0.35.235.10.79.64.1 = Counter32: 1
>> SNMPv2-SMI::enterprises.14179.2.2.2.1.15.0.37.132.253.194.144.0 =
>> Counter32: 7
>> SNMPv2-SMI::enterprises.14179.2.2.2.1.15.0.37.132.253.194.144.1 =
>> Counter32: 3
>> SNMPv2-SMI::enterprises.14179.2.2.2.1.15.0.37.132.253.200.192.0 =
>> Counter32: 1
>> SNMPv2-SMI::enterprises.14179.2.2.2.1.15.0.37.132.253.200.192.1 =
>> Counter32: 1
>>
>> In the above examples, 0.35.235.10.79.64 represents a single WAP (the
>> repeater part of the oid identifies the MAC address in decimal). In the
>> above example, the WAP labeled as wap-1st-2 has a "repeater OID" of
>> 0.35.235.10.79.64.0, which corresponds to a MAC address of
>> 00:23:eb:0a:4f:40 (not particularly germane to this question, but I
>> thought I would include the example).
>>
>> Each WAP has two radios, which lead to two different results (.0 and .1).
>>
>> What I would *like* to have is a nice devmon table similar to "regular"
>> switches, with the WAP name in the 1st column, the .0 client count in
>> column 2, and .1 count in column 3:
>>
>> WAP Name 2.4GHz clients 5 GHz clients
>> wap-1st-2 4 1
>> wap-2nd-5 7 3
>> wap-2nd-4 1 1
>>
>> But I believe I have found a limitation with the devmon template
>> capabilities. I can easily get the names of the WAPs, and even the
>> repeater section of the OID (via a transform of INDEX). But I have tried
>> the CHAIN, INDEX, and REGSUB transform, and nothing is able to produce the
>> results I seek.
>>
>> I need to have a "devmon transforms" that can give me a new oid like
>> follows:
>>
>> wapClients24 = {.1.3.6.1.4.1.14179.2.2.2.1.15.}{wapRepeaterOid}.0
>> wapClients24 = {.1.3.6.1.4.1.14179.2.2.2.1.15.}{wapRepeaterOid}.1
>>
>> In all my reading of the devmon documentation, I cannot think of any scheme
>> to do this type of operation.
>>
>> Please accept my apologies for such a verbose post, I hope the details
>> might help you understand my situation. Any help would be appreciated.
>>
>
> I think it should be possible, and we just installed a Cisco Wireless
> Controller before I went on leave, so I will look at this as soon as I am
> back
> in the office ...
Hello Buchan -
Have you made any progress at supporting the Cisco WLC with devmon? I have written a perl script to poll the required SNMP mibs, and combine the results, but I'm running into a wall trying to learn how Xymon expects to see "devmon-like data" submitted. I like how you are sending an entire repeater-mib worth of results, and I want to accomplish the same thing.
So - IF you have not been able to get devmon working for the above request, can you send me a pointer about how to send data like devmon? I'm hoping to use the "auto-rrd" tools that devmon/xymon seem to provide, rather than being forced into another NCV script.
Thanks for anything you can pass along.
--
Jon Dustin - Network Specialist
University of Southern Maine
Portland, ME 207-780-4152
|
|
From: Buchan M. <bg...@st...> - 2010-05-19 13:37:55
|
On Wednesday, 19 May 2010 10:19:01 Martin Flemming wrote: > Thanks for responds .. > > On Wed, 19 May 2010, Buchan Milne wrote: > > On Wednesday, 19 May 2010 08:59:47 mar...@de... wrote: > >> Hi ! > >> > >> I use the dell-poweredge-template for monitoring , > >> and the temp- and raid-test are working well, > >> but for fans and power i've got following error > >> > >> fans: > >> Missing repeater data for primary OID coolingDeviceIndex > >> > >> Power supplies: > >> clear Missing repeater data for primary OID powerSupplyIndex > >> > >> > >> Devmon version 0.3.1-beta1 running > >> > >> But they will recognize with snmptranslate > >> > >> snmptranslate -m +MIB-Dell-10892 -IR -On powerSupplyStatus > >> .1.3.6.1.4.1.674.10892.1.600.12.1.5 > >> snmptranslate -m +MIB-Dell-10892 -IR -On coolingDeviceStatus > >> .1.3.6.1.4.1.674.10892.1.700.12.1.5 > > > > This just indicates that you have the MIB file, and the MIB file has OIDs > > for powerSupplyStatus. > > > > It does not show whether there is any data available on your host for > > these OIDs. > > > > Have you tried snmpwalk? E.g.: > > > > snmpwalk -v2c -c public ip.add.re.ss 1.3.6.1.4.1.674.10892.1.600.12.1.5 > > Ok course :-) > > snmpwalk -v2c -c secret hostname 1.3.6.1.4.1.674.10892.1.600.12 > Cannot find module (BASEBRDD_MIB-MIB): At line 0 in (none) > MIB-Dell-10892::powerSupplyTable = No Such Object available on this agent > at this OID > So, no data for this test (which is to validate whether both power supplies are working ...). > Does that mean, that my machine send no data for powerSupply ? Yes. You may want to disable this test (by listing all the other tests for this template that do apply in the tests option for the DEVMON tag in bb- hosts). > .. but only for powerUsage While it may be worthwhile adding, I was more concerned about whether a power supply needed to be replaced or not ... > > snmpwalk -v2c -c public wof-webserv2 1.3.6.1.4.1.674.10892.1.600|grep power > Cannot find module (BASEBRDD_MIB-MIB): At line 0 in (none) > MIB-Dell-10892::powerUsageChassisIndex.1.1 = INTEGER: 1 > MIB-Dell-10892::powerUsageIndex.1.1 = INTEGER: 1 > MIB-Dell-10892::powerUsageStateCapabilities.1.1 = INTEGER: 0 > MIB-Dell-10892::powerUsageStateSettings.1.1 = INTEGER: enabled(2) > MIB-Dell-10892::powerUsageStatus.1.1 = INTEGER: ok(3) > MIB-Dell-10892::powerUsageEntityName.1.1 = STRING: "System power > consumption data" MIB-Dell-10892::powerUsageCumulativeWattage.1.1 = > INTEGER: 167876 > > and what does that means ? > > Cannot find module (BASEBRDD_MIB-MIB): At line 0 in (none) > > The mib sholud be present > > grep BASEBRDD_MIB-MIB /usr/share/snmp/mibs/* > /usr/share/snmp/mibs/dellserv.mib:BASEBRDD_MIB-MIB DEFINITIONS ::= BEGIN Not sure, seems like a problem with the MIB, or your MIBLIST, or something else. This is one for the dell list. > > Check all the OIDs for any tests that are clear, devmon (currently) gives > > up if one "walk" fails, so some tests may be clear, even though there is > > data for it, because other data was not available. > > Is that rather a target problem (maybe asking on the linux-poweredge-list, > how i can get this informations for powerSupply?) or my devmon/snmp Server > configuration-problem ? The hardware may not support this, the information may be somewhere else etc., but it is not a problem with your devmon server. It could be that a new template should be created. I don't currently have any Dell PowerEdge servers on which to test this template, and the ones I did use before were quite old at the time (6650, 8450, 1750, 2650). Regards, Buchan |
|
From: Martin F. <mar...@de...> - 2010-05-19 09:19:10
|
Thanks for responds .. On Wed, 19 May 2010, Buchan Milne wrote: > On Wednesday, 19 May 2010 08:59:47 mar...@de... wrote: >> Hi ! >> >> I use the dell-poweredge-template for monitoring , >> and the temp- and raid-test are working well, >> but for fans and power i've got following error >> >> fans: >> Missing repeater data for primary OID coolingDeviceIndex >> >> Power supplies: >> clear Missing repeater data for primary OID powerSupplyIndex >> >> >> Devmon version 0.3.1-beta1 running >> >> But they will recognize with snmptranslate >> >> snmptranslate -m +MIB-Dell-10892 -IR -On powerSupplyStatus >> .1.3.6.1.4.1.674.10892.1.600.12.1.5 >> snmptranslate -m +MIB-Dell-10892 -IR -On coolingDeviceStatus >> .1.3.6.1.4.1.674.10892.1.700.12.1.5 >> > > This just indicates that you have the MIB file, and the MIB file has OIDs for > powerSupplyStatus. > > It does not show whether there is any data available on your host for these > OIDs. > > Have you tried snmpwalk? E.g.: > > snmpwalk -v2c -c public ip.add.re.ss 1.3.6.1.4.1.674.10892.1.600.12.1.5 Ok course :-) snmpwalk -v2c -c secret hostname 1.3.6.1.4.1.674.10892.1.600.12 Cannot find module (BASEBRDD_MIB-MIB): At line 0 in (none) MIB-Dell-10892::powerSupplyTable = No Such Object available on this agent at this OID Does that mean, that my machine send no data for powerSupply ? .. but only for powerUsage snmpwalk -v2c -c public wof-webserv2 1.3.6.1.4.1.674.10892.1.600|grep power Cannot find module (BASEBRDD_MIB-MIB): At line 0 in (none) MIB-Dell-10892::powerUsageChassisIndex.1.1 = INTEGER: 1 MIB-Dell-10892::powerUsageIndex.1.1 = INTEGER: 1 MIB-Dell-10892::powerUsageStateCapabilities.1.1 = INTEGER: 0 MIB-Dell-10892::powerUsageStateSettings.1.1 = INTEGER: enabled(2) MIB-Dell-10892::powerUsageStatus.1.1 = INTEGER: ok(3) MIB-Dell-10892::powerUsageEntityName.1.1 = STRING: "System power consumption data" MIB-Dell-10892::powerUsageCumulativeWattage.1.1 = INTEGER: 167876 and what does that means ? Cannot find module (BASEBRDD_MIB-MIB): At line 0 in (none) The mib sholud be present grep BASEBRDD_MIB-MIB /usr/share/snmp/mibs/* /usr/share/snmp/mibs/dellserv.mib:BASEBRDD_MIB-MIB DEFINITIONS ::= BEGIN > Check all the OIDs for any tests that are clear, devmon (currently) gives up > if one "walk" fails, so some tests may be clear, even though there is data for > it, because other data was not available. Is that rather a target problem (maybe asking on the linux-poweredge-list, how i can get this informations for powerSupply?) or my devmon/snmp Server configuration-problem ? thanks martin |
|
From: Buchan M. <bg...@st...> - 2010-05-19 08:53:14
|
On Wednesday, 19 May 2010 08:59:47 mar...@de... wrote: > Hi ! > > I use the dell-poweredge-template for monitoring , > and the temp- and raid-test are working well, > but for fans and power i've got following error > > fans: > Missing repeater data for primary OID coolingDeviceIndex > > Power supplies: > clear Missing repeater data for primary OID powerSupplyIndex > > > Devmon version 0.3.1-beta1 running > > But they will recognize with snmptranslate > > snmptranslate -m +MIB-Dell-10892 -IR -On powerSupplyStatus > .1.3.6.1.4.1.674.10892.1.600.12.1.5 > snmptranslate -m +MIB-Dell-10892 -IR -On coolingDeviceStatus > .1.3.6.1.4.1.674.10892.1.700.12.1.5 > This just indicates that you have the MIB file, and the MIB file has OIDs for powerSupplyStatus. It does not show whether there is any data available on your host for these OIDs. Have you tried snmpwalk? E.g.: snmpwalk -v2c -c public ip.add.re.ss 1.3.6.1.4.1.674.10892.1.600.12.1.5 Check all the OIDs for any tests that are clear, devmon (currently) gives up if one "walk" fails, so some tests may be clear, even though there is data for it, because other data was not available. Regards, Buchan |
|
From: Johan S. <joh...@de...> - 2010-05-19 08:41:50
|
A start would be to check the devmon log to see which OID:s fail. If three OIDs fail, it will skip the rest of the test.
/Johan
-----Original Message-----
From: mar...@de... [mailto:mar...@de...]
Sent: den 19 maj 2010 10:00
To: dev...@li...
Subject: [Devmon] poweredge template
Hi !
I use the dell-poweredge-template for monitoring ,
and the temp- and raid-test are working well,
but for fans and power i've got following error
fans:
Missing repeater data for primary OID coolingDeviceIndex
Power supplies:
clear Missing repeater data for primary OID powerSupplyIndex
Devmon version 0.3.1-beta1 running
But they will recognize with snmptranslate
snmptranslate -m +MIB-Dell-10892 -IR -On powerSupplyStatus
.1.3.6.1.4.1.674.10892.1.600.12.1.5
snmptranslate -m +MIB-Dell-10892 -IR -On coolingDeviceStatus
.1.3.6.1.4.1.674.10892.1.700.12.1.5
Got somebody any idea what's missing in my enviroment ?
thanks & cheers
Martin
------------------------------------------------------------------------------
_______________________________________________
Devmon-support mailing list
Dev...@li...
https://lists.sourceforge.net/lists/listinfo/devmon-support
|
|
From: <mar...@de...> - 2010-05-19 07:59:57
|
Hi !
I use the dell-poweredge-template for monitoring ,
and the temp- and raid-test are working well,
but for fans and power i've got following error
fans:
Missing repeater data for primary OID coolingDeviceIndex
Power supplies:
clear Missing repeater data for primary OID powerSupplyIndex
Devmon version 0.3.1-beta1 running
But they will recognize with snmptranslate
snmptranslate -m +MIB-Dell-10892 -IR -On powerSupplyStatus
.1.3.6.1.4.1.674.10892.1.600.12.1.5
snmptranslate -m +MIB-Dell-10892 -IR -On coolingDeviceStatus
.1.3.6.1.4.1.674.10892.1.700.12.1.5
Got somebody any idea what's missing in my enviroment ?
thanks & cheers
Martin
|
|
From: Mario V. <mar...@gm...> - 2010-05-13 07:23:24
|
Hi again, Just to send a quick update in case someone looks at this thread in the future. The devmon monitoring is now working on my CISCO 4948, oddly enough using the CISCO-4500 templates from http://devmon.svn.sourceforge.net/viewvc/devmon/trunk/templates/ (I tried to modify the 6509 template to get it working). I'm not really sure why it wasn't working before, but after my monitoring system needed a reload it picked up the device with no problems. defintely using the 4500 template as I had removed the 650x from the tree temporarily. Thanks for the help. Mario On 28 April 2010 10:31, Mario Valetti <mar...@gm...> wrote: > Hi Buchan, > > I just wanted to check if you had found the time to commit your 4948 > template? No rush, I'd like to make sure I hadn't missed it. > > > Separately, do you (or anyone else) know what is different about the SNMP > on the 4948's? I've tried using MRTG as well to graph the bandwidth useage > on this device but it's giving me problems too, whereas it works fine on the > other platforms I have. > > > Regards, > Mario > > On 7 April 2010 15:42, Buchan Milne <bg...@st...> wrote: > >> On Wednesday, 7 April 2010 13:21:52 Mario Valetti wrote: >> > Hi I'm having two separate issues getting DEVMON to work correctly with >> two >> > router/switch models. >> > >> > The first is a CISCO 4948, I have no particular template for it, >> however I >> > believe it should pickup and work with the CISCO-4500 template. Has >> anyone >> > got a specific template for the CISCO 4948 series? >> > >> > The errors are: >> > >> > No SNMP data found for ifInDiscards on <hostname> >> > [10-04-07@12:46:55] No SNMP data found for ifOutOctets on <hostname> >> > [10-04-07@12:46:55] No SNMP data found for ifName on <hostname> >> > [10-04-07@12:46:55] No SNMP data found for ifOutDiscards on <hostname> >> > [10-04-07@12:46:55] No SNMP data found for ifInOctets on <hostname> >> > [10-04-07@12:46:55] No SNMP data found for ifAlias on <hostname> >> > [10-04-07@12:46:55] Missing repeater data for ifName for if_dsc msg >> > >> > In XYMON, the columns flash purple with the "Missing Repeater Value" >> > message. >> > >> > >> > Does this mean I need to try create a template specific for the 4948? >> >> The 4500 template may not have been the best place to start. I have a 4948 >> template, I will try and commit it soon. I think I actually started this >> one >> from 6509 template. >> >> >> > The second is a set of CISCO 2800's. >> >> 2801 or 2811? >> >> > >> > The Values seem to appear fine within XYMON, and DEVMON is green with >> > figures updating. However, no graphs are drawn in neither of the >> columns. >> > No devmon graph files exist under the ~/data/rrd/<hostname> directory. >> > Directory and file permissions are the same as other switches and >> routers >> > which work fine. >> > >> > I haven't been able to work out what I'm missing. >> >> I think the 2800 template may be missing the rrd option to the TABLE line >> in >> the messages file. Compare with e.g. 7206 or 6509 template. >> >> I have a template for whichever of 2801 or 2811 was missing, but I added a >> vpn >> test, since we are mostly using them as site-to-site VPNs. >> >> > Of the two, the 4948 is more important to me. >> >> Regards, >> Buchan >> > > |
|
From: Buchan M. <bg...@st...> - 2010-05-04 10:17:02
|
On Tuesday, 4 May 2010 07:12:57 Stef Coene wrote: > On Monday 15 March 2010, you wrote: > > On Friday, 12 March 2010 23:24:09 Stef Coene wrote: > > > On Thursday 11 March 2010, you wrote: > > > > On Thursday 11 March 2010, you wrote: > > > > > Really, someone who can reproduce this within a regular interval > > > > > needs to test the current svn version. > > > > > > > > I deployed devmon to 3 xymon servers and all stay green. More > > > > installations are planned. > > > > I will keep you informed if it turns purple. > > > > > > I just got a devmon going purple. The dm check is also purple. > > > This is version 0.3.1-beta1. > > > What can I do to help debugging? > > > > Supply me the log file from the start of the last successful polling > > period, and the info on the dm test when it was purple (should show how > > many forks were active etc.). > > I just had an other devmon going purple. > > dm page: > > Mon May 3 22:51:03 2010 > > devmon, version 0.3.1-beta1 > > Node name: igcbmonprd02 > Node number: 0 > Process ID: 12125 > > Cycle time: 60 > Dead time: 180 > > Polled devices: 4 > Polled tests: 4 > Avg tests/node: n/a > # clear msgs: 0 > > SNMP test time: 14 > Test logic time: 2 > BB msg xfer time: 0 > This poll period: 16 > > Avg poll time: 15.2 seconds > > Poll time averaged over 5 poll cycles. > > > Last 2 log line: > [10-05-03@22:51:02] No SNMP data found for sensorStatus2 on igcbsswutw01 > [10-05-03@22:51:02] No SNMP data found for sensorStatus2 on igcbsswutw02 > > > I will not restart devmon for a few hours, so if you want more information > or if I can do something to get more information, let me know. Hmm, is this 0.3.1-beta1, or did you use the version in svn? The changes I made in svn a few weeks ago should either: 1)Fix the problem 2)Provide more info in the logs in case a problem occurs 3)Provide more info on the status page on the individual pollers, which may also help It looks like you are using 0.3.1-beta1. Could you try from svn? Regards, Buchan |
|
From: Stef C. <ste...@do...> - 2010-05-04 06:36:06
|
On Monday 15 March 2010, you wrote: > On Friday, 12 March 2010 23:24:09 Stef Coene wrote: > > On Thursday 11 March 2010, you wrote: > > > On Thursday 11 March 2010, you wrote: > > > > Really, someone who can reproduce this within a regular interval > > > > needs to test the current svn version. > > > > > > I deployed devmon to 3 xymon servers and all stay green. More > > > installations are planned. > > > I will keep you informed if it turns purple. > > > > I just got a devmon going purple. The dm check is also purple. > > This is version 0.3.1-beta1. > > What can I do to help debugging? > > Supply me the log file from the start of the last successful polling > period, and the info on the dm test when it was purple (should show how > many forks were active etc.). I just had an other devmon going purple. dm page: Mon May 3 22:51:03 2010 devmon, version 0.3.1-beta1 Node name: igcbmonprd02 Node number: 0 Process ID: 12125 Cycle time: 60 Dead time: 180 Polled devices: 4 Polled tests: 4 Avg tests/node: n/a # clear msgs: 0 SNMP test time: 14 Test logic time: 2 BB msg xfer time: 0 This poll period: 16 Avg poll time: 15.2 seconds Poll time averaged over 5 poll cycles. Last 2 log line: [10-05-03@22:51:02] No SNMP data found for sensorStatus2 on igcbsswutw01 [10-05-03@22:51:02] No SNMP data found for sensorStatus2 on igcbsswutw02 I will not restart devmon for a few hours, so if you want more information or if I can do something to get more information, let me know. Stef |
|
From: <kri...@th...> - 2010-04-30 08:42:32
|
Hi All, Question: I'm in progres of creating a template for a storage device based on the Hitachi Management tool. (When finished I will share off course.) Little background: We have multiple physical nodes which have multiple virtual volumes. Now we would like to monitor the storage usage of each volume seperatly, but for some bizar reason, the snmprequest bounces back to the management station and does so gives all volumes instead of only the one were asking for. I'm trying to filter this out with a regular expression or such, but for that I need the hostname of the unit where devmon is testing on. (SysDescription or so gives back the wrong value.) Is there a way to pass the hostname used for the acual snmpwalk/snmpget in a exceptions file? Thanks Kind regards, Met vriendelijke groet, Kristof Van Den Ouweland |
|
From: <lor...@pn...> - 2010-04-28 09:49:30
|
Ok,
choosing just some interfaces for the switches (instead of all - more than
200 for the Cisco 4500s) has stopped the crashing issue.
Now, though, I have a few chronical purples - all of which used to be green
earlier on (when devmon was crashing at every cycle).
cpu disk fans if_stat info memory msgs
DUBBBRIIA yellow - green green green green -
DUBBBRIIB yellow - green purple green green -
DUBVG01 green - green green green green -
DUBVG02 purple - green green green purple -
dubdmz_sw01 green - purple green green green -
Any pointers at how to get this addressed?
Thanks
Loris
Loris
Serena/PFPC/DUB/P
NC To
dev...@li...
26/04/2010 14:26 t
cc
Subject
Devmon consistently crashing
(Document link: Loris Serena)
Hi,
I am running devmon, version 0.3.1-beta1 on an ESX VM CentOS 5.4 - talking
to a BB 1.9i server on the same box.
I am (trying to monitor) a few routers and switches and one NetApp filer
[bb@odyssey devmon]$ grep DEVMON ~bb/bb/etc/bb-hosts
x.y.z.1 compton #
DEVMON:tests(if_load,status,volume),except(volume;dfFileSys;na:.*.snapshot)
x.y.z.2 DUBBBRIIA # DEVMON:model(cisco;4500)
x.y.z.3 DUBBBRIIB # DEVMON:model(cisco;4500)
x.y.z.4 dubdmz_sw01 # DEVMON
x.y.z.5 I-DUBL-C01 #
DEVMON:tests(cpu,if_col,if_dsc,if_err,if_load,if_stat,power,serial)
x.y.z.6 I-DUBL-C02 # DEVMON
x.y.z.7 DUBVG01 # DEVMON
x.y.z.8 DUBVG02 # DEVMON
[bb@odyssey devmon]$
They all got discovered ok with the --readbbhosts option, except DUBVG01
and DUBVG02 (both 2811 routers).
Then, by running /usr/local/devmon/devmon, it all seems to start ok,
[bb@odyssey devmon]$ ps -ef | grep devmon
bb 8910 1 5 14:15 ? 00:00:01 devmon[master]
bb 8912 8910 0 14:15 ? 00:00:00 devmon
bb 8913 8910 2 14:15 ? 00:00:00 devmon
bb 8914 8910 0 14:15 ? 00:00:00 devmon
bb 8915 8910 0 14:15 ? 00:00:00 devmon
bb 8916 8910 0 14:15 ? 00:00:00 devmon
bb 8917 8910 2 14:15 ? 00:00:00 devmon
bb 8918 8910 0 14:15 ? 00:00:00 devmon
bb 8919 8910 0 14:15 ? 00:00:00 devmon
bb 8920 8910 0 14:15 ? 00:00:00 devmon
bb 8921 8910 0 14:15 ? 00:00:00 devmon
but all I see in the log file is
[10-04-26@13:40:32] ---Initilizing devmon...
[10-04-26@13:40:32] Node 0 reporting to localhost
[10-04-26@13:40:32] Running under process id: 19360
[10-04-26@13:40:32] Entering poll loop
[10-04-26@13:50:32] ---Initilizing devmon...
[10-04-26@13:50:32] Node 0 reporting to localhost
[10-04-26@13:50:32] Running under process id: 25080
[10-04-26@13:50:32] Entering poll loop
[10-04-26@13:55:31] ---Initilizing devmon...
[10-04-26@13:55:31] Node 0 reporting to localhost
[10-04-26@13:55:31] Running under process id: 28265
[10-04-26@13:55:31] Entering poll loop
[10-04-26@14:00:31] ---Initilizing devmon...
[10-04-26@14:00:31] Node 0 reporting to localhost
[10-04-26@14:00:31] Running under process id: 31631
[10-04-26@14:00:31] Entering poll loop
[10-04-26@14:05:32] ---Initilizing devmon...
[10-04-26@14:05:32] Node 0 reporting to localhost
[10-04-26@14:05:32] Running under process id: 1873
[10-04-26@14:05:32] Entering poll loop
[10-04-26@14:10:32] ---Initilizing devmon...
[10-04-26@14:10:32] Node 0 reporting to localhost
[10-04-26@14:10:32] Running under process id: 5703
[10-04-26@14:10:32] Entering poll loop
[10-04-26@14:15:31] ---Initilizing devmon...
[10-04-26@14:15:31] Node 0 reporting to localhost
[10-04-26@14:15:31] Running under process id: 8910
[10-04-26@14:15:31] Entering poll loop
[10-04-26@14:20:31] ---Initilizing devmon...
[10-04-26@14:20:31] Node 0 reporting to localhost
[10-04-26@14:20:31] Running under process id: 11400
[10-04-26@14:20:31] Entering poll loop
[bb@odyssey devmon]$
After a while, devmopn crashes, leaving just one orphan child process,
which takes a hell of a lot of CPU time.
[bb@odyssey devmon]$ ps -ef | grep devmon
bb 11411 1 56 14:20 ? 00:01:37 devmon
bb 13086 24440 0 14:23 pts/1 00:00:00 grep devmon
[bb@odyssey devmon]$ top
last pid: 13189; load avg: 0.99, 0.63, 0.46; up 0+16:15:43
14:23:45
108 processes: 2 running, 106 sleeping
CPU states: 37.6% user, 0.0% nice, 13.4% system, 48.9% idle, 0.0% iowait
Kernel: 22 ctxsw, 952 intr, 1 newproc
Memory: 776M used, 1235M free, 158M buffers, 394M cached
Swap: 5760M free
This terminal can only display 25 processes
PID USERNAME THR PRI NICE SIZE RES SHR STATE TIME CPU COMMAND
11411 bb 1 25 0 48M 14M 464K run 1:57 94.00% devmon
2018 bb 1 15 0 3988K 464K 300K sleep 1:06 1.00% bbd
18656 bb 3 15 0 26M 2608K 776K sleep 1:13 0.00%
routermon
6 root 1 10 -5 0K 0K 0K sleep 0:54 0.00% events/0
398 root 1 10 -5 0K 0K 0K sleep 0:38 0.00%
kjournald
1880 mysql 13 15 0 191M 26M 4444K sleep 0:25 0.00% mysqld
167 root 1 15 0 0K 0K 0K sleep 0:13 0.00% pdflush
15959 pg10326 1 15 0 88M 1968K 1200K sleep 0:04 0.00% sshd
2 root 1 -99 -5 0K 0K 0K sleep 0:02 0.00%
migration/0
4 root 1 -99 -5 0K 0K 0K sleep 0:02 0.00%
migration/1
12372 apache 1 15 0 177M 3104K 1208K sleep 0:01 0.00% httpd
8160 apache 1 15 0 177M 3096K 1212K sleep 0:01 0.00% httpd
18553 pg10326 1 15 0 89M 1960K 1200K sleep 0:01 0.00% sshd
1552 root 1 18 0 11M 384K 256K sleep 0:01 0.00%
irqbalance
3336 apache 1 15 0 177M 3092K 1204K sleep 0:01 0.00% httpd
3 root 1 34 19 0K 0K 0K sleep 0:01 0.00%
ksoftirqd/0
1782 root 1 15 0 61M 2332K 812K sleep 0:00 0.00% sendmail
7794 apache 1 15 0 177M 3088K 1204K sleep 0:00 0.00% httpd
1 root 1 15 0 10M 704K 592K sleep 0:00 0.00% init
11092 apache 1 15 0 177M 3076K 1204K sleep 0:00 0.00% httpd
456 root 1 15 -4 12M 784K 400K sleep 0:00 0.00% udevd
1913 root 1 16 0 62M 1212K 652K sleep 0:00 0.00% sshd
31 root 1 10 -5 0K 0K 0K sleep 0:00 0.00%
kblockd/1
30 root 1 10 -5 0K 0K 0K sleep 0:00 0.00%
kblockd/0
Any ideas about how to get this addressed?
Loris
|
|
From: Mario V. <mar...@gm...> - 2010-04-28 08:32:07
|
Hi Buchan, I just wanted to check if you had found the time to commit your 4948 template? No rush, I'd like to make sure I hadn't missed it. Separately, do you (or anyone else) know what is different about the SNMP on the 4948's? I've tried using MRTG as well to graph the bandwidth useage on this device but it's giving me problems too, whereas it works fine on the other platforms I have. Regards, Mario On 7 April 2010 15:42, Buchan Milne <bg...@st...> wrote: > On Wednesday, 7 April 2010 13:21:52 Mario Valetti wrote: > > Hi I'm having two separate issues getting DEVMON to work correctly with > two > > router/switch models. > > > > The first is a CISCO 4948, I have no particular template for it, however > I > > believe it should pickup and work with the CISCO-4500 template. Has > anyone > > got a specific template for the CISCO 4948 series? > > > > The errors are: > > > > No SNMP data found for ifInDiscards on <hostname> > > [10-04-07@12:46:55] No SNMP data found for ifOutOctets on <hostname> > > [10-04-07@12:46:55] No SNMP data found for ifName on <hostname> > > [10-04-07@12:46:55] No SNMP data found for ifOutDiscards on <hostname> > > [10-04-07@12:46:55] No SNMP data found for ifInOctets on <hostname> > > [10-04-07@12:46:55] No SNMP data found for ifAlias on <hostname> > > [10-04-07@12:46:55] Missing repeater data for ifName for if_dsc msg > > > > In XYMON, the columns flash purple with the "Missing Repeater Value" > > message. > > > > > > Does this mean I need to try create a template specific for the 4948? > > The 4500 template may not have been the best place to start. I have a 4948 > template, I will try and commit it soon. I think I actually started this > one > from 6509 template. > > > > The second is a set of CISCO 2800's. > > 2801 or 2811? > > > > > The Values seem to appear fine within XYMON, and DEVMON is green with > > figures updating. However, no graphs are drawn in neither of the > columns. > > No devmon graph files exist under the ~/data/rrd/<hostname> directory. > > Directory and file permissions are the same as other switches and routers > > which work fine. > > > > I haven't been able to work out what I'm missing. > > I think the 2800 template may be missing the rrd option to the TABLE line > in > the messages file. Compare with e.g. 7206 or 6509 template. > > I have a template for whichever of 2801 or 2811 was missing, but I added a > vpn > test, since we are mostly using them as site-to-site VPNs. > > > Of the two, the 4948 is more important to me. > > Regards, > Buchan > |
|
From: <lor...@pn...> - 2010-04-26 13:26:41
|
Hi,
I am running devmon, version 0.3.1-beta1 on an ESX VM CentOS 5.4 - talking
to a BB 1.9i server on the same box.
I am (trying to monitor) a few routers and switches and one NetApp filer
[bb@odyssey devmon]$ grep DEVMON ~bb/bb/etc/bb-hosts
x.y.z.1 compton #
DEVMON:tests(if_load,status,volume),except(volume;dfFileSys;na:.*.snapshot)
x.y.z.2 DUBBBRIIA # DEVMON:model(cisco;4500)
x.y.z.3 DUBBBRIIB # DEVMON:model(cisco;4500)
x.y.z.4 dubdmz_sw01 # DEVMON
x.y.z.5 I-DUBL-C01 #
DEVMON:tests(cpu,if_col,if_dsc,if_err,if_load,if_stat,power,serial)
x.y.z.6 I-DUBL-C02 # DEVMON
x.y.z.7 DUBVG01 # DEVMON
x.y.z.8 DUBVG02 # DEVMON
[bb@odyssey devmon]$
They all got discovered ok with the --readbbhosts option, except DUBVG01
and DUBVG02 (both 2811 routers).
Then, by running /usr/local/devmon/devmon, it all seems to start ok,
[bb@odyssey devmon]$ ps -ef | grep devmon
bb 8910 1 5 14:15 ? 00:00:01 devmon[master]
bb 8912 8910 0 14:15 ? 00:00:00 devmon
bb 8913 8910 2 14:15 ? 00:00:00 devmon
bb 8914 8910 0 14:15 ? 00:00:00 devmon
bb 8915 8910 0 14:15 ? 00:00:00 devmon
bb 8916 8910 0 14:15 ? 00:00:00 devmon
bb 8917 8910 2 14:15 ? 00:00:00 devmon
bb 8918 8910 0 14:15 ? 00:00:00 devmon
bb 8919 8910 0 14:15 ? 00:00:00 devmon
bb 8920 8910 0 14:15 ? 00:00:00 devmon
bb 8921 8910 0 14:15 ? 00:00:00 devmon
but all I see in the log file is
[10-04-26@13:40:32] ---Initilizing devmon...
[10-04-26@13:40:32] Node 0 reporting to localhost
[10-04-26@13:40:32] Running under process id: 19360
[10-04-26@13:40:32] Entering poll loop
[10-04-26@13:50:32] ---Initilizing devmon...
[10-04-26@13:50:32] Node 0 reporting to localhost
[10-04-26@13:50:32] Running under process id: 25080
[10-04-26@13:50:32] Entering poll loop
[10-04-26@13:55:31] ---Initilizing devmon...
[10-04-26@13:55:31] Node 0 reporting to localhost
[10-04-26@13:55:31] Running under process id: 28265
[10-04-26@13:55:31] Entering poll loop
[10-04-26@14:00:31] ---Initilizing devmon...
[10-04-26@14:00:31] Node 0 reporting to localhost
[10-04-26@14:00:31] Running under process id: 31631
[10-04-26@14:00:31] Entering poll loop
[10-04-26@14:05:32] ---Initilizing devmon...
[10-04-26@14:05:32] Node 0 reporting to localhost
[10-04-26@14:05:32] Running under process id: 1873
[10-04-26@14:05:32] Entering poll loop
[10-04-26@14:10:32] ---Initilizing devmon...
[10-04-26@14:10:32] Node 0 reporting to localhost
[10-04-26@14:10:32] Running under process id: 5703
[10-04-26@14:10:32] Entering poll loop
[10-04-26@14:15:31] ---Initilizing devmon...
[10-04-26@14:15:31] Node 0 reporting to localhost
[10-04-26@14:15:31] Running under process id: 8910
[10-04-26@14:15:31] Entering poll loop
[10-04-26@14:20:31] ---Initilizing devmon...
[10-04-26@14:20:31] Node 0 reporting to localhost
[10-04-26@14:20:31] Running under process id: 11400
[10-04-26@14:20:31] Entering poll loop
[bb@odyssey devmon]$
After a while, devmopn crashes, leaving just one orphan child process,
which takes a hell of a lot of CPU time.
[bb@odyssey devmon]$ ps -ef | grep devmon
bb 11411 1 56 14:20 ? 00:01:37 devmon
bb 13086 24440 0 14:23 pts/1 00:00:00 grep devmon
[bb@odyssey devmon]$ top
last pid: 13189; load avg: 0.99, 0.63, 0.46; up 0+16:15:43
14:23:45
108 processes: 2 running, 106 sleeping
CPU states: 37.6% user, 0.0% nice, 13.4% system, 48.9% idle, 0.0% iowait
Kernel: 22 ctxsw, 952 intr, 1 newproc
Memory: 776M used, 1235M free, 158M buffers, 394M cached
Swap: 5760M free
This terminal can only display 25 processes
PID USERNAME THR PRI NICE SIZE RES SHR STATE TIME CPU COMMAND
11411 bb 1 25 0 48M 14M 464K run 1:57 94.00% devmon
2018 bb 1 15 0 3988K 464K 300K sleep 1:06 1.00% bbd
18656 bb 3 15 0 26M 2608K 776K sleep 1:13 0.00%
routermon
6 root 1 10 -5 0K 0K 0K sleep 0:54 0.00% events/0
398 root 1 10 -5 0K 0K 0K sleep 0:38 0.00%
kjournald
1880 mysql 13 15 0 191M 26M 4444K sleep 0:25 0.00% mysqld
167 root 1 15 0 0K 0K 0K sleep 0:13 0.00% pdflush
15959 pg10326 1 15 0 88M 1968K 1200K sleep 0:04 0.00% sshd
2 root 1 -99 -5 0K 0K 0K sleep 0:02 0.00%
migration/0
4 root 1 -99 -5 0K 0K 0K sleep 0:02 0.00%
migration/1
12372 apache 1 15 0 177M 3104K 1208K sleep 0:01 0.00% httpd
8160 apache 1 15 0 177M 3096K 1212K sleep 0:01 0.00% httpd
18553 pg10326 1 15 0 89M 1960K 1200K sleep 0:01 0.00% sshd
1552 root 1 18 0 11M 384K 256K sleep 0:01 0.00%
irqbalance
3336 apache 1 15 0 177M 3092K 1204K sleep 0:01 0.00% httpd
3 root 1 34 19 0K 0K 0K sleep 0:01 0.00%
ksoftirqd/0
1782 root 1 15 0 61M 2332K 812K sleep 0:00 0.00% sendmail
7794 apache 1 15 0 177M 3088K 1204K sleep 0:00 0.00% httpd
1 root 1 15 0 10M 704K 592K sleep 0:00 0.00% init
11092 apache 1 15 0 177M 3076K 1204K sleep 0:00 0.00% httpd
456 root 1 15 -4 12M 784K 400K sleep 0:00 0.00% udevd
1913 root 1 16 0 62M 1212K 652K sleep 0:00 0.00% sshd
31 root 1 10 -5 0K 0K 0K sleep 0:00 0.00%
kblockd/1
30 root 1 10 -5 0K 0K 0K sleep 0:00 0.00%
kblockd/0
Any ideas about how to get this addressed?
Loris
|
|
From: Mario V. <mar...@gm...> - 2010-04-09 12:59:09
|
Hi Richard, Thanks for that link, I'll take a look. Cheers, Mario On 8 April 2010 05:35, Richard Finegold <gol...@gm...> wrote: > On Wed, Apr 7, 2010 at 06:52, Mario Valetti <mar...@gm...> wrote: > > The 2800's are CISCO 2811. I can always remove the VPN test until I need > it > > later. > > 2811, eh? > > http://sourceforge.net/tracker/?func=detail&aid=2615151&group_id=160720&atid=816977 > > > ------------------------------------------------------------------------------ > Download Intel® Parallel Studio Eval > Try the new software tools for yourself. Speed compiling, find bugs > proactively, and fine-tune applications for parallel performance. > See why Intel Parallel Studio got high marks during beta. > http://p.sf.net/sfu/intel-sw-dev > _______________________________________________ > Devmon-support mailing list > Dev...@li... > https://lists.sourceforge.net/lists/listinfo/devmon-support > |
|
From: Buchan M. <bg...@st...> - 2010-04-09 11:35:00
|
On Thursday, 8 April 2010 14:47:47 White, Bruce wrote: > Milne, > > Thanks for all your hard work on devmon. It has become an important > tool in my shop. We have made several changes in our network to better > utilize available resources based on the data it has collected. > > Please excuse my ignorance. I looked in sourceforge and all I find is > gzipped tar balls of templates. The latest is from Feb. 08, 2008. > Where can I download these updated templates? From the subversion repository, either with svn (if you plan to contribute templates back, or update often), or from viewvc (which can generate you a tarball), e.g. at http://devmon.svn.sourceforge.net/viewvc/devmon/trunk/templates/ , or tarball directly at http://devmon.svn.sourceforge.net/viewvc/devmon/trunk/templates.tar.gz?view=tar I need to get around to a new template release, but I have some issues with "improvements" to some templates that aren't sufficient, or not ideal (e.g, who uses Fahrenheit :-p), and the contributors provided the changes anonymously on the tracker ... I think I might just ship the fixes to the templates in question that I am using myself, in the next few weeks. Regards, Buchan |
|
From: Wurtzel K. <pet...@mo...> - 2010-04-08 17:59:31
|
T he was promoted to the rank of captain. CHAPTER TWO. SHOWS WHAT MEN WILL DO AND DARE IN THE CAUSE OF SCIENCE. Men who study the stars tell us strange and wonderful things--things that the unlearned find it hard to understand, and harder still to believe, yet things that we are now as sure of as we are of the fact that two and two make four! There was a time when men said that the sun moved round the earth; and very natural it was in men to say so, for, to the eye of sense, it looks as if this were really the case. But those who study the stars have found out that the earth moves round the sun--a discovery which has been of the greatest importance to mankind--though the importance thereof cannot be fully understood except by scientific men. Among other difficult things, these astronomers have attempted to measure the distance of the sun, moon, and stars from our earth. Moreover, they have tried to ascertain the exact size of these celestial lights, and they have, to a considerable extent, been successful in their efforts. By their complicated calculations, the men who study the stars can tell the exact day, hour, and minute when certain events will happen, such as an eclipse of the sun or of the moon. Now, about the year 1768 the attention of the scientific world was eagerly turned to an event which was to take place in the following year. This was the passage of the planet Venus across the face of the sun. |
|
From: White, B. <be...@fe...> - 2010-04-08 13:47:58
|
Milne,
Thanks for all your hard work on devmon. It has become an important
tool in my shop. We have made several changes in our network to better
utilize available resources based on the data it has collected.
Please excuse my ignorance. I looked in sourceforge and all I find is
gzipped tar balls of templates. The latest is from Feb. 08, 2008.
Where can I download these updated templates?
.....Bruce
Bruce White
Senior Enterprise Systems Engineer | Phone: 630-671-5169 | Fax: 630-893-1648 | be...@fe... | http://www.fellowes.com/
Disclaimer: The information contained in this message may be privileged and confidential and protected from disclosure. If the reader of this message is not the intended recipient or an employee or agent responsible for delivering this message to the intended recipient, you are hereby notified that any dissemination, distribution or copying of this communication is strictly prohibited. If you have received this communication in error, please notify us immediately by replying to the message and deleting it from your computer. Thank you. Fellowes, Inc.
-----Original Message-----
From: Buchan Milne [mailto:bg...@st...]
Sent: Wednesday, April 07, 2010 8:43 AM
To: dev...@li...
Subject: Re: [Devmon] CISCO 4948 & 2800
On Wednesday, 7 April 2010 13:21:52 Mario Valetti wrote:
> Hi I'm having two separate issues getting DEVMON to work correctly
> with two router/switch models.
>
> The first is a CISCO 4948, I have no particular template for it,
> however I believe it should pickup and work with the CISCO-4500
> template. Has anyone got a specific template for the CISCO 4948
series?
>
> The errors are:
>
> No SNMP data found for ifInDiscards on <hostname> [10-04-07@12:46:55]
> No SNMP data found for ifOutOctets on <hostname> [10-04-07@12:46:55]
> No SNMP data found for ifName on <hostname> [10-04-07@12:46:55] No
> SNMP data found for ifOutDiscards on <hostname> [10-04-07@12:46:55] No
> SNMP data found for ifInOctets on <hostname> [10-04-07@12:46:55] No
> SNMP data found for ifAlias on <hostname> [10-04-07@12:46:55] Missing
> repeater data for ifName for if_dsc msg
>
> In XYMON, the columns flash purple with the "Missing Repeater Value"
> message.
>
>
> Does this mean I need to try create a template specific for the 4948?
The 4500 template may not have been the best place to start. I have a
4948 template, I will try and commit it soon. I think I actually started
this one from 6509 template.
> The second is a set of CISCO 2800's.
2801 or 2811?
>
> The Values seem to appear fine within XYMON, and DEVMON is green with
> figures updating. However, no graphs are drawn in neither of the
columns.
> No devmon graph files exist under the ~/data/rrd/<hostname> directory.
> Directory and file permissions are the same as other switches and
> routers which work fine.
>
> I haven't been able to work out what I'm missing.
I think the 2800 template may be missing the rrd option to the TABLE
line in the messages file. Compare with e.g. 7206 or 6509 template.
I have a template for whichever of 2801 or 2811 was missing, but I added
a vpn test, since we are mostly using them as site-to-site VPNs.
> Of the two, the 4948 is more important to me.
Regards,
Buchan
------------------------------------------------------------------------
------
Download Intel® Parallel Studio Eval Try the new software tools for
yourself. Speed compiling, find bugs proactively, and fine-tune
applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
Devmon-support mailing list
Dev...@li...
https://lists.sourceforge.net/lists/listinfo/devmon-support
|
|
From: Richard F. <gol...@gm...> - 2010-04-08 03:35:39
|
On Wed, Apr 7, 2010 at 06:52, Mario Valetti <mar...@gm...> wrote: > The 2800's are CISCO 2811. I can always remove the VPN test until I need it > later. 2811, eh? http://sourceforge.net/tracker/?func=detail&aid=2615151&group_id=160720&atid=816977 |
|
From: Mario V. <mar...@gm...> - 2010-04-07 13:53:01
|
Hmm.. thanks for the tips. Great news for me about the 4948 template. The 2800's are CISCO 2811. I can always remove the VPN test until I need it later. Please let me know once you've had time to commit it. Thanks, Mario On 7 April 2010 15:42, Buchan Milne <bg...@st...> wrote: > On Wednesday, 7 April 2010 13:21:52 Mario Valetti wrote: > > Hi I'm having two separate issues getting DEVMON to work correctly with > two > > router/switch models. > > > > The first is a CISCO 4948, I have no particular template for it, however > I > > believe it should pickup and work with the CISCO-4500 template. Has > anyone > > got a specific template for the CISCO 4948 series? > > > > The errors are: > > > > No SNMP data found for ifInDiscards on <hostname> > > [10-04-07@12:46:55] No SNMP data found for ifOutOctets on <hostname> > > [10-04-07@12:46:55] No SNMP data found for ifName on <hostname> > > [10-04-07@12:46:55] No SNMP data found for ifOutDiscards on <hostname> > > [10-04-07@12:46:55] No SNMP data found for ifInOctets on <hostname> > > [10-04-07@12:46:55] No SNMP data found for ifAlias on <hostname> > > [10-04-07@12:46:55] Missing repeater data for ifName for if_dsc msg > > > > In XYMON, the columns flash purple with the "Missing Repeater Value" > > message. > > > > > > Does this mean I need to try create a template specific for the 4948? > > The 4500 template may not have been the best place to start. I have a 4948 > template, I will try and commit it soon. I think I actually started this > one > from 6509 template. > > > > The second is a set of CISCO 2800's. > > 2801 or 2811? > > > > > The Values seem to appear fine within XYMON, and DEVMON is green with > > figures updating. However, no graphs are drawn in neither of the > columns. > > No devmon graph files exist under the ~/data/rrd/<hostname> directory. > > Directory and file permissions are the same as other switches and routers > > which work fine. > > > > I haven't been able to work out what I'm missing. > > I think the 2800 template may be missing the rrd option to the TABLE line > in > the messages file. Compare with e.g. 7206 or 6509 template. > > I have a template for whichever of 2801 or 2811 was missing, but I added a > vpn > test, since we are mostly using them as site-to-site VPNs. > > > Of the two, the 4948 is more important to me. > > Regards, > Buchan > |
|
From: Buchan M. <bg...@st...> - 2010-04-07 13:42:57
|
On Wednesday, 7 April 2010 13:21:52 Mario Valetti wrote: > Hi I'm having two separate issues getting DEVMON to work correctly with two > router/switch models. > > The first is a CISCO 4948, I have no particular template for it, however I > believe it should pickup and work with the CISCO-4500 template. Has anyone > got a specific template for the CISCO 4948 series? > > The errors are: > > No SNMP data found for ifInDiscards on <hostname> > [10-04-07@12:46:55] No SNMP data found for ifOutOctets on <hostname> > [10-04-07@12:46:55] No SNMP data found for ifName on <hostname> > [10-04-07@12:46:55] No SNMP data found for ifOutDiscards on <hostname> > [10-04-07@12:46:55] No SNMP data found for ifInOctets on <hostname> > [10-04-07@12:46:55] No SNMP data found for ifAlias on <hostname> > [10-04-07@12:46:55] Missing repeater data for ifName for if_dsc msg > > In XYMON, the columns flash purple with the "Missing Repeater Value" > message. > > > Does this mean I need to try create a template specific for the 4948? The 4500 template may not have been the best place to start. I have a 4948 template, I will try and commit it soon. I think I actually started this one from 6509 template. > The second is a set of CISCO 2800's. 2801 or 2811? > > The Values seem to appear fine within XYMON, and DEVMON is green with > figures updating. However, no graphs are drawn in neither of the columns. > No devmon graph files exist under the ~/data/rrd/<hostname> directory. > Directory and file permissions are the same as other switches and routers > which work fine. > > I haven't been able to work out what I'm missing. I think the 2800 template may be missing the rrd option to the TABLE line in the messages file. Compare with e.g. 7206 or 6509 template. I have a template for whichever of 2801 or 2811 was missing, but I added a vpn test, since we are mostly using them as site-to-site VPNs. > Of the two, the 4948 is more important to me. Regards, Buchan |
|
From: Mario V. <mar...@gm...> - 2010-04-07 12:22:04
|
Hi I'm having two separate issues getting DEVMON to work correctly with two router/switch models. The first is a CISCO 4948, I have no particular template for it, however I believe it should pickup and work with the CISCO-4500 template. Has anyone got a specific template for the CISCO 4948 series? The errors are: No SNMP data found for ifInDiscards on <hostname> [10-04-07@12:46:55] No SNMP data found for ifOutOctets on <hostname> [10-04-07@12:46:55] No SNMP data found for ifName on <hostname> [10-04-07@12:46:55] No SNMP data found for ifOutDiscards on <hostname> [10-04-07@12:46:55] No SNMP data found for ifInOctets on <hostname> [10-04-07@12:46:55] No SNMP data found for ifAlias on <hostname> [10-04-07@12:46:55] Missing repeater data for ifName for if_dsc msg In XYMON, the columns flash purple with the "Missing Repeater Value" message. Does this mean I need to try create a template specific for the 4948? The second is a set of CISCO 2800's. The Values seem to appear fine within XYMON, and DEVMON is green with figures updating. However, no graphs are drawn in neither of the columns. No devmon graph files exist under the ~/data/rrd/<hostname> directory. Directory and file permissions are the same as other switches and routers which work fine. I haven't been able to work out what I'm missing. Of the two, the 4948 is more important to me. Regards, |
|
From: Buchan M. <bg...@st...> - 2010-04-07 08:27:42
|
On Wednesday, 7 April 2010 08:47:04 W.J.M. Nelis wrote: > Hello, > > by default, Devmon statistics in Xymon will show the last runtime, as > well as the average run-time of the last 5 runs. Is this the only/best metric to have? Since we now have per-worker statistics displayed on the dm test (in svn), I was considering adding per-thread polled host graphs. In this case, it might be better not to use the ncv collector, but the devmon collector (which can handle multiple rrd files with multiple DSs each) > I wanted to have a > graph showing the run-time of Devmon. I've made the following > modifications in module dm_msg.pm: From what base? It doesn't look like you've used the version in svn, which means your changes will conflict (the color of the dm test is now not hardcoded as green, but goes yellow if workers stop responding). > > [xymon]$ diff -u dm_msg.pm.org dm_msg.pm > --- dm_msg.pm.org 2009-01-22 17:42:12.000000000 +0100 > +++ dm_msg.pm 2010-03-19 09:17:44.000000000 +0100 > @@ -22,6 +22,7 @@ > use strict; > use Socket; > use dm_config; > + use POSIX qw/ strftime / ; > > # Our global variable hash > use vars qw(%g); > @@ -186,13 +187,21 @@ > $avg_time /= $num_polls; > $message .= "$avg_time seconds\n\n" . > "Poll time averaged over 5 poll cycles."; > - > } > > + # Replace ":" and "=" in order not to confuse the Xymon NCV module > + # Write the polling time (in HTML comment) for storage in an RRD > + $message =~ s/:/:/g ; > +# $message =~ s/=/=/g ; > + $message .= "<!--\n" . > + "PollTime : $this_poll_time\n" . > + "-->" ; > + > # Add the header > my $host = $g{'nodename'}; > $host =~ s/\./,/g; # Dont forget our FQDN stuff > - $message = "status $host.dm green ".(scalar > localtime)."\n\n$message\n"; > + my $now = $g{'bbdateformat'} ? > strftime($g{'bbdateformat'},localtime) : scalar(localtime); > + $message = "status $host.dm green $now\n\n$message\n"; > > return $message; > > Note that these modifications contain a second, independent enhancement > as well: the timestamp of test dm has been changed to use the format > specified in BBDATEFORMAT, if available. > > In order to get a graph, two configuration files of Xymon need some > exension. In file hobbitserver.cfg, variable TEST2RRD is extended with > "dm=ncv", and a new variable NCV_dm is defined: > NCV_dm="*:GAUGE" > > File hobbitgraph.cfg needs to be extended with a graph definition, > something like: > > [dm] > TITLE , Devmon runtime > YAXIS Runtime [s] > DEF:time=dm.rrd:PollTime:AVERAGE > LINE1:time#FF0000:Runtime > GPRINT:time:MIN:Min\: %5.1lf %ss > GPRINT:time:MAX:Max\: %5.1lf %ss > GPRINT:time:AVERAGE:Avg\: %5.1lf %ss > GPRINT:time:LAST:Cur\: %5.1lf %ss\n Regards, Buchan |