Xymon Mailing List Archive search

Hobbit package for Debian etch

5 messages in this thread

list Thomas Bergauer · Tue, 08 May 2007 13:21:53 +0200 ·
Hi!

I was wondering how I can install hobbit server on a fresh installed Debian Etch, since the packages on sourceforge are for Sarge only and when I try to install it APT gets confused about unresolved dependencies: librrd0 and libssl0.9.7, even when the newer versions of it are installed.
Is there a deb source package anywhere that I can use to compile hobbit for myself?

best regards,
Thomas

-- 
Thomas Bergauer
user-214d20439f66@xymon.invalid
list Galen Johnson · Tue, 8 May 2007 09:13:05 -0400 ·
Not being a debian user this may sound like a stupid question but is there some reason you can't just download the source directly from SF.net?

=G= 
quoted from Thomas Bergauer

-----Original Message-----
From: Thomas Bergauer [mailto:user-214d20439f66@xymon.invalid] 
Sent: Tuesday, May 08, 2007 7:22 AM
To: user-ae9b8668bcde@xymon.invalid
Subject: [hobbit] Hobbit package for Debian etch

Hi!

I was wondering how I can install hobbit server on a fresh installed Debian Etch, since the packages on sourceforge are for Sarge only and when I try to install it APT gets confused about unresolved
dependencies: librrd0 and libssl0.9.7, even when the newer versions of it are installed.
Is there a deb source package anywhere that I can use to compile hobbit for myself?

best regards,
Thomas

--
Thomas Bergauer
user-214d20439f66@xymon.invalid
list Rodolfo Pilas · Tue, 8 May 2007 17:22:50 -0300 ·
quoted from Thomas Bergauer
On Tuesday 08 May 2007 08:21:53 Thomas Bergauer wrote:
Hi!

I was wondering how I can install hobbit server on a fresh installed
Debian Etch, since the packages on sourceforge are for Sarge only and
when I try to install it APT gets confused about unresolved
dependencies: librrd0 and libssl0.9.7, even when the newer versions of
it are installed.
dpkg -i Ubuntu606-hobbit_4.2.0-1_i386.deb

(do the same with the  Ubuntu606-hobbit-client_4.2.0-1_i386.de)

Regards,
Rodolfo Pilas
list Sean R. Clark · Wed, 9 May 2007 10:43:15 -0400 ·

Is there an equivalent dumphostsvc (from bb 1.9/bbgen 3.5)?


I have a script right now that looks at the output of 


 $bbhome/bin/dumphostsvc $HOSTSVC hostsvc


Under our current bb 1.9

I am migrating to hobbit and was wondering if it had a function that
provided this capability?


-Sean
list Henrik Størner · Wed, 9 May 2007 18:19:19 +0200 ·
quoted from Sean R. Clark
On Wed, May 09, 2007 at 10:43:15AM -0400, Sean R. Clark wrote:
Is there an equivalent dumphostsvc (from bb 1.9/bbgen 3.5)?

I have a script right now that looks at the output of 
 $bbhome/bin/dumphostsvc $HOSTSVC hostsvc
Not directly, but you can get the same data by running

  REQUEST_METHOD=GET \
  SCRIPT_NAME="" \
  QUERY_STRING="HOSTSVC=$HOSTSVC" \
  /usr/lib/hobbit/cgi-bin/bb-hostsvc.sh | tail -n +3


What exactly are you doing since you need to look at the HTML 
version of the status log ? If all you want is the current color
and perhaps the detailed status, it would be much easier to run

  bb 127.0.0.1 "hobbitdlog $HOSTSVC"

The first line of the output contains the status, and the rest is the
status details. Like this:

$ bb 127.0.0.1 "hobbitdlog www,sslug,dk.disk"
www.sslug.dk|disk|yellow||1178725468|1178727277|1178729077|0|0|130.228.2.150|790830|||Y
yellow Wed May  9 18:14:31 CEST 2007 - Filesystems NOT ok
&yellow /var (90% used) has reached the WARNING level (90%)

Filesystem         1024-blocks      Used Available Capacity Mounted on
/dev/sda1               579598    226866    321809      42% /
/dev/mapper/vg_sslug1-lv_usr   2568144    677744   1759944      28% /usr
/dev/mapper/vg_sslug1-lv_var   1048540    933484    115056      90% /var


Regards,
Henrik