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
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Joshua K. <fo...@tr...> - 2008-01-09 22:30:39
|
I have my graphing up and running for my switches but it's not currently working on my pix's. Here is what my extra-rrd.pl file looks like: #!/usr/bin/perl # Input parameters: Hostname, testname (column), and messagefile $HOSTNAME=$ARGV[0]; ; $TESTNAME=$ARGV[1]; ; $FNAME=$ARGV[2]; ; # Read the entire files open (FILEHANDLE,$FNAME) || die ("cant read file\n"); @input = <FILEHANDLE>; close (FILEHANDLE); if ( $TESTNAME eq "if_load" ) { # Analyze the message we got foreach $line (@input) { if ($line =~ /(^[A-Z].*) (\d+):(\d+)$/ ) { # The RRD dataset definitions print "DS:in:DERIVE:600:0:U\n"; print "DS:out:DERIVE:600:0:U\n"; # The filename print "if_load_$1.rrd\n"; # The data print "$2:$3\n"; } } } I've checked out the devmon svn and saw an extra-rrd.pl that look different from mine: # Input parameters: Hostname, testname (column), and messagefile $HOSTNAME=$ARGV[0]; ; $TESTNAME=$ARGV[1]; ; $FNAME=$ARGV[2]; ; # Read the entire files open (FILEHANDLE,$FNAME) || die ("cant read file\n"); @input = <FILEHANDLE>; close (FILEHANDLE); if ( $TESTNAME eq "if_load" ) { # Analyze the message we got foreach $line (@input) { if ($line =~ /^(\w+) (\d+):(\d+)$/ ) { # The RRD dataset definitions print "DS:in:DERIVE:600:0:U\n"; print "DS:out:DERIVE:600:0:U\n"; # The filename print "if_load_$1.rrd\n"; # The data print "$2:$3\n"; } } } My "if ($line" statement and the one in the svn are different but I did mine the way I did was so that it would graph all the if_load interfaces on my switches. Can anyone assist me with this? Thanks, Josh |
From: Buchan M. <bg...@st...> - 2008-01-09 10:05:25
|
On Thursday 27 December 2007 21:32:41 Joshua Krause wrote: > I have a device that is called the "Babel Buster" made by Control > Solutions. And it receives information from 2 generators from a modbus that > is installed in each generator. Now I am able to log into the "Babel > Buster" and view the information I am polling from each generator and the > oids for the data for each generator are different. So my question is can > I set up one template in devmon and have it only show certain information > that it is receiving for 2 different hosts. Or is it best just to setup 2 > templates, one for each generator, and then in my bb-hosts file signify > which is what by having a specs file look like this for generator 1 and 2: > > > > Generator 1 Specs file: > > vendor : babelbuster > > model : bbsp-1 > > snmpver : 2 > > sysdesc : bbsp > > > Generator 2 Specs file: > > vendor : babelbuster > > model : bbsp-2 > > snmpver : 2 > > sysdesc : bbsp > > > > Would this idea of 2 different specs files with 2 different templates work > better or be the best way to do it? I think one template with two tests, and disable the irrelevant test for the host via a DEVMON tests option, e.g.: x.x.x.x generator-1.xxx.com # DEVMON:tests(bbsp1) x.x.x.x generator-2.xxx.com # DEVMON:tests(bbsp2) (If I understand correctly) Regards, Buchan |
From: Buchan M. <bg...@st...> - 2008-01-08 06:03:41
|
On Monday 07 January 2008 20:32:10 Joshua Krause wrote: > Has anyone come up with a way to show the true uptime on a cisco device via > devmon? Well, devmon uses what is available via SNMP ... > If you look at the uptime in hobbit that is getting it's info from > devmon and then log into the switch and do a "show version" the times are > different. And what I was told by Cisco is that they uptime is rollover > every 496 days. So if I have switches that have been up 495 days once they > go passed 496 hobbit will show them as being rebooted because when devmon > poll's the device the "sysUptime" rolled over and now show's zero time. Can you show the snmpwalk output for a device that has been up more than 496 days ? Maybe we can do something about it. (None of our cisco devices have uptimes that high ... aren't you a few IOS releases behind?). > Which hobbit assumes that it rebooted but it really hasn't. > > Is there anyway to get the time from the "show version" command or has > someone come up with a better way of getting the uptime of the device? If there is another way to get it via SNMP, sure. For example, does the timeticks integer value roll over ? Or, should devmon hold the state of the uptime over polls to avoid alerting near the rollover value? Regards, Buchan |
From: Joshua K. <fo...@tr...> - 2008-01-07 18:32:12
|
Has anyone come up with a way to show the true uptime on a cisco device via devmon? If you look at the uptime in hobbit that is getting it's info from devmon and then log into the switch and do a "show version" the times are different. And what I was told by Cisco is that they uptime is rollover every 496 days. So if I have switches that have been up 495 days once they go passed 496 hobbit will show them as being rebooted because when devmon poll's the device the "sysUptime" rolled over and now show's zero time. Which hobbit assumes that it rebooted but it really hasn't. Is there anyway to get the time from the "show version" command or has someone come up with a better way of getting the uptime of the device? Thanks, Josh |
From: Buchan M. <bg...@st...> - 2008-01-07 12:17:42
|
I added a temp test for compaq-server, and the del-poweredge model I added also has a temp test, for monitoring the temperatures (with graphs). I noticed that bb-xsnmp.pl was monitoring temperature on Cisco devices as well. Our network engineer would like us to enable temperature monitoring on our Cisco equipment (6509s, 7206s, 7613s). Comments ? (while I start doing it) Also, I think it might be time to start finding out who has what equipment that we have templates for, so we know who can test changes to the templates. Regards, Buchan |
From: Buchan M. <bg...@st...> - 2008-01-04 16:09:54
|
On Thursday 03 January 2008 14:51:46 Joshua Krause wrote: > I changed > NODENAME=HOSTNAME to > NODENAME=gsonc-spg-ops-1 > > And when I try and start devmon back up I get this error: > [08-01-03@07:47:12] Invalid value 'gsonc-spg-ops-1' for 'nodename' in > config file, line 157 > > Line 157 is a blank line at the bottom of the devmon.cfg file. Hmm, well I tested this (NODENAME set to a short host name) on one box before committing the change, and have just tested on another (this one using: NODENAME=localhost ), and they both worked .... |
From: Joshua K. <fo...@tr...> - 2008-01-03 12:51:48
|
I changed NODENAME=3DHOSTNAME to NODENAME=3Dgsonc-spg-ops-1 And when I try and start devmon back up I get this error: [08-01-03@07:47:12] Invalid value 'gsonc-spg-ops-1' for 'nodename' in = config file, line 157 Line 157 is a blank line at the bottom of the devmon.cfg file. Thanks, Josh -----Original Message----- From: Buchan Milne [mailto:bg...@st...]=20 Sent: Thursday, January 03, 2008 5:04 AM To: dev...@li... Cc: Joshua Krause Subject: Re: [Devmon] devmon beta 4 purple On Wednesday 02 January 2008 21:59:04 Joshua Krause wrote: > I upgraded to the devmon beta4 version and devmon is running and = working > fine. But the "dm" column on my hobbit server that is running devmon = is > purple. Is this a known issue with the beta4 version? Are you using short hostnames in bb-hosts which don't match the output=20 of 'hostname' on the server running devmon ? If so, yes, a misfeature (removing the domain name regardless of whether = it=20 was from hostname or the config file) was removed. Set the hostname you = use=20 for the devmon server in bb-hosts as NODENAME in devmon.cfg. Regards, Buchan |
From: Buchan M. <bg...@st...> - 2008-01-03 10:04:20
|
On Wednesday 02 January 2008 21:59:04 Joshua Krause wrote: > I upgraded to the devmon beta4 version and devmon is running and working > fine. But the "dm" column on my hobbit server that is running devmon is > purple. Is this a known issue with the beta4 version? Are you using short hostnames in bb-hosts which don't match the output of 'hostname' on the server running devmon ? If so, yes, a misfeature (removing the domain name regardless of whether it was from hostname or the config file) was removed. Set the hostname you use for the devmon server in bb-hosts as NODENAME in devmon.cfg. Regards, Buchan |
From: Joshua K. <fo...@tr...> - 2008-01-02 19:59:09
|
I upgraded to the devmon beta4 version and devmon is running and working fine. But the "dm" column on my hobbit server that is running devmon is purple. Is this a known issue with the beta4 version? Thanks Josh |
From: Joshua K. <fo...@tr...> - 2007-12-31 15:10:38
|
I am working on a template for a Valere DC Power plant. The problem that I am having is where at the top of the table I have "Alarming on (1,1,1,1)". It needs to say "Alarming on (1-1,1-2,1-3,1-4)". Here is my setup: TABLE: Shelf-Rectifier|Current|Capacity|Operational State {sysShelf}-{sysModule}|{sysCurrentAmp}A|{sysCapacityAmp}A|{sysOpStateNum.col or} {sysOpState} What it looks like is that devmon pulls "{sysShelf}" and uses that value for what it shows it's alarming on. But the values I need it to pull is a combination of "{sysShelf}-{sysModule}". Now I started to think that I could throw something in the transforms file but don't know what Transforms I would use. {sysShelfId} : ?????? : ({sysShelf}-{sysModule}) I just need it to be able to show the shelf and module combined together so that it says it's alarming on each individual shelf-module. Thanks Josh |
From: Buchan M. <bg...@st...> - 2007-12-31 11:33:14
|
On Friday 14 December 2007 20:01:05 Stewart, Tom L. wrote: > Here are some additional details. If we can get a TABLE with nohtml and > no ":" then I can use the standard "disk" column in Hobbit to graph by > setting the message file to output and look like a normal disk column in > Hobbit. I tried it like this, by adding a "plain" option for TABLE (see attached patch against current svn), however this doesn't do what we need, as Hobbit expects exact spacing. I'll see if it is easy enough to run it through a printf instead (and, maybe change the option name, or add another one), so that we can easily format the output. (I'm currently testing against a WRT45GL running OpenWRT, which, until I get hobbit built for OpenWRT, would benefit from a template like this). > The problem is that I don't know any way to display branch data without > a "TABLE:" > > Here is the oids file: > NSDiskName : .1.3.6.1.4.1.5951.4.1.1.41.8.1.1 : branch > NSDiskSize : .1.3.6.1.4.1.5951.4.1.1.41.8.1.2 : branch > NSDiskAvail : .1.3.6.1.4.1.5951.4.1.1.41.8.1.3 : branch > NSDiskUsed : .1.3.6.1.4.1.5951.4.1.1.41.8.1.4 : branch > NSDiskPerUse : .1.3.6.1.4.1.5951.4.1.1.41.8.1.5 : branch > > > Here is the message file: > > TABLE: > Filesystem|Size|Used|Available|Percent Used > {NSDiskName}|{NSDiskSize} MB|{NSDiskUsed} MB|{NSDiskAvail} > MB|{NSDiskPerUse.color} {NSDiskPerUse}% > [...] > > -----Original Message----- > From: dev...@li... > [mailto:dev...@li...] On Behalf Of > Buchan Milne > Sent: Thursday, December 13, 2007 10:41 AM > To: dev...@li... > Cc: Stewart, Tom L. > Subject: Re: [Devmon] Devmon enhancement request > > On Monday 10 December 2007 19:14:15 Stewart, Tom L. wrote: > > I have created a template for the NetScaler 9000. One of the things > > that > > > would be nice is to present the file systems in the same manner as > > disk > > > usage from a system. > > > > I need to specify "TABLE:" in message to get the information from a > > branch. (unless someone knows a different way) > > > > However, what I need is a nonhtml format without the ":". That way I > > can > > > use the message file to present the data just like a normal hobbit > > client report. > > Can you provide your messages file, and the format of the data that > devmon is > sending (from view->source on the hobbit page for the test)? |
From: xbgmsharp <xbg...@gm...> - 2007-12-28 09:16:59
|
Hi, You are right, i have not made a file release avalaible on SF. I would raiser prefer to publish a final release on SF in order to fix remaining anoying bug. Which is why i send beta3 and beta4 only on mailing list on publish on SVN but out of SF file release. Regars, Francois Craig Boyce a écrit : > Hi, > > I can not seem to find a download on the websites for the complete beta4 > package. > Is there one? > > Thanks > > Craig > > -----Original Message----- > From: dev...@li... > [mailto:dev...@li...] On Behalf Of > xbgmsharp > Sent: Friday, 28 December 2007 1:45 a.m. > To: dev...@li... > Subject: [Devmon] new beta devmon-0.3.0-beta4 > > Hello, > > What is new since devmon-0.3.0-beta3 : > > - Now one OID equal one SNMP request intead of all oids leaf in one > request. > - Add negate the threshold regexp > - Fix hostname fqdn > - Add Cisco-ASA template > - Fix F5-bigip-lite template > - Add documentation and script for GRAPHING > > All of this is avalaible for testing via the SVN. > http://devmon.svn.sourceforge.net/viewvc/devmon/trunk/ > http://sourceforge.net/svn/?group_id=160720 > http://devmon.sourceforge.net/ > > Please Feedback and reports any problem or error. > > To get error msg use this option '--debug -f -vvvvvv'. > > Regards, > Francois. > > > ------------------------------------------------------------------------ > - > This SF.net email is sponsored by: Microsoft Defy all challenges. > Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Devmon-support mailing list > Dev...@li... > https://lists.sourceforge.net/lists/listinfo/devmon-support > ##################################################################################### > > Disclaimer: > The information in this electronic mail message is confidential and may be legally privileged. > It is intended solely for the Addressee.Access to this internet electronic mail message by anyone else is unauthorised. > If you are not the intended recipient, any disclosure, copying, distribution or any action taken or omitted to be > taken in reliance on it is prohibited and may be unlawful. > If you have received this message in error please notify us immediately. > > Rodney District Council accepts no responsibility for any effects this email message or attachments has on the recipient > network or computer system. > > ##################################################################################### > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Devmon-support mailing list > Dev...@li... > https://lists.sourceforge.net/lists/listinfo/devmon-support > > |
From: Craig B. <cra...@ro...> - 2007-12-28 02:00:54
|
Hi, I can not seem to find a download on the websites for the complete beta4 package. Is there one? Thanks Craig -----Original Message----- From: dev...@li... [mailto:dev...@li...] On Behalf Of xbgmsharp Sent: Friday, 28 December 2007 1:45 a.m. To: dev...@li... Subject: [Devmon] new beta devmon-0.3.0-beta4 Hello, What is new since devmon-0.3.0-beta3 : - Now one OID equal one SNMP request intead of all oids leaf in one request. - Add negate the threshold regexp - Fix hostname fqdn - Add Cisco-ASA template - Fix F5-bigip-lite template - Add documentation and script for GRAPHING All of this is avalaible for testing via the SVN. http://devmon.svn.sourceforge.net/viewvc/devmon/trunk/ http://sourceforge.net/svn/?group_id=3D160720 http://devmon.sourceforge.net/ Please Feedback and reports any problem or error. To get error msg use this option '--debug -f -vvvvvv'. Regards, Francois. ------------------------------------------------------------------------ - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2005. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ Devmon-support mailing list Dev...@li... https://lists.sourceforge.net/lists/listinfo/devmon-support #########################################################################= ############ Disclaimer: The information in this electronic mail message is confidential and may b= e legally privileged. It is intended solely for the Addressee.Access to this internet electroni= c mail message by anyone else is unauthorised. If you are not the intended recipient, any disclosure, copying, distribut= ion or any action taken or omitted to be taken in reliance on it is prohibited and may be unlawful. If you have received this message in error please notify us immediately. Rodney District Council accepts no responsibility for any effects this em= ail message or attachments has on the recipient=20 network or computer system. #########################################################################= ############ |
From: Joshua K. <fo...@tr...> - 2007-12-27 19:32:46
|
I have a device that is called the "Babel Buster" made by Control Solutions. And it receives information from 2 generators from a modbus that is installed in each generator. Now I am able to log into the "Babel Buster" and view the information I am polling from each generator and the oids for the data for each generator are different. So my question is can I set up one template in devmon and have it only show certain information that it is receiving for 2 different hosts. Or is it best just to setup 2 templates, one for each generator, and then in my bb-hosts file signify which is what by having a specs file look like this for generator 1 and 2: Generator 1 Specs file: vendor : babelbuster model : bbsp-1 snmpver : 2 sysdesc : bbsp Generator 2 Specs file: vendor : babelbuster model : bbsp-2 snmpver : 2 sysdesc : bbsp Would this idea of 2 different specs files with 2 different templates work better or be the best way to do it? Thanks Josh |
From: xbgmsharp <xbg...@gm...> - 2007-12-27 12:44:08
|
Hello, What is new since devmon-0.3.0-beta3 : - Now one OID equal one SNMP request intead of all oids leaf in one request. - Add negate the threshold regexp - Fix hostname fqdn - Add Cisco-ASA template - Fix F5-bigip-lite template - Add documentation and script for GRAPHING All of this is avalaible for testing via the SVN. http://devmon.svn.sourceforge.net/viewvc/devmon/trunk/ http://sourceforge.net/svn/?group_id=160720 http://devmon.sourceforge.net/ Please Feedback and reports any problem or error. To get error msg use this option '--debug -f -vvvvvv'. Regards, Francois. |
From: Francois L. <ka...@ka...> - 2007-12-27 12:33:44
|
Hello, I update the Cisco-asa and F5 Bigip lite templates on the SVN. Thanks to Nathan Hand and Buchan Milne for getting this template better. The Cisco-ASA template is working and has been test with: Cisco Adaptive Security Appliance Version 7.0(6) Cisco Adaptive Security Appliance Version 7.0(7) Cisco Adaptive Security Appliance Version 7.0(5) Cisco Cisco PIX Security Appliance Version 7.0(2) Cisco Firewall Services Module Version 3.1(4) Could anyone test it with other cisco pix and asa device in order to make a full list of compliant device with this template? The F5 Bigip lite is design to work with a hobbit client in order to reduce snmp pooling when you have many VIP and POOL. If you wish to do all via SNMP use F5 Bigip template. I also update the documentation for GRAPHING. http://devmon.svn.sourceforge.net/viewvc/*checkout*/devmon/trunk/docs/GRAPHING It explain how grpahing CPU, MEMORY, connects, if_load, if_err, if_col from a template. In a other hand the Cisco-asa and F5 Bigip lite are ready for graphing all of this. I update/fix the regexp from if_load extract script in order to graph more interface. Please share you template. Regards, Francois. |
From: <Lor...@pf...> - 2007-12-21 07:31:45
|
I will be out of the office starting 21/12/2007 and will not return until 02/01/2008. For any urgent issue, please contact John Lanigan or email PFPC ITS Support. Regards, Loris Serena |
From: Buchan M. <bg...@st...> - 2007-12-21 07:16:35
|
On Thursday 20 December 2007 11:55:38 xbgmsharp wrote: > Hi all, > > In order to figure if it is the same bug, i would sujest. > In template directory execute: > find . -type f -name "oids" | xargs cat | grep leaf | cut -d ':' -f 2 | > tr -d ' ' | awk '{ print "snmpget -t 20 -On -v2c -c COMMUNAUTY IP " $1 > }' | sh > > It should work, this do an snmpget on all leaf oid like in my version. Except I am having problems with branch oids. > > To do it like devmon do it, it is: > find . -type f -name "oids" | xargs cat | grep leaf | tr -d ' ' | tr > '\n' ' ' | awk -F '|' '{ print "snmpget -t 20 -On -v2c -c COMMUNAUTY > IP " $1 }' | sh > > Which request all oids leaf in one request. > If yo get Tobbig error, my version fix the bug. If not, send the error > msg. Can you commit your fix in svn? If you commit it today I can test (I will be on leave after today until 2 January). > If the problem is due to snmpwalk, i would sujest do add this line: > do_log("DEBUG SNMP MSG: $SNMP_Session::errmsg",0) if $g{'debug'} > > before line 474 and 524 in the file modules/dm_snmp.pm. > > Then running devmon in devmon will print you the error msg you received > when polling. On some devices I get something like this: ERROR: snmpget xxx (Received SNMP response with error code) So, I would prefer to test your fix. Regards, Buchan |
From: Buchan M. <bg...@st...> - 2007-12-21 06:22:22
|
On Wednesday 19 December 2007 17:02:38 Teresa Kroeker wrote: > Buchan Milne wrote: > > I use fqdn's for all my hosts on hobbit (as we have a number of > > environments, and we duplicate the short host name for some servers in > > multiple environments), including the hobbit network test/devmon node. > > > > Due to the following code, I was never seeing the dm test for this node > > (which has some useful information when doing tuning of devmon): > > > > # Remove domain info, if any > > $nodename =~ s/\..*//; > > chomp $nodename; > > > > I don't think this is useful at all, if something besides the output > > of 'hostname' is required, the NODENAME should be set appropriately in > > devmon.cfg. > > > > Comments? > > I agree that I would like it changed as I also use fqdn's. I spent some > time trying unsuccessfully to get it work. Now I know why I couldn't. OK, I have commented out this line in svn: $nodename =~ s/\..*//; Regards, Buchan |
From: Buchan M. <bg...@st...> - 2007-12-20 16:17:54
|
On Thursday 20 December 2007 11:45:08 xbgmsharp wrote: > Hello, > > Here a version of cisco ASA/PIX template working on all 7.0 version. > It works for me with: > Cisco Adaptive Security Appliance Version 7.0(6) > Cisco Adaptive Security Appliance Version 7.0(7) > Cisco Adaptive Security Appliance Version 7.0(5) > Cisco Cisco PIX Security Appliance Version 7.0(2) It works for me with: Cisco Firewall Services Module Version 3.1(4) (basically a pix in a blade for a 6500 or 7600). > So the template match 7.0 Maybe make the regex a bit more specific than just '7.0' ? Cisco.*Security.Appliance.*7.0|Cisco.Firewall.*Module.Version.3 or similar > It graph out of the box CPU / Memory / if_load (whith my hobbit patch). I get memory graphing out-the-box, if_load does not graph for me (even thou= gh=20 on the same setup it is graphing for a few 6509's).=20 > > See docs/GRAPHING > > So if any one could test and make comments? > I would to make a good and nice working template for Cisco Pix and ASA. > > Regards, > Francois > > Nathan Hand a =C3=A9crit : > > Thanks Francois, > > > > You'll need to modify thresholds as well. The new version of thresholds > > is attached. > > > > Cheers, > > Nathan Hand > > > > On 20/12/2007, at 3:24 AM, xbgmsharp wrote: > >> Thanks > >> > >> In order to remove warning: > >> Cant redefine first > >> Cant redefine second > >> > >> I change your transfroms to: > >> first_txt : SWITCH : {first} > >> 9=3DActive,10=3DStandby,4=3DError,3=3DNoStandby > >> second_txt : SWITCH : {second} > >> 9=3DActive,10=3DStandby,4=3DError,3=3DNoStandby > >> > >> and message to: > >> {first_txt.color}{first_unit} is {first_status} > >> {second_txt.color}{second_unit} is {second_status} |
From: xbgmsharp <xbg...@gm...> - 2007-12-20 09:54:57
|
Hi all, In order to figure if it is the same bug, i would sujest. In template directory execute: find . -type f -name "oids" | xargs cat | grep leaf | cut -d ':' -f 2 | tr -d ' ' | awk '{ print "snmpget -t 20 -On -v2c -c COMMUNAUTY IP " $1 }' | sh It should work, this do an snmpget on all leaf oid like in my version. To do it like devmon do it, it is: find . -type f -name "oids" | xargs cat | grep leaf | tr -d ' ' | tr '\n' ' ' | awk -F '|' '{ print "snmpget -t 20 -On -v2c -c COMMUNAUTY IP " $1 }' | sh Which request all oids leaf in one request. If yo get Tobbig error, my version fix the bug. If not, send the error msg. If the problem is due to snmpwalk, i would sujest do add this line: do_log("DEBUG SNMP MSG: $SNMP_Session::errmsg",0) if $g{'debug'} before line 474 and 524 in the file modules/dm_snmp.pm. Then running devmon in devmon will print you the error msg you received when polling. For anyone having this kind of problem, please do it. Regards, Francois Buchan Milne a écrit : > On Wednesday 19 December 2007 17:19:34 xbgmsharp wrote: >> Hi all, >> >> After a day of DEBUG. I works. >> I modify the file dm_snmp.pm which do snmp pooling. >> So now instead of pooling all leaf oid in one request, 1 oid equal 1 >> request. So now than i am pooling each oid separitly devmon should not go >> purple. I try to make it per pakets like 5 or 10 but devmon get lost when >> corresponding data with test done in dm_tests.pm >> >> I will let it working on some PIX and F5 devices and commit by the end of >> the week. >> >> All of this, is for not getting SNMP Error: "error status: tooBig". >> Because of this error all my leaf test was going clear. >> >> Comments? > > I have a number of servers using the compaq-server template, and on some, all > the tests are always green. On the others, the are all clear, and I have > error messages such as this: > > Missing repeater data for primary OID cpqHeFltTolFanIndex > > There is no apparent difference between the servers. One DL380 works, one does > not. Two DL580s work, three don't. > > I'm wondering if there is a similar issue here. If I snmpwalk the whole Compaq > OID, or each branch, I get the data I expect on the servers that aren't > working. > > I think that is one of the last few issues I'd like to see fixed before 0.3.0 > goes out. > > Regards, > Buchan > |
From: xbgmsharp <xbg...@gm...> - 2007-12-20 09:44:31
|
Hello, Here a version of cisco ASA/PIX template working on all 7.0 version. It works for me with: Cisco Adaptive Security Appliance Version 7.0(6) Cisco Adaptive Security Appliance Version 7.0(7) Cisco Adaptive Security Appliance Version 7.0(5) Cisco Cisco PIX Security Appliance Version 7.0(2) So the template match 7.0 It graph out of the box CPU / Memory / if_load (whith my hobbit patch). See docs/GRAPHING So if any one could test and make comments? I would to make a good and nice working template for Cisco Pix and ASA. Regards, Francois Nathan Hand a écrit : > Thanks Francois, > > You'll need to modify thresholds as well. The new version of thresholds > is attached. > > Cheers, > Nathan Hand > > > > > > > On 20/12/2007, at 3:24 AM, xbgmsharp wrote: > >> Thanks >> >> In order to remove warning: >> Cant redefine first >> Cant redefine second >> >> I change your transfroms to: >> first_txt : SWITCH : {first} >> 9=Active,10=Standby,4=Error,3=NoStandby >> second_txt : SWITCH : {second} >> 9=Active,10=Standby,4=Error,3=NoStandby >> >> and message to: >> {first_txt.color}{first_unit} is {first_status} >> {second_txt.color}{second_unit} is {second_status} >> >> >> Regards, >> Francois >> >> >> Nathan Hand a écrit : >>> Here is a template for Cisco ASA devices. Based on the templates written >>> by Lacroix Francois. I've added a monitor for the Active/Standby state >>> that will generate an alert if there is a failover and/or error >>> condition. >>> >>> >>> ------------------------------------------------------------------------ >>> >>> ------------------------------------------------------------------------- >>> >>> SF.Net email is sponsored by: >>> Check out the new SourceForge.net Marketplace. >>> It's the best place to buy or sell services >>> for just about anything Open Source. >>> http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace >>> >>> ------------------------------------------------------------------------ >>> >>> _______________________________________________ >>> Devmon-support mailing list >>> Dev...@li... >>> https://lists.sourceforge.net/lists/listinfo/devmon-support >>> >> >> >> ------------------------------------------------------------------------- >> SF.Net email is sponsored by: >> Check out the new SourceForge.net Marketplace. >> It's the best place to buy or sell services >> for just about anything Open Source. >> http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace >> >> _______________________________________________ >> Devmon-support mailing list >> Dev...@li... >> https://lists.sourceforge.net/lists/listinfo/devmon-support > |
From: Nathan H. <na...@ma...> - 2007-12-19 19:05:03
|
On Linux install the "hpasm" package. On Windows install the Systems Insight Manager package. On 20/12/2007, at 5:06 AM, Morsiani, Massimo wrote: > Hi all, > > in order to monitor hp servers (DL360, DL380, DL580, etc) what do I =20= > need to install on our machines? > SNMP agents? Where can I find them? > Thank you. > > > Regards. > > Massimo Morsiani > Information Technology Dept. > ------ > Gilbarco S.p.a. > via de' Cattani, 220/G > 50145 Firenze, Italy > tel: +39-055-30941 > fax: +39-055-318603 > email: mas...@gi... > web: http://www.gilbarco.it > > > -----Original Message----- > From: dev...@li... = [mailto:dev...@li...=20 > ] On Behalf Of Buchan Milne > Sent: mercoled=EC 19 dicembre 2007 18.26 > To: dev...@li... > Subject: Re: [Devmon] "devmon tests go purple" issue > > On Wednesday 19 December 2007 17:19:34 xbgmsharp wrote: >> Hi all, >> >> After a day of DEBUG. I works. >> I modify the file dm_snmp.pm which do snmp pooling. >> So now instead of pooling all leaf oid in one request, 1 oid equal 1 >> request. So now than i am pooling each oid separitly devmon should =20= >> not >> go purple. I try to make it per pakets like 5 or 10 but devmon get >> lost when corresponding data with test done in dm_tests.pm >> >> I will let it working on some PIX and F5 devices and commit by the =20= >> end >> of the week. >> >> All of this, is for not getting SNMP Error: "error status: tooBig". >> Because of this error all my leaf test was going clear. >> >> Comments? > > I have a number of servers using the compaq-server template, and on =20= > some, all the tests are always green. On the others, the are all =20 > clear, and I have error messages such as this: > > Missing repeater data for primary OID cpqHeFltTolFanIndex > > There is no apparent difference between the servers. One DL380 =20 > works, one does not. Two DL580s work, three don't. > > I'm wondering if there is a similar issue here. If I snmpwalk the =20 > whole Compaq OID, or each branch, I get the data I expect on the =20 > servers that aren't working. > > I think that is one of the last few issues I'd like to see fixed =20 > before 0.3.0 goes out. > > Regards, > Buchan > > = ------------------------------------------------------------------------- > SF.Net email is sponsored by: > Check out the new SourceForge.net Marketplace. > It's the best place to buy or sell services for just about anything =20= > Open Source. > = http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketpla= ce > _______________________________________________ > Devmon-support mailing list > Dev...@li... > https://lists.sourceforge.net/lists/listinfo/devmon-support > > > This message (including any attachments) contains confidential > and/or proprietary information intended only for the addressee. > Any unauthorized disclosure, copying, distribution or reliance on > the contents of this information is strictly prohibited and may > constitute a violation of law. If you are not the intended > recipient, please notify the sender immediately by responding to > this e-mail, and delete the message from your system. If you > have any questions about this e-mail please notify the sender > immediately. > > = ------------------------------------------------------------------------- > SF.Net email is sponsored by: > Check out the new SourceForge.net Marketplace. > It's the best place to buy or sell services > for just about anything Open Source. > = http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketpla= ce > _______________________________________________ > Devmon-support mailing list > Dev...@li... > https://lists.sourceforge.net/lists/listinfo/devmon-support |
From: Morsiani, M. <mas...@gi...> - 2007-12-19 18:07:17
|
Hi all, in order to monitor hp servers (DL360, DL380, DL580, etc) what do I need = to install on our machines? SNMP agents? Where can I find them? Thank you. Regards. Massimo Morsiani Information Technology Dept. ------ Gilbarco S.p.a. via de' Cattani, 220/G 50145 Firenze, Italy tel: +39-055-30941 fax: +39-055-318603 email: mas...@gi... web: http://www.gilbarco.it -----Original Message----- From: dev...@li... = [mailto:dev...@li...] On Behalf Of = Buchan Milne Sent: mercoled=EC 19 dicembre 2007 18.26 To: dev...@li... Subject: Re: [Devmon] "devmon tests go purple" issue On Wednesday 19 December 2007 17:19:34 xbgmsharp wrote: > Hi all, > > After a day of DEBUG. I works. > I modify the file dm_snmp.pm which do snmp pooling. > So now instead of pooling all leaf oid in one request, 1 oid equal 1=20 > request. So now than i am pooling each oid separitly devmon should not = > go purple. I try to make it per pakets like 5 or 10 but devmon get=20 > lost when corresponding data with test done in dm_tests.pm > > I will let it working on some PIX and F5 devices and commit by the end = > of the week. > > All of this, is for not getting SNMP Error: "error status: tooBig". > Because of this error all my leaf test was going clear. > > Comments? I have a number of servers using the compaq-server template, and on = some, all the tests are always green. On the others, the are all clear, = and I have error messages such as this: Missing repeater data for primary OID cpqHeFltTolFanIndex There is no apparent difference between the servers. One DL380 works, = one does not. Two DL580s work, three don't. I'm wondering if there is a similar issue here. If I snmpwalk the whole = Compaq OID, or each branch, I get the data I expect on the servers that = aren't working. I think that is one of the last few issues I'd like to see fixed before = 0.3.0 goes out. Regards, Buchan -------------------------------------------------------------------------= SF.Net email is sponsored by: Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services for just about anything Open = Source. http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketpl= ace _______________________________________________ Devmon-support mailing list Dev...@li... https://lists.sourceforge.net/lists/listinfo/devmon-support This message (including any attachments) contains confidential and/or proprietary information intended only for the addressee. Any unauthorized disclosure, copying, distribution or reliance on the contents of this information is strictly prohibited and may constitute a violation of law. If you are not the intended recipient, please notify the sender immediately by responding to this e-mail, and delete the message from your system. If you have any questions about this e-mail please notify the sender immediately. |
From: Buchan M. <bg...@st...> - 2007-12-19 17:26:04
|
On Wednesday 19 December 2007 17:19:34 xbgmsharp wrote: > Hi all, > > After a day of DEBUG. I works. > I modify the file dm_snmp.pm which do snmp pooling. > So now instead of pooling all leaf oid in one request, 1 oid equal 1 > request. So now than i am pooling each oid separitly devmon should not go > purple. I try to make it per pakets like 5 or 10 but devmon get lost when > corresponding data with test done in dm_tests.pm > > I will let it working on some PIX and F5 devices and commit by the end of > the week. > > All of this, is for not getting SNMP Error: "error status: tooBig". > Because of this error all my leaf test was going clear. > > Comments? I have a number of servers using the compaq-server template, and on some, all the tests are always green. On the others, the are all clear, and I have error messages such as this: Missing repeater data for primary OID cpqHeFltTolFanIndex There is no apparent difference between the servers. One DL380 works, one does not. Two DL580s work, three don't. I'm wondering if there is a similar issue here. If I snmpwalk the whole Compaq OID, or each branch, I get the data I expect on the servers that aren't working. I think that is one of the last few issues I'd like to see fixed before 0.3.0 goes out. Regards, Buchan |