[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [hobbit] custom rrd data graph
- To: hobbit (at) hswn.dk
- Subject: Re: [hobbit] custom rrd data graph
- From: Shifter <the.shifter (at) gmail.com>
- Date: Wed, 8 Nov 2006 10:40:23 -0800
- Domainkey-signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:in-reply-to:mime-version:content-type:references; b=uIVjjnOnF4nV1yuyXYL3GPDxrz2tfRmzZtTCO0NaliE6Y+ubmFmvaNzt2tgzAIfE0guSQ4CHXeLV2Gr6XFh+InNokwMJrOXwwbEWxacxC+ihn+cvh1eqH3+/jBQfwXM1HoMm412F8FGAdiNaLVac6/hNwq8GgXP4EQqdS5JxhGc=
- References: <21eec7a30611071658p63c9bd64n80d0188f0a2822a2@mail.gmail.com> <20061108180544.GT3273@cgoyard1.exp75.cvf>
I don't quite follow Charles. Here's the relevant lines from my
hobbitserver.cfg file:
TEST2RRD="cpu=la,disk,inode,qtree,memory,$PINGCOLUMN=tcp,http=tcp,dns=tcp,dig=tcp,time=ntpstat,vmstat,iostat,netstat,temperature,apache,bind,sendmail,mailq,nmailq=mailq,socks,bea,iishealth,citrix,bbgen,bbtest,bbproxy,hobbitd,files,procs=processes,ports,clock,lines,pcpuIdle=ncv"
GRAPHS="la,disk,inode,qtree,files,processes,memory,users,vmstat,iostat,
tcp.http
,tcp,ncv,netstat,ifstat,mrtg::1,ports,temperature,ntpstat,apache,bind,sendmail,mailq,socks,bea,iishealth,citrix,bbgen,bbtest,bbproxy,hobbitd,clock,lines,pcpuIdle=ncv"
NCV_pcpuIdle="pcpuIdle:GAUGE"
The message I'm sending from the client is a data message, not a status
message. This is what's coming from my client via an ext script running
every 5 minutes:
$BB $BBDISP "data $MACHINE.pcpu
`cat /tmp/pcpu.txt`
"
Sage
On 11/8/06, Charles Goyard <cgoyard (at) cvf.fr> wrote:
>
> On the server side of things I've modified the hobbitserver.cfg files'
> TEST2RRD and GRAPHS lines to append "pcpu_idle=ncv".
> I also have this line in the same file: NCV_pcpu_idle="pcpu_idle:GAUGE"
The problem comes from that your setup should read as :
TEST2RRD="$TEST2RRD,pcpu=ncv"
^-- match the name of the status
NCV_pcpu="pcpu_idle:GAUGE"
^-- same thing here
Regards,
--