[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [hobbit] Graphs missing titles and data points
- To: hobbit (at) hswn.dk
- Subject: Re: [hobbit] Graphs missing titles and data points
- From: "Ralph Mitchell" <ralphmitchell (at) gmail.com>
- Date: Thu, 5 Jun 2008 13:14:02 -0500
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:in-reply-to:mime-version:content-type:references; bh=Yi/ctWl4OpVKu+4aEFhxDIMEJcTt6i6wbJbdaaa4Pu8=; b=RzVSGCbyX1F14XzIQ2C/boN03wgiiBdGoYuGyTlpSUAjovxAzBBDlKPbA5RIQcQiTi pXhuX4MyHRvYAYAyt52E0z7aO+lyrQoMY1n99b31OHHO46OPXXjYgbHblp4gM4NnRzu/ TVCaiLBkXIRF9NblslZs2Xcc9MFUZfi3RPFPw=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version :content-type:references; b=WLjMfgLz/j6f5B31HGizt/L0MHDijSwMBwWALbIHGNb+4WveKEFTS2V6VmuoLWDdVC 9FxpAr5ECWspFVXQkRUqDJdDAKNcCbF6qPgH+iVKAneopfvMbzK3j3sHKTg2ZhJmkmH8 khH57Sv2GcrUqFukHEqUSeWe4UvJPSdOUgVTc=
- References: <484820FD.10803 (at) mobsternet.com>
On Thu, Jun 5, 2008 at 12:23 PM, Moby <moby (at) mobsternet.com> wrote:
> I am running three different Hobbit servers at three different sites and
> all work great except one.
> On the one not running great, I see everything fine except that all graphs
> are missing titles and lables along grid lines. Other than this missing
> text on the graphs, the graphs show the data fine.
> For the life of me I cannot figure out the difference between this
> misbehaving installation of Hobbit and the other two that are working great.
> Could anyone offer any hints as to where to look?
If it's only text missing, you might want to check that the server has the
same fonts installed as on the other two servers.
You could also try manually generating the graphs and see if rrdtool
complains about anything. For example, I have Hobbit on a Gentoo server
called lorien, so I can generate the cpu load graph manually like this:
rrdtool graph /var/www/localhost/htdocs/la.png \
"DEF:avg=/home/hobbit/data/rrd/lorien/la.rrd:la:AVERAGE" \
"CDEF:la=avg,100,/" \
"AREA:la#00CC00:CPU Load Average"
rrdtool responds with "481x168" which is the pixel size of the image
generated. I can then load that image in a browser at
http://localhost/la.png. The DEF, CDEF & AREA lines come from the
server/etc/hobbitgraph.cfg file.
Ralph Mitchell