91f6409ada384e79093e9ea28d20b90ff92284ce
[rrdtool.git] / src / rrd_tune.c
1 /*****************************************************************************
2  * RRDtool 1.2.23  Copyright by Tobi Oetiker, 1997-2007
3  *****************************************************************************
4  * change header parameters of an rrd
5  *****************************************************************************
6  * $Id$
7  * $Log$
8  * Revision 1.6  2004/05/26 22:11:12  oetiker
9  * reduce compiler warnings. Many small fixes. -- Mike Slifcak <slif@bellsouth.net>
10  *
11  * Revision 1.5  2002/02/01 20:34:49  oetiker
12  * fixed version number and date/time
13  *
14  * Revision 1.4  2001/08/22 22:29:07  jake
15  * Contents of this patch:
16  * (1) Adds/revises documentation for rrd tune in rrd_tool.c and pod files.
17  * (2) Moves some initialization code from rrd_create.c to rrd_hw.c.
18  * (3) Adds another pass to smoothing for SEASONAL and DEVSEASONAL RRAs.
19  * This pass computes the coefficients as deviations from an average; the
20  * average is added the baseline coefficient of HWPREDICT. Statistical texts
21  * suggest this to preserve algorithm stability. It will not invalidate
22  * RRD files created and smoothed with the old code.
23  * (4) Adds the aberrant-reset flag to rrd tune. This operation, which is
24  * specified for a single data source, causes the holt-winters algorithm to
25  * forget everthing it has learned and start over.
26  * (5) Fixes a few out-of-date code comments.
27  *
28  * Revision 1.3  2001/03/07 21:21:54  oetiker
29  * complete rewrite of rrdgraph documentation. This also includs info
30  * on upcomming/planned changes to the rrdgraph interface and functionality
31  * -- Alex van den Bogaerdt <alex@slot.hollandcasino.nl>
32  *
33  * Revision 1.2  2001/03/04 13:01:55  oetiker
34  * Aberrant Behavior Detection support. A brief overview added to rrdtool.pod.
35  * Major updates to rrd_update.c, rrd_create.c. Minor update to other core files.
36  * This is backwards compatible! But new files using the Aberrant stuff are not readable
37  * by old rrdtool versions. See http://cricket.sourceforge.net/aberrant/rrd_hw.htm
38  * -- Jake Brutlag <jakeb@corp.webtv.net>
39  *
40  *****************************************************************************/
41
42 #include "rrd_tool.h"
43 #include "rrd_rpncalc.h"
44 #include "rrd_hw.h"
45
46 int       set_hwarg(
47     rrd_t *rrd,
48     enum cf_en cf,
49     enum rra_par_en rra_par,
50     char *arg);
51 int       set_deltaarg(
52     rrd_t *rrd,
53     enum rra_par_en rra_par,
54     char *arg);
55 int       set_windowarg(
56     rrd_t *rrd,
57     enum rra_par_en,
58     char *arg);
59
60 int rrd_tune(
61     int argc,
62     char **argv)
63 {
64     rrd_t     rrd;
65     int       matches;
66     int       optcnt = 0;
67     long      ds;
68     char      ds_nam[DS_NAM_SIZE];
69     char      ds_new[DS_NAM_SIZE];
70     long      heartbeat;
71     double    min;
72     double    max;
73     char      dst[DST_SIZE];
74     rrd_file_t *rrd_file;
75
76     optind = 0;
77     opterr = 0;         /* initialize getopt */
78
79
80     rrd_file = rrd_open(argv[1], &rrd, RRD_READWRITE);
81     if (rrd_file == NULL) {
82         rrd_free(&rrd);
83         return -1;
84     }
85
86     while (1) {
87         static struct option long_options[] = {
88             {"heartbeat", required_argument, 0, 'h'},
89             {"minimum", required_argument, 0, 'i'},
90             {"maximum", required_argument, 0, 'a'},
91             {"data-source-type", required_argument, 0, 'd'},
92             {"data-source-rename", required_argument, 0, 'r'},
93             /* added parameter tuning options for aberrant behavior detection */
94             {"deltapos", required_argument, 0, 'p'},
95             {"deltaneg", required_argument, 0, 'n'},
96             {"window-length", required_argument, 0, 'w'},
97             {"failure-threshold", required_argument, 0, 'f'},
98             {"alpha", required_argument, 0, 'x'},
99             {"beta", required_argument, 0, 'y'},
100             {"gamma", required_argument, 0, 'z'},
101             {"gamma-deviation", required_argument, 0, 'v'},
102             {"aberrant-reset", required_argument, 0, 'b'},
103             {0, 0, 0, 0}
104         };
105         int       option_index = 0;
106         int       opt;
107
108         opt = getopt_long(argc, argv, "h:i:a:d:r:p:n:w:f:x:y:z:v:b:",
109                           long_options, &option_index);
110         if (opt == EOF)
111             break;
112
113         optcnt++;
114         switch (opt) {
115         case 'h':
116             if ((matches =
117                  sscanf(optarg, DS_NAM_FMT ":%ld", ds_nam,
118                         &heartbeat)) != 2) {
119                 rrd_set_error("invalid arguments for heartbeat");
120                 rrd_free(&rrd);
121                 rrd_close(rrd_file);
122                 return -1;
123             }
124             if ((ds = ds_match(&rrd, ds_nam)) == -1) {
125                 rrd_free(&rrd);
126                 rrd_close(rrd_file);
127                 return -1;
128             }
129             rrd.ds_def[ds].par[DS_mrhb_cnt].u_cnt = heartbeat;
130             break;
131
132         case 'i':
133             if ((matches =
134                  sscanf(optarg, DS_NAM_FMT ":%lf", ds_nam, &min)) < 1) {
135                 rrd_set_error("invalid arguments for minimum ds value");
136                 rrd_free(&rrd);
137                 rrd_close(rrd_file);
138                 return -1;
139             }
140             if ((ds = ds_match(&rrd, ds_nam)) == -1) {
141                 rrd_free(&rrd);
142                 rrd_close(rrd_file);
143                 return -1;
144             }
145
146             if (matches == 1)
147                 min = DNAN;
148             rrd.ds_def[ds].par[DS_min_val].u_val = min;
149             break;
150
151         case 'a':
152             if ((matches =
153                  sscanf(optarg, DS_NAM_FMT ":%lf", ds_nam, &max)) < 1) {
154                 rrd_set_error("invalid arguments for maximum ds value");
155                 rrd_free(&rrd);
156                 rrd_close(rrd_file);
157                 return -1;
158             }
159             if ((ds = ds_match(&rrd, ds_nam)) == -1) {
160                 rrd_free(&rrd);
161                 rrd_close(rrd_file);
162                 return -1;
163             }
164             if (matches == 1)
165                 max = DNAN;
166             rrd.ds_def[ds].par[DS_max_val].u_val = max;
167             break;
168
169         case 'd':
170             if ((matches =
171                  sscanf(optarg, DS_NAM_FMT ":" DST_FMT, ds_nam, dst)) != 2) {
172                 rrd_set_error("invalid arguments for data source type");
173                 rrd_free(&rrd);
174                 rrd_close(rrd_file);
175                 return -1;
176             }
177             if ((ds = ds_match(&rrd, ds_nam)) == -1) {
178                 rrd_free(&rrd);
179                 rrd_close(rrd_file);
180                 return -1;
181             }
182             if ((int) dst_conv(dst) == -1) {
183                 rrd_free(&rrd);
184                 rrd_close(rrd_file);
185                 return -1;
186             }
187             strncpy(rrd.ds_def[ds].dst, dst, DST_SIZE - 1);
188             rrd.ds_def[ds].dst[DST_SIZE - 1] = '\0';
189
190             rrd.pdp_prep[ds].last_ds[0] = 'U';
191             rrd.pdp_prep[ds].last_ds[1] = 'N';
192             rrd.pdp_prep[ds].last_ds[2] = 'K';
193             rrd.pdp_prep[ds].last_ds[3] = 'N';
194             rrd.pdp_prep[ds].last_ds[4] = '\0';
195
196             break;
197         case 'r':
198             if ((matches =
199                  sscanf(optarg, DS_NAM_FMT ":" DS_NAM_FMT, ds_nam,
200                         ds_new)) != 2) {
201                 rrd_set_error("invalid arguments for data source type");
202                 rrd_free(&rrd);
203                 rrd_close(rrd_file);
204                 return -1;
205             }
206             if ((ds = ds_match(&rrd, ds_nam)) == -1) {
207                 rrd_free(&rrd);
208                 rrd_close(rrd_file);
209                 return -1;
210             }
211             strncpy(rrd.ds_def[ds].ds_nam, ds_new, DS_NAM_SIZE - 1);
212             rrd.ds_def[ds].ds_nam[DS_NAM_SIZE - 1] = '\0';
213             break;
214         case 'p':
215             if (set_deltaarg(&rrd, RRA_delta_pos, optarg)) {
216                 rrd_free(&rrd);
217                 return -1;
218             }
219             break;
220         case 'n':
221             if (set_deltaarg(&rrd, RRA_delta_neg, optarg)) {
222                 rrd_free(&rrd);
223                 return -1;
224             }
225             break;
226         case 'f':
227             if (set_windowarg(&rrd, RRA_failure_threshold, optarg)) {
228                 rrd_free(&rrd);
229                 return -1;
230             }
231             break;
232         case 'w':
233             if (set_windowarg(&rrd, RRA_window_len, optarg)) {
234                 rrd_free(&rrd);
235                 return -1;
236             }
237             break;
238         case 'x':
239             if (set_hwarg(&rrd, CF_HWPREDICT, RRA_hw_alpha, optarg)) {
240                 rrd_free(&rrd);
241                 return -1;
242             }
243             break;
244         case 'y':
245             if (set_hwarg(&rrd, CF_HWPREDICT, RRA_hw_beta, optarg)) {
246                 rrd_free(&rrd);
247                 return -1;
248             }
249             break;
250         case 'z':
251             if (set_hwarg(&rrd, CF_SEASONAL, RRA_seasonal_gamma, optarg)) {
252                 rrd_free(&rrd);
253                 return -1;
254             }
255             break;
256         case 'v':
257             if (set_hwarg(&rrd, CF_DEVSEASONAL, RRA_seasonal_gamma, optarg)) {
258                 rrd_free(&rrd);
259                 return -1;
260             }
261             break;
262         case 'b':
263             if (sscanf(optarg, DS_NAM_FMT, ds_nam) != 1) {
264                 rrd_set_error("invalid argument for aberrant-reset");
265                 rrd_free(&rrd);
266                 rrd_close(rrd_file);
267                 return -1;
268             }
269             if ((ds = ds_match(&rrd, ds_nam)) == -1) {
270                 /* ds_match handles it own errors */
271                 rrd_free(&rrd);
272                 rrd_close(rrd_file);
273                 return -1;
274             }
275             reset_aberrant_coefficients(&rrd, rrd_file, (unsigned long) ds);
276             if (rrd_test_error()) {
277                 rrd_free(&rrd);
278                 rrd_close(rrd_file);
279                 return -1;
280             }
281             break;
282         case '?':
283             if (optopt != 0)
284                 rrd_set_error("unknown option '%c'", optopt);
285             else
286                 rrd_set_error("unknown option '%s'", argv[optind - 1]);
287             rrd_free(&rrd);
288             rrd_close(rrd_file);
289             return -1;
290         }
291     }
292     if (optcnt > 0) {
293         rrd_seek(rrd_file, 0, SEEK_SET);
294         rrd_write(rrd_file, rrd.stat_head, sizeof(stat_head_t) * 1);
295         rrd_write(rrd_file, rrd.ds_def,
296                   sizeof(ds_def_t) * rrd.stat_head->ds_cnt);
297         /* need to write rra_defs for RRA parameter changes */
298         rrd_write(rrd_file, rrd.rra_def,
299                   sizeof(rra_def_t) * rrd.stat_head->rra_cnt);
300     } else {
301         int       i;
302
303         for (i = 0; i < (int) rrd.stat_head->ds_cnt; i++)
304             if (dst_conv(rrd.ds_def[i].dst) != DST_CDEF) {
305                 printf("DS[%s] typ: %s\thbt: %ld\tmin: %1.4f\tmax: %1.4f\n",
306                        rrd.ds_def[i].ds_nam,
307                        rrd.ds_def[i].dst,
308                        rrd.ds_def[i].par[DS_mrhb_cnt].u_cnt,
309                        rrd.ds_def[i].par[DS_min_val].u_val,
310                        rrd.ds_def[i].par[DS_max_val].u_val);
311             } else {
312                 char     *buffer = NULL;
313
314                 rpn_compact2str((rpn_cdefds_t *) &
315                                 (rrd.ds_def[i].par[DS_cdef]), rrd.ds_def,
316                                 &buffer);
317                 printf("DS[%s] typ: %s\tcdef: %s\n", rrd.ds_def[i].ds_nam,
318                        rrd.ds_def[i].dst, buffer);
319                 free(buffer);
320             }
321     }
322     rrd_close(rrd_file);
323     rrd_free(&rrd);
324     return 0;
325 }
326
327 int set_hwarg(
328     rrd_t *rrd,
329     enum cf_en cf,
330     enum rra_par_en rra_par,
331     char *arg)
332 {
333     double    param;
334     unsigned long i;
335     signed short rra_idx = -1;
336
337     /* read the value */
338     param = atof(arg);
339     if (param <= 0.0 || param >= 1.0) {
340         rrd_set_error("Holt-Winters parameter must be between 0 and 1");
341         return -1;
342     }
343     /* does the appropriate RRA exist?  */
344     for (i = 0; i < rrd->stat_head->rra_cnt; ++i) {
345         if (cf_conv(rrd->rra_def[i].cf_nam) == cf) {
346             rra_idx = i;
347             break;
348         }
349     }
350     if (rra_idx == -1) {
351         rrd_set_error("Holt-Winters RRA does not exist in this RRD");
352         return -1;
353     }
354
355     /* set the value */
356     rrd->rra_def[rra_idx].par[rra_par].u_val = param;
357     return 0;
358 }
359
360 int set_deltaarg(
361     rrd_t *rrd,
362     enum rra_par_en rra_par,
363     char *arg)
364 {
365     rrd_value_t param;
366     unsigned long i;
367     signed short rra_idx = -1;
368
369     param = atof(arg);
370     if (param < 0.1) {
371         rrd_set_error("Parameter specified is too small");
372         return -1;
373     }
374     /* does the appropriate RRA exist?  */
375     for (i = 0; i < rrd->stat_head->rra_cnt; ++i) {
376         if (cf_conv(rrd->rra_def[i].cf_nam) == CF_FAILURES) {
377             rra_idx = i;
378             break;
379         }
380     }
381     if (rra_idx == -1) {
382         rrd_set_error("Failures RRA does not exist in this RRD");
383         return -1;
384     }
385
386     /* set the value */
387     rrd->rra_def[rra_idx].par[rra_par].u_val = param;
388     return 0;
389 }
390
391 int set_windowarg(
392     rrd_t *rrd,
393     enum rra_par_en rra_par,
394     char *arg)
395 {
396     unsigned long param;
397     unsigned long i, cdp_idx;
398     signed short rra_idx = -1;
399
400     /* read the value */
401     param = atoi(arg);
402     if (param < 1 || param > MAX_FAILURES_WINDOW_LEN) {
403         rrd_set_error("Parameter must be between %d and %d",
404                       1, MAX_FAILURES_WINDOW_LEN);
405         return -1;
406     }
407     /* does the appropriate RRA exist?  */
408     for (i = 0; i < rrd->stat_head->rra_cnt; ++i) {
409         if (cf_conv(rrd->rra_def[i].cf_nam) == CF_FAILURES) {
410             rra_idx = i;
411             break;
412         }
413     }
414     if (rra_idx == -1) {
415         rrd_set_error("Failures RRA does not exist in this RRD");
416         return -1;
417     }
418
419     /* set the value */
420     rrd->rra_def[rra_idx].par[rra_par].u_cnt = param;
421
422     /* erase existing violations */
423     for (i = 0; i < rrd->stat_head->ds_cnt; i++) {
424         cdp_idx = rra_idx * (rrd->stat_head->ds_cnt) + i;
425         erase_violations(rrd, cdp_idx, rra_idx);
426     }
427     return 0;
428 }