Changing default graph resolution
list Bob Gordon
Hello - When a graph for any of the tests are shown, the default scale is 48 hours, however the user can zoom in on this graph to show a different time scale. Is there a way to change the default for specific graphs from the 48 hours to 8 or 12 hours? -- --==[ Bob Gordon ]==--
list Vernon Everett
Hi all
Anybody help me with graphing?
In hobbitgraph.cfg, I have the following definition, and it produces
wonderful, but somewhat cluttered graphs.
---snip---
[ora9-sga]
FNPATTERN tablespace.rrd
TITLE TableSpace Utilization
YAXIS % Full
DEF:xdb at RRDIDX@=@RRDFN@:siebprd_XDB:AVERAGE
DEF:whsidx at RRDIDX@=@RRDFN@:siebprd_WHS_INDEX:AVERAGE
DEF:whsdata at RRDIDX@=@RRDFN@:siebprd_WHS_DATA:AVERAGE
DEF:users at RRDIDX@=@RRDFN@:siebprd_USERS:AVERAGE
DEF:undotbs1 at RRDIDX@=@RRDFN@:siebprd_UNDOTBS1:AVERAGE
DEF:tools at RRDIDX@=@RRDFN@:siebprd_TOOLS:AVERAGE
DEF:system at RRDIDX@=@RRDFN@:siebprd_SYSTEM:AVERAGE
DEF:siebind at RRDIDX@=@RRDFN@:siebprd_SIEB_INDEX:AVERAGE
DEF:siebdata at RRDIDX@=@RRDFN@:siebprd_SIEB_DATA:AVERAGE
DEF:loader at RRDIDX@=@RRDFN@:siebprd_LOADER_DATA:AVERAGE
LINE2:xdb at RRDIDX@#@COLOR@:XDB
LINE2:whsidx at RRDIDX@#@COLOR@:WHS_INDEX
LINE2:whsdata at RRDIDX@#@COLOR@:WHS_DATA
LINE2:users at RRDIDX@#@COLOR@:USERS
LINE2:undotbs1 at RRDIDX@#@COLOR@:UNDO
LINE2:tools at RRDIDX@#@COLOR@:TOOLS
LINE2:system at RRDIDX@#@COLOR@:SYSTEM
LINE2:siebind at RRDIDX@#@COLOR@:SIEB_INDEX
LINE2:siebdata at RRDIDX@#@COLOR@:SIEB_DATA
LINE2:loader at RRDIDX@#@COLOR@:LOADER
-u 100
-l 0
---snip---
How do I get it to split this across 2 or even 3 graphs, like the disk
utilisation graphs.
Cheers
Vernon
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
NOTICE: This message and any attachments are confidential and may contain copyright material
of Australian Finance Group Limited or a third party. It is intended solely for the purpose of the
addressee and any other named recipient. If you are not the intended recipient, any use,
distribution, disclosure or copying of this message is strictly prohibited. The confidentiality attached
to this message is not waived or lost by reason of the mistaken transmission or delivery to any
unintended party. If you have received this message in error, please notify the author immediately or
contact Australian Finance Group on +61 8 9420 7888.
list Henrik Størner
▸
On Mon, May 23, 2005 at 05:59:27PM -0700, Bob Gordon wrote:
When a graph for any of the tests are shown, the default scale is 48 hours, however the user can zoom in on this graph to show a different time scale. Is there a way to change the default for specific graphs from the 48 hours to 8 or 12 hours?
No - neither for specific graphs nor globally. Henrik
list Henrik Størner
▸
On Tue, May 24, 2005 at 11:35:22AM +0800, Vernon Everett wrote:
In hobbitgraph.cfg, I have the following definition, and it produces
wonderful, but somewhat cluttered graphs.
---snip---
[ora9-sga]
FNPATTERN tablespace.rrd
TITLE TableSpace Utilization
YAXIS % Full
DEF:xdb at RRDIDX@=@RRDFN@:siebprd_XDB:AVERAGE
DEF:whsidx at RRDIDX@=@RRDFN@:siebprd_WHS_INDEX:AVERAGE
DEF:whsdata at RRDIDX@=@RRDFN@:siebprd_WHS_DATA:AVERAGE
DEF:users at RRDIDX@=@RRDFN@:siebprd_USERS:AVERAGE
DEF:undotbs1 at RRDIDX@=@RRDFN@:siebprd_UNDOTBS1:AVERAGE
DEF:tools at RRDIDX@=@RRDFN@:siebprd_TOOLS:AVERAGE
DEF:system at RRDIDX@=@RRDFN@:siebprd_SYSTEM:AVERAGE
DEF:siebind at RRDIDX@=@RRDFN@:siebprd_SIEB_INDEX:AVERAGE
DEF:siebdata at RRDIDX@=@RRDFN@:siebprd_SIEB_DATA:AVERAGE
DEF:loader at RRDIDX@=@RRDFN@:siebprd_LOADER_DATA:AVERAGE
LINE2:xdb at RRDIDX@#@COLOR@:XDB
LINE2:whsidx at RRDIDX@#@COLOR@:WHS_INDEX
LINE2:whsdata at RRDIDX@#@COLOR@:WHS_DATA
LINE2:users at RRDIDX@#@COLOR@:USERS
LINE2:undotbs1 at RRDIDX@#@COLOR@:UNDO
LINE2:tools at RRDIDX@#@COLOR@:TOOLS
LINE2:system at RRDIDX@#@COLOR@:SYSTEM
LINE2:siebind at RRDIDX@#@COLOR@:SIEB_INDEX
LINE2:siebdata at RRDIDX@#@COLOR@:SIEB_DATA
LINE2:loader at RRDIDX@#@COLOR@:LOADER
-u 100
-l 0
---snip---Minor nit: Since you only have one input file, the "@RRDIDX@" in all of the DEF and LINE definitions is ignored.
▸
How do I get it to split this across 2 or even 3 graphs, like the disk utilisation graphs.
You'll need to split them into multiple graph definitions. E.g. define
two graphs:
[ora9-sga]
FNPATTERN tablespace.rrd
TITLE TableSpace Utilization
YAXIS % Full
DEF:xdb=@RRDFN@:siebprd_XDB:AVERAGE
DEF:whsidx=@RRDFN@:siebprd_WHS_INDEX:AVERAGE
DEF:whsdata=@RRDFN@:siebprd_WHS_DATA:AVERAGE
DEF:users=@RRDFN@:siebprd_USERS:AVERAGE
DEF:undotbs1=@RRDFN@:siebprd_UNDOTBS1:AVERAGE
LINE2:xdb#@COLOR@:XDB
LINE2:whsidx#@COLOR@:WHS_INDEX
LINE2:whsdata#@COLOR@:WHS_DATA
LINE2:users#@COLOR@:USERS
LINE2:undotbs1#@COLOR@:UNDO
-u 100
-l 0
[ora9-sga1]
FNPATTERN tablespace.rrd
TITLE TableSpace Utilization
YAXIS % Full
DEF:tools=@RRDFN@:siebprd_TOOLS:AVERAGE
DEF:system=@RRDFN@:siebprd_SYSTEM:AVERAGE
DEF:siebind=@RRDFN@:siebprd_SIEB_INDEX:AVERAGE
DEF:siebdata=@RRDFN@:siebprd_SIEB_DATA:AVERAGE
DEF:loader=@RRDFN@:siebprd_LOADER_DATA:AVERAGE
LINE2:tools#@COLOR@:TOOLS
LINE2:system#@COLOR@:SYSTEM
LINE2:siebind#@COLOR@:SIEB_INDEX
LINE2:siebdata#@COLOR@:SIEB_DATA
LINE2:loader#@COLOR@:LOADER
-u 100
-l 0
Then to have them both displayed on the "ora9-sga" column, add a LARRD
tag to the host, like this:
1.2.3.4 db1.foo.com # LARRD:*,ora9-sga:ora9-sga|ora9-sga1
Henrik
list Vernon Everett
Hmmm
That's pretty much what I tried earlier (with a few lines in different
order), and it didn't work. I get the first (less populated) graph, but
not the second. :-(
Should this work with a bb client, or is it essential that I use a
hobbit client?
Cheers
Vernon
▸
-----Original Message-----
From: Henrik Stoerner [mailto:user-ce4a2c883f75@xymon.invalid]
Sent: Tuesday, 24 May 2005 2:00 PM
To: user-ae9b8668bcde@xymon.invalid
Subject: Re: [hobbit] Changing default graph resolution
On Tue, May 24, 2005 at 11:35:22AM +0800, Vernon Everett wrote:
In hobbitgraph.cfg, I have the following definition, and it produces
wonderful, but somewhat cluttered graphs.
---snip---
[ora9-sga]
FNPATTERN tablespace.rrd
TITLE TableSpace Utilization
YAXIS % Full
DEF:xdb at RRDIDX@=@RRDFN@:siebprd_XDB:AVERAGE
DEF:whsidx at RRDIDX@=@RRDFN@:siebprd_WHS_INDEX:AVERAGE
DEF:whsdata at RRDIDX@=@RRDFN@:siebprd_WHS_DATA:AVERAGE
DEF:users at RRDIDX@=@RRDFN@:siebprd_USERS:AVERAGE
DEF:undotbs1 at RRDIDX@=@RRDFN@:siebprd_UNDOTBS1:AVERAGE
DEF:tools at RRDIDX@=@RRDFN@:siebprd_TOOLS:AVERAGE
DEF:system at RRDIDX@=@RRDFN@:siebprd_SYSTEM:AVERAGE
DEF:siebind at RRDIDX@=@RRDFN@:siebprd_SIEB_INDEX:AVERAGE
DEF:siebdata at RRDIDX@=@RRDFN@:siebprd_SIEB_DATA:AVERAGE
DEF:loader at RRDIDX@=@RRDFN@:siebprd_LOADER_DATA:AVERAGE
LINE2:xdb at RRDIDX@#@COLOR@:XDB
LINE2:whsidx at RRDIDX@#@COLOR@:WHS_INDEX
LINE2:whsdata at RRDIDX@#@COLOR@:WHS_DATA
LINE2:users at RRDIDX@#@COLOR@:USERS
LINE2:undotbs1 at RRDIDX@#@COLOR@:UNDO
LINE2:tools at RRDIDX@#@COLOR@:TOOLS
LINE2:system at RRDIDX@#@COLOR@:SYSTEM
LINE2:siebind at RRDIDX@#@COLOR@:SIEB_INDEX
LINE2:siebdata at RRDIDX@#@COLOR@:SIEB_DATA
LINE2:loader at RRDIDX@#@COLOR@:LOADER
-u 100
-l 0
---snip---Minor nit: Since you only have one input file, the "@RRDIDX@" in all of the DEF and LINE definitions is ignored.
How do I get it to split this across 2 or even 3 graphs, like the disk utilisation graphs.
You'll need to split them into multiple graph definitions. E.g. define
two graphs:
[ora9-sga]
FNPATTERN tablespace.rrd
TITLE TableSpace Utilization
YAXIS % Full
DEF:xdb=@RRDFN@:siebprd_XDB:AVERAGE
DEF:whsidx=@RRDFN@:siebprd_WHS_INDEX:AVERAGE
DEF:whsdata=@RRDFN@:siebprd_WHS_DATA:AVERAGE
DEF:users=@RRDFN@:siebprd_USERS:AVERAGE
DEF:undotbs1=@RRDFN@:siebprd_UNDOTBS1:AVERAGE
LINE2:xdb#@COLOR@:XDB
LINE2:whsidx#@COLOR@:WHS_INDEX
LINE2:whsdata#@COLOR@:WHS_DATA
LINE2:users#@COLOR@:USERS
LINE2:undotbs1#@COLOR@:UNDO
-u 100
-l 0
[ora9-sga1]
FNPATTERN tablespace.rrd
TITLE TableSpace Utilization
YAXIS % Full
DEF:tools=@RRDFN@:siebprd_TOOLS:AVERAGE
DEF:system=@RRDFN@:siebprd_SYSTEM:AVERAGE
DEF:siebind=@RRDFN@:siebprd_SIEB_INDEX:AVERAGE
DEF:siebdata=@RRDFN@:siebprd_SIEB_DATA:AVERAGE
DEF:loader=@RRDFN@:siebprd_LOADER_DATA:AVERAGE
LINE2:tools#@COLOR@:TOOLS
LINE2:system#@COLOR@:SYSTEM
LINE2:siebind#@COLOR@:SIEB_INDEX
LINE2:siebdata#@COLOR@:SIEB_DATA
LINE2:loader#@COLOR@:LOADER
-u 100
-l 0
Then to have them both displayed on the "ora9-sga" column, add a LARRD
tag to the host, like this:
1.2.3.4 db1.foo.com # LARRD:*,ora9-sga:ora9-sga|ora9-sga1
Henrik
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
NOTICE: This message and any attachments are confidential and may contain copyright material
of Australian Finance Group Limited or a third party. It is intended solely for the purpose of the
addressee and any other named recipient. If you are not the intended recipient, any use,
distribution, disclosure or copying of this message is strictly prohibited. The confidentiality attached
to this message is not waived or lost by reason of the mistaken transmission or delivery to any
unintended party. If you have received this message in error, please notify the author immediately or
contact Australian Finance Group on +61 8 9420 7888.
list Henrik Størner
▸
On Tue, May 24, 2005 at 02:20:21PM +0800, Vernon Everett wrote:
That's pretty much what I tried earlier (with a few lines in different order), and it didn't work. I get the first (less populated) graph, but not the second. :-(
Are you looking at the "ora9-sga" status page, or the "trends" status page ? I admit - they should be identical, but for various reasons the LARRD:... setting is only used on the "trends" page.
▸
Should this work with a bb client, or is it essential that I use a hobbit client?
This is purely a server-side thing, so as long as you run Hobbit on the server side, it should work. Henrik
list Vernon Everett
Hi Henrik
Thanks for your prompt reply.
I was only looking at the ora9-sga page, but just went to have a peek at
the trends page.
No oracle graphs. But then there never has been. :-(
This might be relevant, it might not, but my iostat graphs are also
empty.
It prints the graph, and shows the cur/min/avg/max info very nicely, but
no data plot lines.
Others, like memory and vmstat look magic.
Cheers
V
▸
-----Original Message-----
From: Henrik Stoerner [mailto:user-ce4a2c883f75@xymon.invalid]
Sent: Tuesday, 24 May 2005 4:08 PM
To: user-ae9b8668bcde@xymon.invalid
Subject: Re: [hobbit] Changing default graph resolution
On Tue, May 24, 2005 at 02:20:21PM +0800, Vernon Everett wrote:That's pretty much what I tried earlier (with a few lines in different order), and it didn't work. I get the first (less populated) graph, but not the second. :-(
Are you looking at the "ora9-sga" status page, or the "trends" status page ? I admit - they should be identical, but for various reasons the LARRD:... setting is only used on the "trends" page.
Should this work with a bb client, or is it essential that I use a hobbit client?
This is purely a server-side thing, so as long as you run Hobbit on the server side, it should work. Henrik _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ NOTICE: This message and any attachments are confidential and may contain copyright material of Australian Finance Group Limited or a third party. It is intended solely for the purpose of the addressee and any other named recipient. If you are not the intended recipient, any use, distribution, disclosure or copying of this message is strictly prohibited. The confidentiality attached to this message is not waived or lost by reason of the mistaken transmission or delivery to any unintended party. If you have received this message in error, please notify the author immediately or contact Australian Finance Group on +61 8 9420 7888.
list Henrik Størner
▸
On Tue, May 24, 2005 at 04:19:07PM +0800, Vernon Everett wrote:
I was only looking at the ora9-sga page, but just went to have a peek at the trends page. No oracle graphs. But then there never has been. :-(
Try adding "tablespace" to the GRAPHS setting in hobbitserver.cfg
▸
This might be relevant, it might not, but my iostat graphs are also empty. It prints the graph, and shows the cur/min/avg/max info very nicely, but no data plot lines.
iostat has always been odd for me, also when using LARRD. Henrik
list Thomas Miller
Hi, I was also interested in splitting up some of the graphing data into multiple graphs under the various columns. If LARRD setting only applies to the trends column then is there a method to get multiple graphs on the other columns? Thanks Thomas Miller
▸
-----Original Message-----
From: Henrik Stoerner [mailto:user-ce4a2c883f75@xymon.invalid]
Sent: Tuesday, May 24, 2005 4:08 AM
To: user-ae9b8668bcde@xymon.invalid
Subject: Re: [hobbit] Changing default graph resolution
On Tue, May 24, 2005 at 02:20:21PM +0800, Vernon Everett wrote:That's pretty much what I tried earlier (with a few lines in different order), and it didn't work. I get the first (less populated) graph, but not the second. :-(
Are you looking at the "ora9-sga" status page, or the "trends" status page ? I admit - they should be identical, but for various reasons the LARRD:... setting is only used on the "trends" page.
Should this work with a bb client, or is it essential that I use a hobbit client?
This is purely a server-side thing, so as long as you run Hobbit on the server side, it should work. Henrik
list Anatoli Bogajewski
Hello all, is the below described LARRD option still available? i was trying to display two different graphs for an extra test but it seems to be not working. hm.. i.g. - if i try to display [disk] and [disk1] graphs on one page nothing happens... 1.2.3.4 myhost # LARRD:*,disk:disk|disk1 thanks. Marry X-mas everyone ;) Best wishes, Anatoli user-ce4a2c883f75@xymon.invalid schrieb am 24.05.2005 07:59:40:
▸
On Tue, May 24, 2005 at 11:35:22AM +0800, Vernon Everett wrote:In hobbitgraph.cfg, I have the following definition, and it produces wonderful, but somewhat cluttered graphs. ---snip--- [ora9-sga] FNPATTERN tablespace.rrd TITLE TableSpace Utilization YAXIS % Full DEF:xdb at RRDIDX@=@RRDFN@:siebprd_XDB:AVERAGE DEF:whsidx at RRDIDX@=@RRDFN@:siebprd_WHS_INDEX:AVERAGE DEF:whsdata at RRDIDX@=@RRDFN@:siebprd_WHS_DATA:AVERAGE DEF:users at RRDIDX@=@RRDFN@:siebprd_USERS:AVERAGE DEF:undotbs1 at RRDIDX@=@RRDFN@:siebprd_UNDOTBS1:AVERAGE DEF:tools at RRDIDX@=@RRDFN@:siebprd_TOOLS:AVERAGE DEF:system at RRDIDX@=@RRDFN@:siebprd_SYSTEM:AVERAGE DEF:siebind at RRDIDX@=@RRDFN@:siebprd_SIEB_INDEX:AVERAGE DEF:siebdata at RRDIDX@=@RRDFN@:siebprd_SIEB_DATA:AVERAGE DEF:loader at RRDIDX@=@RRDFN@:siebprd_LOADER_DATA:AVERAGE LINE2:xdb at RRDIDX@#@COLOR@:XDB LINE2:whsidx at RRDIDX@#@COLOR@:WHS_INDEX LINE2:whsdata at RRDIDX@#@COLOR@:WHS_DATA LINE2:users at RRDIDX@#@COLOR@:USERS LINE2:undotbs1 at RRDIDX@#@COLOR@:UNDO LINE2:tools at RRDIDX@#@COLOR@:TOOLS LINE2:system at RRDIDX@#@COLOR@:SYSTEM LINE2:siebind at RRDIDX@#@COLOR@:SIEB_INDEX LINE2:siebdata at RRDIDX@#@COLOR@:SIEB_DATA LINE2:loader at RRDIDX@#@COLOR@:LOADER -u 100 -l 0 ---snip---Minor nit: Since you only have one input file, the "@RRDIDX@" in all of the DEF and LINE definitions is ignored.How do I get it to split this across 2 or even 3 graphs, like the disk utilisation graphs.You'll need to split them into multiple graph definitions. E.g. define two graphs: [ora9-sga] FNPATTERN tablespace.rrd TITLE TableSpace Utilization YAXIS % Full DEF:xdb=@RRDFN@:siebprd_XDB:AVERAGE DEF:whsidx=@RRDFN@:siebprd_WHS_INDEX:AVERAGE DEF:whsdata=@RRDFN@:siebprd_WHS_DATA:AVERAGE DEF:users=@RRDFN@:siebprd_USERS:AVERAGE DEF:undotbs1=@RRDFN@:siebprd_UNDOTBS1:AVERAGE LINE2:xdb#@COLOR@:XDB LINE2:whsidx#@COLOR@:WHS_INDEX LINE2:whsdata#@COLOR@:WHS_DATA LINE2:users#@COLOR@:USERS LINE2:undotbs1#@COLOR@:UNDO -u 100 -l 0 [ora9-sga1] FNPATTERN tablespace.rrd TITLE TableSpace Utilization YAXIS % Full DEF:tools=@RRDFN@:siebprd_TOOLS:AVERAGE DEF:system=@RRDFN@:siebprd_SYSTEM:AVERAGE DEF:siebind=@RRDFN@:siebprd_SIEB_INDEX:AVERAGE DEF:siebdata=@RRDFN@:siebprd_SIEB_DATA:AVERAGE DEF:loader=@RRDFN@:siebprd_LOADER_DATA:AVERAGE LINE2:tools#@COLOR@:TOOLS LINE2:system#@COLOR@:SYSTEM LINE2:siebind#@COLOR@:SIEB_INDEX LINE2:siebdata#@COLOR@:SIEB_DATA LINE2:loader#@COLOR@:LOADER -u 100 -l 0 Then to have them both displayed on the "ora9-sga" column, add a LARRD tag to the host, like this: 1.2.3.4 db1.foo.com # LARRD:*,ora9-sga:ora9-sga|ora9-sga1 Henrik
list Anatoli Bogajewski
Oh.. it works.. at least for the disk tests. But only on trends page and not for my custom test. I collect data for two device parameters and store them in one rrd file. i have two graph definitions [mytest-def1] and [mytest-def2] using this definition in hobbitserver.cfg.. TEST2RRD="..mytest=mytest-def1.." GRAPHS="..mytest-def1,mytest-def2.." ..the mytest-def1 graph appears only on mytest age, not on trends. i would like to display them both on mytest page, or at least both on trends. any ideas? thanks... user-4d3800b5a33a@xymon.invalid schrieb am 22.12.2005 14:32:47:
▸
Hello all, is the below described LARRD option still available? i was trying to display two different graphs for an extra test but it seems to be not working. hm.. i.g. - if i try to display [disk] and [disk1] graphs on one page nothing happens... 1.2.3.4 myhost # LARRD:*,disk:disk|disk1 thanks. Marry X-mas everyone ;) Best wishes, Anatoli user-ce4a2c883f75@xymon.invalid schrieb am 24.05.2005 07:59:40:On Tue, May 24, 2005 at 11:35:22AM +0800, Vernon Everett wrote:In hobbitgraph.cfg, I have the following definition, and it produces wonderful, but somewhat cluttered graphs. ---snip--- [ora9-sga] FNPATTERN tablespace.rrd TITLE TableSpace Utilization YAXIS % Full DEF:xdb at RRDIDX@=@RRDFN@:siebprd_XDB:AVERAGE DEF:whsidx at RRDIDX@=@RRDFN@:siebprd_WHS_INDEX:AVERAGE DEF:whsdata at RRDIDX@=@RRDFN@:siebprd_WHS_DATA:AVERAGE DEF:users at RRDIDX@=@RRDFN@:siebprd_USERS:AVERAGE DEF:undotbs1 at RRDIDX@=@RRDFN@:siebprd_UNDOTBS1:AVERAGE DEF:tools at RRDIDX@=@RRDFN@:siebprd_TOOLS:AVERAGE DEF:system at RRDIDX@=@RRDFN@:siebprd_SYSTEM:AVERAGE DEF:siebind at RRDIDX@=@RRDFN@:siebprd_SIEB_INDEX:AVERAGE DEF:siebdata at RRDIDX@=@RRDFN@:siebprd_SIEB_DATA:AVERAGE DEF:loader at RRDIDX@=@RRDFN@:siebprd_LOADER_DATA:AVERAGE LINE2:xdb at RRDIDX@#@COLOR@:XDB LINE2:whsidx at RRDIDX@#@COLOR@:WHS_INDEX LINE2:whsdata at RRDIDX@#@COLOR@:WHS_DATA LINE2:users at RRDIDX@#@COLOR@:USERS LINE2:undotbs1 at RRDIDX@#@COLOR@:UNDO LINE2:tools at RRDIDX@#@COLOR@:TOOLS LINE2:system at RRDIDX@#@COLOR@:SYSTEM LINE2:siebind at RRDIDX@#@COLOR@:SIEB_INDEX LINE2:siebdata at RRDIDX@#@COLOR@:SIEB_DATA LINE2:loader at RRDIDX@#@COLOR@:LOADER -u 100 -l 0 ---snip---Minor nit: Since you only have one input file, the "@RRDIDX@" in all of the DEF and LINE definitions is ignored.How do I get it to split this across 2 or even 3 graphs, like the disk utilisation graphs.You'll need to split them into multiple graph definitions. E.g. define two graphs: [ora9-sga] FNPATTERN tablespace.rrd TITLE TableSpace Utilization YAXIS % Full DEF:xdb=@RRDFN@:siebprd_XDB:AVERAGE DEF:whsidx=@RRDFN@:siebprd_WHS_INDEX:AVERAGE DEF:whsdata=@RRDFN@:siebprd_WHS_DATA:AVERAGE DEF:users=@RRDFN@:siebprd_USERS:AVERAGE DEF:undotbs1=@RRDFN@:siebprd_UNDOTBS1:AVERAGE LINE2:xdb#@COLOR@:XDB LINE2:whsidx#@COLOR@:WHS_INDEX LINE2:whsdata#@COLOR@:WHS_DATA LINE2:users#@COLOR@:USERS LINE2:undotbs1#@COLOR@:UNDO -u 100 -l 0 [ora9-sga1] FNPATTERN tablespace.rrd TITLE TableSpace Utilization YAXIS % Full DEF:tools=@RRDFN@:siebprd_TOOLS:AVERAGE DEF:system=@RRDFN@:siebprd_SYSTEM:AVERAGE DEF:siebind=@RRDFN@:siebprd_SIEB_INDEX:AVERAGE DEF:siebdata=@RRDFN@:siebprd_SIEB_DATA:AVERAGE DEF:loader=@RRDFN@:siebprd_LOADER_DATA:AVERAGE LINE2:tools#@COLOR@:TOOLS LINE2:system#@COLOR@:SYSTEM LINE2:siebind#@COLOR@:SIEB_INDEX LINE2:siebdata#@COLOR@:SIEB_DATA LINE2:loader#@COLOR@:LOADER -u 100 -l 0 Then to have them both displayed on the "ora9-sga" column, add a LARRD tag to the host, like this: 1.2.3.4 db1.foo.com # LARRD:*,ora9-sga:ora9-sga|ora9-sga1 Henrik