On Mon, 01 Aug 2011 12:35:56 +0200, Jordi Sanfeliu <jo...@fibranet.cat> 
 wrote:
> Hello Kamil,
>
>
> On 07/30/2011 10:03 AM, c...@lordcyber.net wrote:
>> hello everybody
>>
>> im using monitorix some time on my freebsd server and i have two 
>> thing:
>>
>> 1st.: it is posible monitor network activity in bits instead bytes 
>> (just
>> add a switch in conf which multiply the result by 8)
>
> Not at this moment, but since other users had requested the same I'm
> working on it to appear on the next Monitorix version.
>
>
>>
>> 2nd.: what about to add support for temperature measurements using
>> healthd instead lmsensors? (on freebsd is no lmsensors, it is 
>> linux-only)
>
> Well, the mean reason why Monitorix doesn't support 'healthd' on 
> FreeBSD
> is because I didn't knew anything of it, and even now it's difficult 
> to
> know more about it since its website is just blank page
> <http://healthd.thehousleys.net/>.
>
> I'll try to investigate more on this.
>
>
>>
>> thats all for this great program
>
> Thanks to you.
> Regards.

 thanks for your answer
 healthd can be easy:
 simple output with: healthd -d

 Temp.= 44.0, 48.0, 46.5; Rot.=    0,    0,    0
 Vcore = 2.82, 3.76; Volt. = 3.36, 5.64, 15.50, -11.22, -0.10

 and via awk you can get anything, my simple script for get temperatures 
 for mrtg:

 #! /bin/sh

 export LANG=C
 temp=/tmp/x.$$
 trap 'rm -f $temp*; exit 1' 1 2 15              # clean up files

 /usr/local/sbin/healthd -dc 1 | grep '^Temp'  > $temp.1
 ibytes=`cat $temp.1 | awk '{print $2}'`
 obytes=`cat $temp.1 | awk '{print $3}'`

 echo $obytes
 echo $ibytes

 rm -f $temp*
 exit 0

 but anyway thanks, i just wait :))
 kamil


------------------------------------------------------------------------------
Got Input?   Slashdot Needs You.
Take our quick survey online.  Come on, we don't ask for help often.
Plus, you'll get a chance to win $100 to spend on ThinkGeek.
http://p.sf.net/sfu/slashdot-survey
_______________________________________________
Monitorix-general mailing list
Monitorix-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/monitorix-general

Reply via email to