Code

e7a9505f4dc15d9f694d3c4665f513588f5354e2
[pkg-rrdtool.git] / doc / rrdgraph.html
1 <?xml version="1.0" ?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml">
4 <head>
5 <title>rrdgraph</title>
6 <meta http-equiv="content-type" content="text/html; charset=utf-8" />
7 <link rev="made" href="mailto:root@localhost" />
8 </head>
10 <body style="background-color: white">
12 <p><a name="__index__"></a></p>
13 <!-- INDEX BEGIN -->
14 <!--
16 <ul>
18         <li><a href="#name">NAME</a></li>
19         <li><a href="#synopsis">SYNOPSIS</a></li>
20         <li><a href="#description">DESCRIPTION</a></li>
21         <li><a href="#overview">OVERVIEW</a></li>
22         <li><a href="#options">OPTIONS</a></li>
23         <li><a href="#see_also">SEE ALSO</a></li>
24         <li><a href="#author">AUTHOR</a></li>
25 </ul>
26 -->
27 <!-- INDEX END -->
29 <p>
30 </p>
31 <h1><a name="name">NAME</a></h1>
32 <p>rrdgraph - Round Robin Database tool grapher functions</p>
33 <p>
34 </p>
35 <hr />
36 <h1><a name="synopsis">SYNOPSIS</a></h1>
37 <p><strong>rrdtool graph</strong> <em>filename</em>
38 [<em><a href="././rrdgraph.html#options">option</a></em> ...]
39 [<em><a href="././rrdgraph_data.html#def">data definition</a></em> ...]
40 [<em><a href="././rrdgraph_data.html#cdef">data calculation</a></em> ...]
41 [<em><a href="././rrdgraph_data.html#vdef">variable definition</a></em> ...]
42 [<em><a href="././rrdgraph_graph.html#graph">graph element</a></em> ...]
43 [<em><a href="././rrdgraph_graph.html#print">print element</a></em> ...]</p>
44 <p>
45 </p>
46 <hr />
47 <h1><a name="description">DESCRIPTION</a></h1>
48 <p>The <strong>graph</strong> function of <strong>RRDtool</strong> is used to present the
49 data from an <strong>RRD</strong> to a human viewer.  Its main purpose is to
50 create a nice graphical representation, but it can also generate
51 a numerical report.</p>
52 <p>
53 </p>
54 <hr />
55 <h1><a name="overview">OVERVIEW</a></h1>
56 <p><strong>rrdtool graph</strong> needs data to work with, so you must use one or more
57 <strong><a href="././rrdgraph_data.html#def">data definition</a></strong> statements to collect this
58 data.  You are not limited to one database, it's perfectly legal to
59 collect data from two or more databases (one per statement, though).</p>
60 <p>If you want to display averages, maxima, percentiles, etcetera
61 it is best to collect them now using the
62 <strong><a href="././rrdgraph_data.html#vdef">variable definition</a></strong> statement.
63 Currently this makes no difference, but in a future version
64 of rrdtool you may want to collect these values before consolidation.</p>
65 <p>The data fetched from the <strong>RRA</strong> is then <strong>consolidated</strong> so that
66 there is exactly one datapoint per pixel in the graph. If you do
67 not take care yourself, <strong>RRDtool</strong> will expand the range slightly
68 if necessary. Note, in that case the first and/or last pixel may very
69 well become unknown!</p>
70 <p>Sometimes data is not exactly in the format you would like to display
71 it. For instance, you might be collecting <strong>bytes</strong> per second, but
72 want to display <strong>bits</strong> per second. This is what the <strong><a href="././rrdgraph_data.html#cdef">data calculation</a></strong> command is designed for. After
73 <strong>consolidating</strong> the data, a copy is made and this copy is modified
74 using a rather powerful <a href="././rrdgraph_rpn.html">the rrdgraph_rpn manpage</a> command set.</p>
75 <p>When you are done fetching and processing the data, it is time to
76 graph it (or print it).  This ends the <strong>rrdtool graph</strong> sequence.</p>
77 <p>
78 </p>
79 <hr />
80 <h1><a name="options">OPTIONS</a></h1>
81 <dl>
82 <dt><strong><a name="item_filename">filename</a></strong>
84 <dd>
85 <p>The name and path of the graph to generate. It is recommended to
86 end this in <code>.png</code>, <code>.svg</code> or <code>.eps</code>, but <strong>RRDtool</strong> does not enforce this.</p>
87 </dd>
88 <dd>
89 <p><em>filename</em> can be '<code>-</code>' to send the image to <code>stdout</code>. In
90 this case, no other output is generated.</p>
91 </dd>
92 </li>
93 <dt><strong><a name="item_time_range">Time range</a></strong>
95 <dd>
96 <p>[<strong>-s</strong>|<strong>--start</strong> <em>time</em>]
97 [<strong>-e</strong>|<strong>--end</strong> <em>time</em>]
98 [<strong>-S</strong>|<strong>--step</strong> <em>seconds</em>]</p>
99 </dd>
100 <dd>
101 <p>The start and end of the time series you would like to display, and which
102 <strong>RRA</strong> the data should come from.  Defaults are: 1 day ago until
103 now, with the best possible resolution. <strong>Start</strong> and <strong>end</strong> can
104 be specified in several formats, see
105 <a href="././rrdfetch.html">the rrdfetch manpage</a> and <a href="././rrdgraph_examples.html">the rrdgraph_examples manpage</a>.
106 By default, <strong>rrdtool graph</strong> calculates the width of one pixel in
107 the time domain and tries to get data from an <strong>RRA</strong> with that
108 resolution.  With the <strong>step</strong> option you can alter this behaviour.
109 If you want <strong>rrdtool graph</strong> to get data at a one-hour resolution
110 from the <strong>RRD</strong>, set <strong>step</strong> to 3'600. Note: a step smaller than
111 one pixel will silently be ignored.</p>
112 </dd>
113 </li>
114 <dt><strong><a name="item_labels">Labels</a></strong>
116 <dd>
117 <p>[<strong>-t</strong>|<strong>--title</strong> <em>string</em>]
118 [<strong>-v</strong>|<strong>--vertical-label</strong> <em>string</em>]</p>
119 </dd>
120 <dd>
121 <p>A horizontal string at the top of the graph and/or a vertically
122 placed string at the left hand side of the graph.</p>
123 </dd>
124 </li>
125 <dt><strong><a name="item_size">Size</a></strong>
127 <dd>
128 <p>[<strong>-w</strong>|<strong>--width</strong> <em>pixels</em>]
129 [<strong>-h</strong>|<strong>--height</strong> <em>pixels</em>]
130 [<strong>-j</strong>|<strong>--only-graph</strong>]</p>
131 </dd>
132 <dd>
133 <p>The width and height of the <strong>canvas</strong> (the part of the graph with
134 the actual data and such). This defaults to 400 pixels by 100 pixels.</p>
135 </dd>
136 <dd>
137 <p>If you specify the <strong>--only-graph</strong> option and set the height &lt; 32
138 pixels you will get a tiny graph image (thumbnail) to use as an icon
139 for use in an overview, for example. All labeling will be stripped off
140 the graph.</p>
141 </dd>
142 </li>
143 <dt><strong><a name="item_limits">Limits</a></strong>
145 <dd>
146 <p>[<strong>-u</strong>|<strong>--upper-limit</strong> <em>value</em>]
147 [<strong>-l</strong>|<strong>--lower-limit</strong> <em>value</em>]
148 [<strong>-r</strong>|<strong>--rigid</strong>]</p>
149 </dd>
150 <dd>
151 <p>By default the graph will be autoscaling so that it will adjust the
152 y-axis to the range of the data. You can change this behaviour by
153 explicitly setting the limits. The displayed y-axis will then range at
154 least from <strong>lower-limit</strong> to <strong>upper-limit</strong>. Autoscaling will still
155 permit those boundaries to be stretched unless the <strong>rigid</strong> option is
156 set.</p>
157 </dd>
158 <dd>
159 <p>[<strong>-A</strong>|<strong>--alt-autoscale</strong>]</p>
160 </dd>
161 <dd>
162 <p>Sometimes the default algorithm for selecting the y-axis scale is not
163 satisfactory. Normally the scale is selected from a predefined
164 set of ranges and this fails miserably when you need to graph something
165 like <code>260 + 0.001 * sin(x)</code>. This option calculates the minimum and
166 maximum y-axis from the actual minimum and maximum data values. Our example
167 would display slightly less than <code>260-0.001</code> to slightly more than
168 <code>260+0.001</code> (this feature was contributed by Sasha Mikheev).</p>
169 </dd>
170 <dd>
171 <p>[<strong>-J</strong>|<strong>--alt-autoscale-min</strong>]</p>
172 </dd>
173 <dd>
174 <p>Where <code>--alt-autoscale</code> will modify both the absolute maximum AND minimum
175 values, this option will only affect the minimum value. The maximum
176 value, if not defined on the command line, will be 0. This option can
177 be useful when graphing router traffic when the WAN line uses compression,
178 and thus the throughput may be higher than the WAN line speed.</p>
179 </dd>
180 <dd>
181 <p>[<strong>-M</strong>|<strong>--alt-autoscale-max</strong>]</p>
182 </dd>
183 <dd>
184 <p>Where <code>--alt-autoscale</code> will modify both the absolute maximum AND minimum
185 values, this option will only affect the maximum value. The minimum
186 value, if not defined on the command line, will be 0. This option can
187 be useful when graphing router traffic when the WAN line uses compression,
188 and thus the throughput may be higher than the WAN line speed.</p>
189 </dd>
190 <dd>
191 <p>[<strong>-N</strong>|<strong>--no-gridfit</strong>]</p>
192 </dd>
193 <dd>
194 <p>In order to avoid anti-aliasing effects gridlines are placed on
195 integer pixel values. This is by default done by extending
196 the scale so that gridlines happens to be spaced using an
197 integer number of pixels and also start on an integer pixel value.
198 This might extend the scale too much for some logarithmic scales
199 and for linear scales where <strong>--alt-autoscale</strong> is needed.
200 Using <strong>--no-gridfit</strong> disables modification of the scale.</p>
201 </dd>
202 </li>
203 <dt><strong><a name="item_x_2dgrid">X-Grid</a></strong>
205 <dd>
206 <p>[<strong>-x</strong>|<strong>--x-grid</strong> <em>GTM</em><strong>:</strong><em>GST</em><strong>:</strong><em>MTM</em><strong>:</strong><em>MST</em><strong>:</strong><em>LTM</em><strong>:</strong><em>LST</em><strong>:</strong><em>LPR</em><strong>:</strong><em>LFM</em>]</p>
207 </dd>
208 <dd>
209 <p>[<strong>-x</strong>|<strong>--x-grid</strong> <strong>none</strong>]</p>
210 </dd>
211 <dd>
212 <p>The x-axis label is quite complex to configure. If you don't have
213 very special needs it is probably best to rely on the autoconfiguration
214 to get this right. You can specify the string <code>none</code> to suppress the grid
215 and labels altogether.</p>
216 </dd>
217 <dd>
218 <p>The grid is defined by specifying a certain amount of time in the <em>?TM</em>
219 positions. You can choose from <code>SECOND</code>, <code>MINUTE</code>, <code>HOUR</code>, <code>DAY</code>,
220 <code>WEEK</code>, <code>MONTH</code> or <code>YEAR</code>. Then you define how many of these should
221 pass between each line or label.  This pair (<em>?TM:?ST</em>) needs to be
222 specified for the base grid (<em>G??</em>), the major grid (<em>M??</em>) and the
223 labels (<em>L??</em>). For the labels you also must define a precision
224 in <em>LPR</em> and a <em>strftime</em> format string in <em>LFM</em>.  <em>LPR</em> defines
225 where each label will be placed. If it is zero, the label will be
226 placed right under the corresponding line (useful for hours, dates
227 etcetera).  If you specify a number of seconds here the label is
228 centered on this interval (useful for Monday, January etcetera).</p>
229 </dd>
230 <dd>
231 <pre>
232  --x-grid MINUTE:10:HOUR:1:HOUR:4:0:%X</pre>
233 </dd>
234 <dd>
235 <p>This places grid lines every 10 minutes, major grid lines every hour,
236 and labels every 4 hours. The labels are placed under the major grid
237 lines as they specify exactly that time.</p>
238 </dd>
239 <dd>
240 <pre>
241  --x-grid HOUR:8:DAY:1:DAY:1:0:%A</pre>
242 </dd>
243 <dd>
244 <p>This places grid lines every 8 hours, major grid lines and labels
245 each day. The labels are placed exactly between two major grid lines
246 as they specify the complete day and not just midnight.</p>
247 </dd>
248 </li>
249 <dt><strong><a name="item_y_2dgrid">Y-Grid</a></strong>
251 <dd>
252 <p>[<strong>-y</strong>|<strong>--y-grid</strong> <em>grid step</em><strong>:</strong><em>label factor</em>]</p>
253 </dd>
254 <dd>
255 <p>[<strong>-y</strong>|<strong>--y-grid</strong> <strong>none</strong>]</p>
256 </dd>
257 <dd>
258 <p>Y-axis grid lines appear at each <em>grid step</em> interval.  Labels are
259 placed every <em>label factor</em> lines.  You can specify <code>-y none</code> to
260 suppress the grid and labels altogether.  The default for this option is
261 to automatically select sensible values.</p>
262 </dd>
263 <dd>
264 <p>If you have set --y-grid to 'none' not only the labels get supressed, also
265 the space reserved for the labels is removed. You can still add space
266 manually if you use the --units-length command to explicitly reserve space.</p>
267 </dd>
268 <dd>
269 <p>[<strong>-Y</strong>|<strong>--alt-y-grid</strong>]</p>
270 </dd>
271 <dd>
272 <p>Place the Y grid dynamically based on the graph's Y range. The algorithm
273 ensures that you always have a grid, that there are enough but not too many
274 grid lines, and that the grid is metric. That is the grid lines are placed
275 every 1, 2, 5 or 10 units. This parameter will also ensure that you get
276 enough decimals displayed even if your graph goes from 69.998 to 70.001. 
277 (contributed by Sasha Mikheev).</p>
278 </dd>
279 <dd>
280 <p>[<strong>-o</strong>|<strong>--logarithmic</strong>]</p>
281 </dd>
282 <dd>
283 <p>Logarithmic y-axis scaling.</p>
284 </dd>
285 <dd>
286 <p>[<strong>-X</strong>|<strong>--units-exponent</strong> <em>value</em>]</p>
287 </dd>
288 <dd>
289 <p>This sets the 10**exponent scaling of the y-axis values. Normally,
290 values will be scaled to the appropriate units (k, M, etc.).  However,
291 you may wish to display units always in k (Kilo, 10e3) even if the data
292 is in the M (Mega, 10e6) range, for instance. Value should be an
293 integer which is a multiple of 3 between -18 and 18 inclusively.  It is
294 the exponent on the units you wish to use. For example, use 3 to
295 display the y-axis values in k (Kilo, 10e3, thousands), use -6 to
296 display the y-axis values in u (Micro, 10e-6, millionths).  Use a value
297 of 0 to prevent any scaling of the y-axis values.</p>
298 </dd>
299 <dd>
300 <p>This option is very effective at confusing the heck out of the default
301 rrdtool autoscaler and grid painter. If rrdtool detects that it is not
302 successful in labeling the graph under the given circumstances, it will switch
303 to the more robust <strong>--alt-y-grid</strong> mode.</p>
304 </dd>
305 <dd>
306 <p>[<strong>-L</strong>|<strong>--units-length</strong> <em>value</em>]</p>
307 </dd>
308 <dd>
309 <p>How many digits should rrdtool assume the y-axis labels to be? You
310 may have to use this option to make enough space once you start
311 fideling with the y-axis labeling.</p>
312 </dd>
313 <dd>
314 <p>[<strong>--units=si</strong>]</p>
315 </dd>
316 <dd>
317 <p>With this option y-axis values on logarithmic graphs will be scaled to 
318 the appropriate units (k, M, etc.) instead of using exponential notation.
319 Note that for linear graphs, SI notation is used by default.</p>
320 </dd>
321 </li>
322 <dt><strong><a name="item_miscellaneous">Miscellaneous</a></strong>
324 <dd>
325 <p>[<strong>-z</strong>|<strong>--lazy</strong>]</p>
326 </dd>
327 <dd>
328 <p>Only generate the graph if the current graph is out of date or not
329 existent.</p>
330 </dd>
331 <dd>
332 <p>[<strong>-f</strong>|<strong>--imginfo</strong> <em>printfstr</em>]</p>
333 </dd>
334 <dd>
335 <p>After the image has been created, the graph function uses printf
336 together with this format string to create output similar to the PRINT
337 function, only that the printf function is supplied with the parameters
338 <em>filename</em>, <em>xsize</em> and <em>ysize</em>. In order to generate an <strong>IMG</strong> tag
339 suitable for including the graph into a web page, the command line
340 would look like this:</p>
341 </dd>
342 <dd>
343 <pre>
344  --imginfo '&lt;IMG SRC=&quot;/img/%s&quot; WIDTH=&quot;%lu&quot; HEIGHT=&quot;%lu&quot; ALT=&quot;Demo&quot;&gt;'</pre>
345 </dd>
346 <dd>
347 <p>[<strong>-c</strong>|<strong>--color</strong> <em>COLORTAG</em>#<em>rrggbb</em>[<em>aa</em>]]</p>
348 </dd>
349 <dd>
350 <p>Override the default colors for the standard elements of the graph. The
351 <em>COLORTAG</em> is one of <code>BACK</code> background, <code>CANVAS</code> for the background of
352 the actual graph, <code>SHADEA</code> for the left and top border, <code>SHADEB</code> for the
353 right and bottom border, <code>GRID</code>, <code>MGRID</code> for the major grid, <code>FONT</code> for
354 the color of the font, <code>AXIS</code> for the axis of the graph, <code>FRAME</code> for the
355 line around the color spots and finally <code>ARROW</code> for the arrow head pointing
356 up and forward. Each color is composed out of three hexadecimal numbers
357 specifying its rgb color component (00 is off, FF is maximum) of red, green
358 and blue. Optionally you may add another hexadecimal number specifying the
359 transparency (FF is solid). You may set this option several times to alter
360 multiple defaults.</p>
361 </dd>
362 <dd>
363 <p>A green arrow is made by: <code>--color ARROW#00FF00</code></p>
364 </dd>
365 <dd>
366 <p>[<strong>--zoom</strong> <em>factor</em>]</p>
367 </dd>
368 <dd>
369 <p>Zoom the graphics by the given amount. The factor must be &gt; 0</p>
370 </dd>
371 <dd>
372 <p>[<strong>-n</strong>|<strong>--font</strong> <em>FONTTAG</em><strong>:</strong><em>size</em><strong>:</strong>[<em>font</em>]]</p>
373 </dd>
374 <dd>
375 <p>This lets you customize which font to use for the various text
376 elements on the RRD graphs. <code>DEFAULT</code> sets the default value for all
377 elements, <code>TITLE</code> for the title, <code>AXIS</code> for the axis labels, <code>UNIT</code>
378 for the vertical unit label, <code>LEGEND</code> for the graph legend.</p>
379 </dd>
380 <dd>
381 <p>Use Times for the title: <code>--font TITLE:13:/usr/lib/fonts/times.ttf</code></p>
382 </dd>
383 <dd>
384 <p>If you do not give a font string you can modify just the sice of the default font:
385 <code>--font TITLE:13:</code>.</p>
386 </dd>
387 <dd>
388 <p>If you specify the size 0 then you can modify just the font without touching
389 the size. This is especially usefull for altering the default font without
390 resetting the default fontsizes: <code>--font DEFAULT:0:/usr/lib/fonts/times.ttf</code>.</p>
391 </dd>
392 <dd>
393 <p>RRDtool comes with a preset default font. You can set the environment
394 variable <code>RRD_DEFAULT_FONT</code> if you want to change this.</p>
395 </dd>
396 <dd>
397 <p>Truetype fonts are only supported for PNG output. See below.</p>
398 </dd>
399 <dd>
400 <p>[<strong>-R</strong>|<strong>--font-render-mode</strong> {<em>normal</em>,<em>light</em>,<em>mono</em>}]</p>
401 </dd>
402 <dd>
403 <p>This lets you customize the strength of the font smoothing,
404 or disable it entirely using <em>mono</em>. By default, <em>normal</em>
405 font smoothing is used.</p>
406 </dd>
407 <dd>
408 <p>[<strong>-B</strong>|<strong>--font-smoothing-threshold</strong> <em>size</em>]</p>
409 </dd>
410 <dd>
411 <p>This specifies the largest font size which will be rendered
412 bitmapped, that is, without any font smoothing. By default,
413 no text is rendered bitmapped.</p>
414 </dd>
415 <dd>
416 <p>[<strong>-E</strong>|<strong>--slope-mode</strong>]</p>
417 </dd>
418 <dd>
419 <p>RRDtool graphs are composed of stair case curves by default. This is in line with
420 the way RRDtool calculates its data. Some people favor a more 'organic' look
421 for their graphs even though it is not all that true.</p>
422 </dd>
423 <dd>
424 <p>[<strong>-a</strong>|<strong>--imgformat</strong> <strong>PNG</strong>|<strong>SVG</strong>|<strong>EPS</strong>|<strong>PDF</strong>]</p>
425 </dd>
426 <dd>
427 <p>Image format for the generated graph. For the vector formats you can
428 choose among the standard Postscript fonts Courier-Bold,
429 Courier-BoldOblique, Courier-Oblique, Courier, Helvetica-Bold,
430 Helvetica-BoldOblique, Helvetica-Oblique, Helvetica, Symbol,
431 Times-Bold, Times-BoldItalic, Times-Italic, Times-Roman, and ZapfDingbats.</p>
432 </dd>
433 <dd>
434 <p>[<strong>-i</strong>|<strong>--interlaced</strong>]</p>
435 </dd>
436 <dd>
437 <p>If images are interlaced they become visible on browsers more quickly.</p>
438 </dd>
439 <dd>
440 <p>[<strong>-g</strong>|<strong>--no-legend</strong>]</p>
441 </dd>
442 <dd>
443 <p>Suppress generation of the legend; only render the graph.</p>
444 </dd>
445 <dd>
446 <p>[<strong>-F</strong>|<strong>--force-rules-legend</strong>]</p>
447 </dd>
448 <dd>
449 <p>Force the generation of HRULE and VRULE legends even if those HRULE or
450 VRULE will not be drawn because out of graph boundaries (mimics
451 behaviour of pre 1.0.42 versions).</p>
452 </dd>
453 <dd>
454 <p>[<strong>-T</strong>|<strong>--tabwidth</strong> <em>value</em>]</p>
455 </dd>
456 <dd>
457 <p>By default the tab-width is 40 pixels, use this option to change it.</p>
458 </dd>
459 <dd>
460 <p>[<strong>-b</strong>|<strong>--base</strong> <em>value</em>]</p>
461 </dd>
462 <dd>
463 <p>If you are graphing memory (and NOT network traffic) this switch
464 should be set to 1024 so that one Kb is 1024 byte. For traffic
465 measurement, 1 kb/s is 1000 b/s.</p>
466 </dd>
467 <dd>
468 <p>[<strong>-W</strong>|<strong>--watermark</strong> <em>string</em>]</p>
469 </dd>
470 <dd>
471 <p>Adds the given string as a watermark, horizontally centred, at the bottom 
472 of the graph.</p>
473 </dd>
474 </li>
475 <dt><strong><a name="item_data_and_variables">Data and variables</a></strong>
477 <dd>
478 <p><strong>DEF:</strong><em>vname</em><strong>=</strong><em>rrdfile</em><strong>:</strong><em>ds-name</em><strong>:</strong><em>CF</em>[<strong>:step=</strong><em>step</em>][<strong>:start=</strong><em>time</em>][<strong>:end=</strong><em>time</em>]</p>
479 </dd>
480 <dd>
481 <p><strong>CDEF:</strong><em>vname</em><strong>=</strong><em>RPN expression</em></p>
482 </dd>
483 <dd>
484 <p><strong>VDEF:</strong><em>vname</em><strong>=</strong><em>RPN expression</em></p>
485 </dd>
486 <dd>
487 <p>You need at least one <strong>DEF</strong> statement to generate anything. The
488 other statements are useful but optional.
489 See <a href="././rrdgraph_data.html">the rrdgraph_data manpage</a> and <a href="././rrdgraph_rpn.html">the rrdgraph_rpn manpage</a> for the exact format.</p>
490 </dd>
491 </li>
492 <dt><strong><a name="item_graph_and_print_elements">Graph and print elements</a></strong>
494 <dd>
495 <p>You need at least one graph element to generate an image and/or
496 at least one print statement to generate a report.
497 See <a href="././rrdgraph_graph.html">the rrdgraph_graph manpage</a> for the exact format.</p>
498 </dd>
499 </li>
500 </dl>
501 <p>
502 </p>
503 <hr />
504 <h1><a name="see_also">SEE ALSO</a></h1>
505 <p><a href="././rrdgraph.html">the rrdgraph manpage</a> gives an overview of how <strong>rrdtool graph</strong> works.
506 <a href="././rrdgraph_data.html">the rrdgraph_data manpage</a> describes <strong>DEF</strong>,<strong>CDEF</strong> and <strong>VDEF</strong> in detail.
507 <a href="././rrdgraph_rpn.html">the rrdgraph_rpn manpage</a> describes the <strong>RPN</strong> language used in the <strong>?DEF</strong> statements.
508 <a href="././rrdgraph_graph.html">the rrdgraph_graph manpage</a> page describes all of the graph and print functions.</p>
509 <p>Make sure to read <a href="././rrdgraph_examples.html">the rrdgraph_examples manpage</a> for tips&amp;tricks.</p>
510 <p>
511 </p>
512 <hr />
513 <h1><a name="author">AUTHOR</a></h1>
514 <p>Program by Tobias Oetiker &lt;<a href="mailto:tobi@oetiker.ch">tobi@oetiker.ch</a>&gt;</p>
515 <p>This manual page by Alex van den Bogaerdt &lt;<a href="mailto:alex@ergens.op.het.net">alex@ergens.op.het.net</a>&gt;</p>
517 </body>
519 </html>