[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [hobbit] Invalid DS name
- To: hobbit (at) hswn.dk
- Subject: Re: [hobbit] Invalid DS name
- From: "John Glowacki" <jg2727 (at) gmail.com>
- Date: Tue, 22 Apr 2008 11:34:00 -0400
- 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:content-transfer-encoding:content-disposition:references; bh=bCwAizxKV02jPa4iyYEZDUVeEya+ZwGRLw2aWW6vRLs=; b=In4vKkk5pE/W2VLvjm+m3+nBzD9IJ9o7WoJwhbIPxad+dZ0oJAOteAZrFBLilkZE8npivenosL2EQMv0nkOl9NgSwrzjqOZtJaycTpVSo7g/NoPHM96BA+axFY8BAU0tjAe4fQSIBc9BqDNgtUlkukcbdAL3uiYcvQe8d31DX/A=
- 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:content-transfer-encoding:content-disposition:references; b=FBWGw/8Dc7QaKFqVdPXnS3gPKu7Brdqw70hCW53XAKU9aV/W1AZQwq+HgJT+7hjmkN/TmNhx4SkEo3K+oCrRVd+BoBOuIlcgGSRtn8NorrClsVq5msSLBbrCijIRtzp6HrDcdLLb997cd0QtEMPQKK4H1jIchMnRNs0Vsf7NGaE=
- References: <2030c7380804161025k69326275ke2a941526d229ceb (at) mail.gmail.com> <20080421205557.GD29174 (at) hswn.dk>
On Mon, Apr 21, 2008 at 4:55 PM, Henrik Stoerner <henrik (at) hswn.dk> wrote:
> On Wed, Apr 16, 2008 at 01:25:50PM -0400, John Glowacki wrote:
> > I am getting the following "Invalid DS name" error in rrd-status.log
> > while testing what I can do with hobbit_snmpcollect running 20080405
> > snapshot. Do I have a configuration issue or is this a code issue? I
> > just had a thought. Is it the quotes need to be stripped out or
> > converted?
>
> The quotes look odd, but that is not the "Invalid DS name" problem.
> This is caused by your dataset names being excessively long. E.g. you
> have a "dfPerCentKBytesCapacity" dataset - this is 24 letters, but
> RRDtool limits names to 19 characters.
>
>
> > ["/vol/testvol/"]
> > dfIndex = 17
> > dfMountedOn = "/vol/testvol/"
>
> Yikes ... the MIB probably has this defined as an "octet string", so
> why bother quoting it ?
>
>
> Henrik
Thanks Henrik,
I used a shorter name. It now creates the rrd files with the quotes.
I'm not thrilled about the quotes, but it is working.
-rw-r--r-- 1 bb users 190408 Apr 22 10:19 netappvolume.",vol,testvol,".rrd
-rw-r--r-- 1 bb users 190408 Apr 22 10:14
netappvolume.",vol,testvol,.snapshot".rrd
In hobbitgraph.cfg I was able to exclude the quotes from displaying in
the graphs. It looks much better that way.
[netappvolume]
FNPATTERN ^netappvolume.\"(.*)\".rrd
Yes, looking at the mib it's a DisplayString/octet string. I have not
found an explanation for the quoting.
DfEntry ::=
SEQUENCE {
dfIndex
INTEGER,
dfFileSys
DisplayString,
Some of the volume names are ending in "/..". I asked one of a our
storage guys to look at it. I am starting to think it might have to do
with an option on the snapshot volumes.
["/vol/pcluns/.."]
dfIndex = 14
dfMountedOn = "/vol/pcluns/.."
["/vol/pcluns/"]
dfIndex = 13
dfMountedOn = "/vol/pcluns/"
John