aboutsummaryrefslogtreecommitdiff
path: root/rrdtool/rrd_anomaly.c
blob: 8d5a02edba6b50090a3816ac6a24882728dd09f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
/*
 * rrd_anomaly.c
 *
 * Copyright (C) 2011-22 - ntop.org
 *
 * nDPI is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * nDPI is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with nDPI.  If not, see <http://www.gnu.org/licenses/>.
 *
 */

#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <getopt.h>
#include <rrd.h>
#include "ndpi_api.h"

#define  DEFAULT_ALPHA   0.5
#define  DEFAULT_RO      0.05
#define  DEFAULT_START  "now-1d"
#define  DEFAULT_END    "now"

/* *************************************************** */

static void help() {
  printf("Usage: rrd_anomaly [-v][-a <alpha>][-e <end>][-q][-s <start>] -f <filename>\n"
	 "-a             | Set alpha. Valid range >0 .. <1. Default %.2f\n"
	 "-e <end>       | RRD end time. Default %s\n"
	 "-q             | Quick output (only anomalies are reported)\n"
	 "-s <start>     | RRD start time. Default %s\n"
	 "-f <rrd path>  | Path of the RRD filename to analyze\n"
	 "-v             | Verbose\n"
	 ,
	 DEFAULT_ALPHA, DEFAULT_END, DEFAULT_START);

  printf("\n\nExample: rrd_anomaly -q -f hum.rrd\n");
  exit(0);
}

/* *************************************************** */

int main(int argc, char *argv[]) {
  rrd_time_value_t start_tv, end_tv;
  unsigned long  step = 0, ds_cnt = 0;
  rrd_value_t *data, *p;
  char **names, *filename = NULL, *start_s, *end_s, *cf;
  u_int i, first = 1, quick_mode = 0, verbose = 0;
  time_t t, start, end;
  struct ndpi_ses_struct ses;
  float alpha, ro;
  int c;

  /* Defaults */
  alpha   = DEFAULT_ALPHA;
  start_s = DEFAULT_START;
  end_s   = DEFAULT_END;
  cf      = "AVERAGE";
  ro      = DEFAULT_RO;
    
  while((c = getopt(argc, argv, "s:e:a:qf:r:v")) != '?') {
    if(c == -1) break;

    switch(c) {
    case 's':
      start_s = optarg;
      break;

    case 'e':
      end_s = optarg;
      break;

    case 'q':
      quick_mode = 1;
      break;

    case 'a':
      {
	float f = atof(optarg);

	if((f > 0) && (f < 1))
	  alpha = f;
	else
	  printf("Discarding -a: valid range is >0 .. <1\n");
      }
      break;

    case 'f':
      filename = optarg;
      break;

    case 'r':
      ro = atof(optarg);
      if((ro <= 0) || (ro >= 1))
	ro = DEFAULT_RO;
      break;

    case 'v':
      verbose = 1;
      break;

    default:
      help();
      break;
    }
  }

  if(filename == NULL)
    help();

  ndpi_ses_init(&ses, alpha, ro);

  if((rrd_parsetime(start_s, &start_tv) != NULL)) {
    printf("Unable to parse start time %s\n", start_s);
    return(-1);
  }

  if((rrd_parsetime(end_s, &end_tv) != NULL)) {
    printf("Unable to parse end time %s\n", end_s);
    return(-1);
  }

  rrd_proc_start_end(&start_tv, &end_tv, &start, &end);

  if(rrd_fetch_r(filename, cf, &start, &end, &step, &ds_cnt, &names, &data) != 0) {
    printf("Unable to extract data from rrd %s\n", filename);
    return(-2);
  }

  p = data;
  for(t=start+1, i=0; t<end; t+=step, i++) {
      rrd_value_t value = *p++;

      if(!isnan(value)) {
	double prediction, confidence_band;
	double lower, upper;
	char buf[32];
	int rc;
	u_int is_anomaly;

	value *= 100; /* trick to avoid dealing with floats */
	rc = ndpi_ses_add_value(&ses, value, &prediction, &confidence_band);
	lower = prediction - confidence_band, upper = prediction + confidence_band;
	is_anomaly = ((rc == 0) || (confidence_band == 0) || ((value >= lower) && (value <= upper))) ? 0 : 1;
	
	if(verbose || is_anomaly) {
	  if(quick_mode) {
	    printf("%ld\n", t);
	  } else {
	    const time_t _t = t;
	    struct tm *t_info = localtime((const time_t*)&_t);

	    strftime(buf, sizeof(buf), "%d/%b/%Y %H:%M:%S", t_info);

	    if(first) {
	      first = 0;
	      printf("%s                       %s\t%s    %s           %s\t %s     [%s]\n",
		     "When", "Value", "Prediction", "Lower", "Upper", "Out", "Band");
	    }

	    printf("%s %12.3f\t%.3f\t%12.3f\t%12.3f\t %s [%.3f]\n",
		   buf, value/100., prediction/100., lower/100., upper/100., is_anomaly? "ANOMALY" : "OK",
		   confidence_band/100.);
	  }
	}
      }
  }

  rrd_freemem(data);

  return(0);
}