rrdgraph_graph - rrdtool graph command reference
PRINT:vname:format
GPRINT:vname:format
COMMENT:text
VRULE:time#color[:legend]
HRULE:value#color[:legend]
LINE[width]:value[#color][:[legend][:STACK]]
AREA:value[#color][:[legend][:STACK]]
TICK:vname#rrggbb[aa][:fraction[:legend]]
SHIFT:vname:offset
PRINT:vname:CF:format (deprecated)
GPRINT:vname:CF:format (deprecated)
STACK:vname#color[:legend] (deprecated)
These instructions allow you to generate your image or report. If you don't use any graph elements, no graph is generated. Similarly, no report is generated if you don't use print options.
Any text in format is printed literally with one exception: The percent character introduces a formatter string. This string can be:
For printing values:
%% - just prints a literal '%' character
%#.#le - prints numbers like 1.2346e+04. The optional integers # denote field width and decimal precision.
%#.#lf - prints numbers like 12345.6789, with optional field width and precision.
%s - place this after %le, %lf or %lg. This will be replaced by the appropriate SI magnitude unit and the value will be scaled accordingly (123456 -> 123.456 k).
%S - is similar to %s. It does, however, use a previously defined magnitude unit. If there is no such unit yet, it tries to define one (just like %s) unless the value is zero, in which case the magnitude unit stays undefined. Thus, formatter strings using %S and no %s will all use the same magnitude unit except for zero values.
If you PRINT a VDEF value, you can also print the time associated with it by appending the string :strftime to the format. Note that rrdtool uses the strftime function of your OSs clibrary. This means that the conversion specifier may vary. Check the manual page if you are uncertain. The following is a list of conversion specifiers usually supported across the board.
%a - The abbreviated weekday name according to the current locale.
%A - The full weekday name according to the current locale.
%b - The abbreviated month name according to the current locale.
%B - The full month name according to the current locale.
%c - The preferred date and time representation for the current locale.
%d - The day of the month as a decimal number (range 01 to 31).
%H - The hour as a decimal number using a 24-hour clock (range 00 to 23).
%I - The hour as a decimal number using a 12-hour clock (range 01 to 12).
%j - The day of the year as a decimal number (range 001 to 366).
%m - The month as a decimal number (range 01 to 12).
%M - The minute as a decimal number (range 00 to 59).
%p - Either `AM' or `PM' according to the given time value, or the corresponding strings for the current locale. Noon is treated as `pm' and midnight as `am'. Note that in many locales and `pm' notation is unsupported and in such cases %p will return an empty string.
%S - The second as a decimal number (range 00 to 61).
%U - The week number of the current year as a decimal number, range 00 to 53, starting with the first Sunday as the first day of week 01. See also %V and %W.
%V - The ISO 8601:1988 week number of the current year as a decimal number, range 01 to 53, where week 1 is the first week that has at least 4 days in the current year, and with Monday as the first day of the week. See also %U and %W.
%w - The day of the week as a decimal, range 0 to 6, Sunday being 0. See also %u.
%W - The week number of the current year as a decimal number, range 00 to 53, starting with the first Monday as the first day of week 01.
%x - The preferred date representation for the current locale without the time.
%X - The preferred time representation for the current locale without the date.
%y - The year as a decimal number without a century (range 00 to 99).
%Y - The year as a decimal number including the century.
%Z - The time zone or name or abbreviation.
%% - A literal `%' character.
PRINT
, but printed inside the graph.
PRINT
, but printed inside the graph.
When you do not specify a color, you cannot specify a legend. Should you want to use STACK, use the ``LINEx:<value>::STACK'' form.
Some notes on stacking
When stacking, an element is not placed above the X-axis but rather on top of the previous element. There must be something to stack upon.
You can use an invisible LINE or AREA to stacked upon.
An unknown value makes the entire stack unknown from that moment on. You don't know where to begin (the unknown value) and therefore do not know where to end.
If you want to make sure you will be displaying a certain variable, make sure never to stack upon the unknown value. Use a CDEF instruction with IF and UN to do so.
A colon ':' in a legend argument will mark the end of the legend. To enter a ':' as part of a legend, the colon must be escaped with a backslash '\:'. Beware that many environments process backslashes themselves, so it may be necessary to write two backslashes in order to one being passed onto rrd_graph.
The text printed below the actual graph can be formatted by appending special escape characters at the end of a text. When ever such a character occurs, all pending text is pushed onto the graph according to the character specified.
Valid markers are: \j for justified, \l for left aligned, \r for right aligned, and \c for centered. In the next section there is an example showing how to use centered formatting.
\n is a valid alias for \l since incomplete parsing in earlier versions of rrdtool lead to this behaviour and a number of people has been using it.
Normally there are two space characters inserted between every two items printed into the graph. The space following a string can be suppressed by putting a \g at the end of the string. The \g also ignores any space inside the string if it is at the very end of the string. This can be used in connection with %s to suppress empty unit strings.
GPRINT:a:MAX:%lf%s\g
A special case is COMMENT:\s which inserts some additional vertical space before placing the next row of legends.
If you are using the proportional font in your graph, you can use tab characters or the sequence \t to line-up legend elements. Note that the tabs inserted are relative to the start of the current legend element!
the rrdgraph manpage gives an overview of how rrdtool graph works. the rrdgraph_data manpage describes DEF,CDEF and VDEF in detail. the rrdgraph_rpn manpage describes the RPN language used in the ?DEF statements. the rrdgraph_graph manpage page describes all of the graph and print functions.
Make sure to read the rrdgraph_examples manpage for tips&tricks.
Program by Tobias Oetiker <tobi@oetiker.ch>
This manual page by Alex van den Bogaerdt <alex@vandenbogaerdt.nl> with corrections and/or additions by several people