summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 33b5bb4)
raw | patch | inline | side by side (parent: 33b5bb4)
author | oetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa> | |
Sun, 10 Apr 2005 12:12:21 +0000 (12:12 +0000) | ||
committer | oetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa> | |
Sun, 10 Apr 2005 12:12:21 +0000 (12:12 +0000) |
program/doc/rrdcreate.pod | patch | blob | history | |
program/doc/rrdxport.pod | patch | blob | history | |
program/src/rrd_graph_helper.c | patch | blob | history | |
program/src/rrd_tool.c | patch | blob | history |
index 3b7fb685772c6baaa743972d96697f2ea1737403..4f80a6e7055f8ddd4f77142e1667f43d7f168496 100644 (file)
I<seasonal period> arguments agree.
I<alpha> is the adaption parameter of the intercept (or baseline)
-coefficient in the Holt-Winters forecasting algorithm. See L<RRDtool> for a
+coefficient in the Holt-Winters forecasting algorithm. See L<rrdtool> for a
description of this algorithm. I<alpha> must lie between 0 and 1. A value
closer to 1 means that more recent observations carry greater weight in
predicting the baseline component of the forecast. A value closer to 0 mean
index fcaaa0dddda2440f6869f8feae8ef24b72d15006..f5f11f460a84fde80d6f156c08e04a172fc03fa2 100644 (file)
--- a/program/doc/rrdxport.pod
+++ b/program/doc/rrdxport.pod
At least one I<XPORT> statement should be present. The values
referenced by I<vname> are printed. Optionally add a legend.
-=over
+=back
=head1 Output format
index 5efaa4eb30478e8c6ff25b3765f1705816c077e6..ce39ce054aa9f094777716556dfeac6df8c17767 100644 (file)
* RRDtool 1.2rc6 Copyright by Tobi Oetiker, 1997-2005
****************************************************************************
* rrd_graph_helper.c commandline parser functions
- * this code was probably writtenn by Alex van den Bogaerdt
+ * this code initially written by Alex van den Bogaerdt
****************************************************************************/
#include "rrd_graph.h"
sscanf(string, "#%02x%02x%02x%n%02x%n%*s%n",
&r,&g,&b,&i1,&a,&i2,&i3);
- if (i3) return 1; /* garbage after color */
- if (!i2) a=0xFF;
- if (!i1) return 1; /* no color after '#' */
+ if (i3) return 1; /* garbage after color */
+ if (!i2) a=0xFF; /* default no transparency */
+ if (!i1) return 1; /* no color after '#' */
gdp->col = r<<24|g<<16|b<<8|a;
return 0;
}
@@ -163,7 +163,7 @@ rrd_parse_print(char *line, unsigned int *eaten, graph_desc_t *gdp, image_desc_t
}
if (rrd_parse_legend(line,eaten,gdp)) return 1;
- /* for *PRINT the legend itself gets renderd later. We only
+ /* for *PRINT the legend itself gets rendered later. We only
get the format at this juncture */
strcpy(gdp->format,gdp->legend);
gdp->legend[0]='\0';
diff --git a/program/src/rrd_tool.c b/program/src/rrd_tool.c
index dff19c366b0cae27b956cfb1b2e68f116e2a173f..fb0fafead8c3c1f19f62d6592567df2a00c64be6 100644 (file)
--- a/program/src/rrd_tool.c
+++ b/program/src/rrd_tool.c
char help_graph3[] =
"\t\t[DEF:vname=rrd:ds-name:CF]\n"
"\t\t[CDEF:vname=rpn-expression]\n"
+ "\t\t[VDEF:vdefname=rpn-expression]\n"
"\t\t[PRINT:vname:CF:format]\n"
"\t\t[GPRINT:vname:CF:format]\n"
+ "\t\t[PRINT:vdefname:format]\n"
+ "\t\t[GPRINT:vdefname:format]\n"
"\t\t[HRULE:value#rrggbb[aa][:legend]]\n"
"\t\t[VRULE:value#rrggbb[aa][:legend]]\n"
- "\t\t[LINE{1|2|3}:vname[#rrggbb[aa][:legend]]]\n"
- "\t\t[AREA:vname[#rrggbb[aa][:legend]]]\n"
+ "\t\t[LINE{1|2|3}:vname[#rrggbb[aa][:legend]][:STACK]]\n"
+ "\t\t[AREA:vname[#rrggbb[aa][:legend]][:STACK]]\n"
"\t\t[STACK:vname[#rrggbb[aa][:legend]]]\n\n";
char help_tune1[] =