Another problem found with the 4.3.0 Beta version on AIX is that vmstat has dropped the cpu wait value and does not store the value in the rrd.
This worked fine under the 4.3.0-0.20080402 version.
Also I cannot find any documentation on how the "Compact" status feature is supposed to work!
Regards, Chris
This e-mail including any attachments is provided for general information purposes only and does not constitute advice except to the addressee if expressly stated in this email. For the avoidance of doubt the contents of this email and any attachments are subject to contract and are not intended to and will not constitute a legally binding contract or any part of a legally binding contract.
The information contained in this email and any attachments is confidential. It is intended only for the use of the intended recipient at the email address to which it has been addressed. If the reader of this message is not an intended recipient, you are hereby notified that you have received this document in error and that any review, dissemination, distribution or copying of the message or associated attachments is strictly prohibited.
If you have received this e-mail in error, please notify postmaster at RWEsystemsUK.com and permanently delete the email and any attachments immediately from your system. You should not retain, copy or use this email or any attachment for any purpose, nor disclose all or any part of the contents to any other person. Thank you for your co-operation.
Neither RWE IT UK Ltd nor any of the other companies in the RWE Group from whom this e-mail originates accept any responsibility for losses or damage as a result of any viruses and it is your responsibility to check attachments (if any) for viruses.
RWE IT UK Ltd Registered office: Mistral, Westlea Campus, Chelmsford Road, Swindon, Wiltshire, SN5 7EZ. Registered in England and Wales: company number 6052966.
On Wed, Feb 11, 2009 at 03:06:11PM -0000, Chris.Morris at RWEsystemsUK.com wrote:
Another problem found with the 4.3.0 Beta version on AIX is that vmstat has dropped the cpu wait value and does not store the value in the rrd.
Ran into this myself. It's a simple miscalculation, so the last character of the data-message sent to the RRD module is truncated, and this is usually the I/O wait number (if it is a single digit).
Patch attached. You'll need to restart Hobbit after this.
Also I cannot find any documentation on how the "Compact" status feature is supposed to work!
The bb-host(5) man-page tells you:
COMPACT:COLUMN=COLUMN1,COLUMN2,COLUMN3[;ditto]
Collapses a series of statuses into a single
column on the overview webpage.
E.g. if you have columns foo, bar and baz that you want to collapse into column "zork": 0.0.0.0 myhost # COMPACT:zork=foo,bar,baz
Regards, Henrik
Hi,
I'd like to send ack events to multiple BBDISPLAY.
To do that, i did a change on hobbitserver.cfg with this configuration:
http://www.hswn.dk/hobbiton/2005/10/msg00203.html
- In hobbitserver.cfg on both display servers, after the BBDISPLAY setting add # For the enable/disable and acknowledge scripts. maint/BBDISP="0.0.0.0" maint/BBDISPLAYS="10.0.0.1 172.16.12.10" (replace with your display-server IP-adresses)
- In hobbitcgi.cfg, change the line for the bb-ack.cgi tool: # bb-ack.cgi options CGI_ACK_OPTS="--area=maint --env=/usr/lib/hobbit/server/etc/hobbitserver.cfg"
The first problem is that it seems to not send acks events to the multiples IP but only to local.
The second problem is that when i modified BBDISP with the IP of another hobbit server, we got an error:
2009-02-11 17:02:52 Cookie 338777 not found, dropping ack 2009-02-11 17:06:34 Cookie 338777 not found, dropping ack
The reason is that the cookie is different for the same host/test:
serverA$ ${BB} ${BBSERVERIP}:${BBPORT} "hobbitdboard color=red,yellow fields=hostname,testname,cookie" cusaa-ws02|ftp|640796
serverB$ ${BB} ${BBSERVERIP}:${BBPORT} "hobbitdboard color=red,yellow fields=hostname,testname,cookie" cusaa-ws02|ftp|338777
We tried to disable cookie by adding "--no-cookies" into CGI_ACK_OPTS variable of hobbitcgi.cfg but the problem still happens.
Is there any way to fix it please ?
Regards, nicolas
Henrik,
The patch works great - thanks.
There is a discrepancy between the online man pages which are 4.2.2 15th Dec 2008 and the OS man pages which are 4.2.3 4th Feb 2009.
Regards, Chris
-----Original Message----- From: Henrik Størner [mailto:henrik at hswn.dk] Sent: 11 February 2009 17:19 To: hobbit at hswn.dk Subject: Re: [hobbit] Xymon 4.3.0: Beta Problems
On Wed, Feb 11, 2009 at 03:06:11PM -0000, Chris.Morris at RWEsystemsUK.com wrote:
Another problem found with the 4.3.0 Beta version on AIX is that vmstat has dropped the cpu wait value and does not store the value in the rrd.
Ran into this myself. It's a simple miscalculation, so the last character of the data-message sent to the RRD module is truncated, and this is usually the I/O wait number (if it is a single digit).
Patch attached. You'll need to restart Hobbit after this.
Also I cannot find any documentation on how the "Compact" status feature is supposed to work!
The bb-host(5) man-page tells you:
COMPACT:COLUMN=COLUMN1,COLUMN2,COLUMN3[;ditto]
Collapses a series of statuses into a single
column on the overview webpage.
E.g. if you have columns foo, bar and baz that you want to collapse into column "zork": 0.0.0.0 myhost # COMPACT:zork=foo,bar,baz
Regards, Henrik
This e-mail including any attachments is provided for general information purposes only and does not constitute advice except to the addressee if expressly stated in this email. For the avoidance of doubt the contents of this email and any attachments are subject to contract and are not intended to and will not constitute a legally binding contract or any part of a legally binding contract.
The information contained in this email and any attachments is confidential. It is intended only for the use of the intended recipient at the email address to which it has been addressed. If the reader of this message is not an intended recipient, you are hereby notified that you have received this document in error and that any review, dissemination, distribution or copying of the message or associated attachments is strictly prohibited.
If you have received this e-mail in error, please notify postmaster at RWEsystemsUK.com and permanently delete the email and any attachments immediately from your system. You should not retain, copy or use this email or any attachment for any purpose, nor disclose all or any part of the contents to any other person. Thank you for your co-operation.
Neither RWE IT UK Ltd nor any of the other companies in the RWE Group from whom this e-mail originates accept any responsibility for losses or damage as a result of any viruses and it is your responsibility to check attachments (if any) for viruses.
RWE IT UK Ltd Registered office: Mistral, Westlea Campus, Chelmsford Road, Swindon, Wiltshire, SN5 7EZ. Registered in England and Wales: company number 6052966.
Hi Chris,
On Thu, Feb 12, 2009 at 09:53:29AM -0000, Chris.Morris at RWEsystemsUK.com wrote:
There is a discrepancy between the online man pages which are 4.2.2 15th Dec 2008 and the OS man pages which are 4.2.3 4th Feb 2009.
I know, that's one of the things I need to sort out before the current beta-release becomes a "release candidate" release.
But the number of bugs reported so far is surprisingly small, so I hope that this can be a relatively quick test period.
Regards, Henrik
participants (3)
-
Chris.Morris@RWEsystemsUK.com
-
henrik@hswn.dk
-
nico@crysto.org