]> arthur.barton.de Git - netdata.git/blob - src/rrd2json.c
Merge pull request #494 from ktsaou/master
[netdata.git] / src / rrd2json.c
1 #ifdef HAVE_CONFIG_H
2 #include <config.h>
3 #endif
4 #include <pthread.h>
5 #include <stdlib.h>
6 #include <string.h>
7 #include <stdint.h>
8 #include <math.h>
9
10 #include "log.h"
11 #include "common.h"
12 #include "rrd2json.h"
13
14 #define HOSTNAME_MAX 1024
15 char *hostname = "unknown";
16
17 void rrd_stats_api_v1_chart(RRDSET *st, BUFFER *wb)
18 {
19         pthread_rwlock_rdlock(&st->rwlock);
20
21         buffer_sprintf(wb,
22                 "\t\t{\n"
23                 "\t\t\t\"id\": \"%s\",\n"
24                 "\t\t\t\"name\": \"%s\",\n"
25                 "\t\t\t\"type\": \"%s\",\n"
26                 "\t\t\t\"family\": \"%s\",\n"
27                 "\t\t\t\"context\": \"%s\",\n"
28                 "\t\t\t\"title\": \"%s\",\n"
29                 "\t\t\t\"priority\": %ld,\n"
30                 "\t\t\t\"enabled\": %s,\n"
31                 "\t\t\t\"units\": \"%s\",\n"
32                 "\t\t\t\"data_url\": \"/api/v1/data?chart=%s\",\n"
33                 "\t\t\t\"chart_type\": \"%s\",\n"
34                 "\t\t\t\"duration\": %ld,\n"
35                 "\t\t\t\"first_entry\": %lu,\n"
36                 "\t\t\t\"last_entry\": %lu,\n"
37                 "\t\t\t\"update_every\": %d,\n"
38                 "\t\t\t\"dimensions\": {\n"
39                 , st->id
40                 , st->name
41                 , st->type
42                 , st->family
43                 , st->context
44                 , st->title
45                 , st->priority
46                 , st->enabled?"true":"false"
47                 , st->units
48                 , st->name
49                 , rrdset_type_name(st->chart_type)
50                 , st->entries * st->update_every
51                 , rrdset_first_entry_t(st)
52                 , rrdset_last_entry_t(st)
53                 , st->update_every
54                 );
55
56         unsigned long memory = st->memsize;
57
58         int c = 0;
59         RRDDIM *rd;
60         for(rd = st->dimensions; rd ; rd = rd->next) {
61                 if(rd->flags & RRDDIM_FLAG_HIDDEN) continue;
62
63                 memory += rd->memsize;
64
65                 buffer_sprintf(wb,
66                         "%s"
67                         "\t\t\t\t\"%s\": { \"name\": \"%s\" }"
68                         , c?",\n":""
69                         , rd->id
70                         , rd->name
71                         );
72
73                 c++;
74         }
75
76         buffer_sprintf(wb,
77                 "\n\t\t\t}\n"
78                 "\t\t}"
79                 );
80
81         pthread_rwlock_unlock(&st->rwlock);
82 }
83
84 void rrd_stats_api_v1_charts(BUFFER *wb)
85 {
86         long c;
87         RRDSET *st;
88
89         buffer_sprintf(wb, "{\n"
90                    "\t\"hostname\": \"%s\""
91                 ",\n\t\"update_every\": %d"
92                 ",\n\t\"history\": %d"
93                 ",\n\t\"charts\": {"
94                 , hostname
95                 , rrd_update_every
96                 , rrd_default_history_entries
97                 );
98
99         pthread_rwlock_rdlock(&rrdset_root_rwlock);
100         for(st = rrdset_root, c = 0; st ; st = st->next) {
101                 if(st->enabled) {
102                         if(c) buffer_strcat(wb, ",");
103                         buffer_strcat(wb, "\n\t\t\"");
104                         buffer_strcat(wb, st->id);
105                         buffer_strcat(wb, "\": ");
106                         rrd_stats_api_v1_chart(st, wb);
107                         c++;
108                 }
109         }
110         pthread_rwlock_unlock(&rrdset_root_rwlock);
111
112         buffer_strcat(wb, "\n\t}\n}\n");
113 }
114
115
116 unsigned long rrd_stats_one_json(RRDSET *st, char *options, BUFFER *wb)
117 {
118         time_t now = time(NULL);
119
120         pthread_rwlock_rdlock(&st->rwlock);
121
122         buffer_sprintf(wb,
123                 "\t\t{\n"
124                 "\t\t\t\"id\": \"%s\",\n"
125                 "\t\t\t\"name\": \"%s\",\n"
126                 "\t\t\t\"type\": \"%s\",\n"
127                 "\t\t\t\"family\": \"%s\",\n"
128                 "\t\t\t\"context\": \"%s\",\n"
129                 "\t\t\t\"title\": \"%s\",\n"
130                 "\t\t\t\"priority\": %ld,\n"
131                 "\t\t\t\"enabled\": %d,\n"
132                 "\t\t\t\"units\": \"%s\",\n"
133                 "\t\t\t\"url\": \"/data/%s/%s\",\n"
134                 "\t\t\t\"chart_type\": \"%s\",\n"
135                 "\t\t\t\"counter\": %ld,\n"
136                 "\t\t\t\"entries\": %ld,\n"
137                 "\t\t\t\"first_entry_t\": %lu,\n"
138                 "\t\t\t\"last_entry\": %ld,\n"
139                 "\t\t\t\"last_entry_t\": %lu,\n"
140                 "\t\t\t\"last_entry_secs_ago\": %lu,\n"
141                 "\t\t\t\"update_every\": %d,\n"
142                 "\t\t\t\"isdetail\": %d,\n"
143                 "\t\t\t\"usec_since_last_update\": %llu,\n"
144                 "\t\t\t\"collected_total\": " TOTAL_NUMBER_FORMAT ",\n"
145                 "\t\t\t\"last_collected_total\": " TOTAL_NUMBER_FORMAT ",\n"
146                 "\t\t\t\"dimensions\": [\n"
147                 , st->id
148                 , st->name
149                 , st->type
150                 , st->family
151                 , st->context
152                 , st->title
153                 , st->priority
154                 , st->enabled
155                 , st->units
156                 , st->name, options?options:""
157                 , rrdset_type_name(st->chart_type)
158                 , st->counter
159                 , st->entries
160                 , rrdset_first_entry_t(st)
161                 , rrdset_last_slot(st)
162                 , rrdset_last_entry_t(st)
163                 , (now < rrdset_last_entry_t(st)) ? (time_t)0 : now - rrdset_last_entry_t(st)
164                 , st->update_every
165                 , st->isdetail
166                 , st->usec_since_last_update
167                 , st->collected_total
168                 , st->last_collected_total
169                 );
170
171         unsigned long memory = st->memsize;
172
173         RRDDIM *rd;
174         for(rd = st->dimensions; rd ; rd = rd->next) {
175
176                 memory += rd->memsize;
177
178                 buffer_sprintf(wb,
179                         "\t\t\t\t{\n"
180                         "\t\t\t\t\t\"id\": \"%s\",\n"
181                         "\t\t\t\t\t\"name\": \"%s\",\n"
182                         "\t\t\t\t\t\"entries\": %ld,\n"
183                         "\t\t\t\t\t\"isHidden\": %d,\n"
184                         "\t\t\t\t\t\"algorithm\": \"%s\",\n"
185                         "\t\t\t\t\t\"multiplier\": %ld,\n"
186                         "\t\t\t\t\t\"divisor\": %ld,\n"
187                         "\t\t\t\t\t\"last_entry_t\": %lu,\n"
188                         "\t\t\t\t\t\"collected_value\": " COLLECTED_NUMBER_FORMAT ",\n"
189                         "\t\t\t\t\t\"calculated_value\": " CALCULATED_NUMBER_FORMAT ",\n"
190                         "\t\t\t\t\t\"last_collected_value\": " COLLECTED_NUMBER_FORMAT ",\n"
191                         "\t\t\t\t\t\"last_calculated_value\": " CALCULATED_NUMBER_FORMAT ",\n"
192                         "\t\t\t\t\t\"memory\": %lu\n"
193                         "\t\t\t\t}%s\n"
194                         , rd->id
195                         , rd->name
196                         , rd->entries
197                         , (rd->flags & RRDDIM_FLAG_HIDDEN)?1:0
198                         , rrddim_algorithm_name(rd->algorithm)
199                         , rd->multiplier
200                         , rd->divisor
201                         , rd->last_collected_time.tv_sec
202                         , rd->collected_value
203                         , rd->calculated_value
204                         , rd->last_collected_value
205                         , rd->last_calculated_value
206                         , rd->memsize
207                         , rd->next?",":""
208                         );
209         }
210
211         buffer_sprintf(wb,
212                 "\t\t\t],\n"
213                 "\t\t\t\"memory\" : %lu\n"
214                 "\t\t}"
215                 , memory
216                 );
217
218         pthread_rwlock_unlock(&st->rwlock);
219         return memory;
220 }
221
222 #define RRD_GRAPH_JSON_HEADER "{\n\t\"charts\": [\n"
223 #define RRD_GRAPH_JSON_FOOTER "\n\t]\n}\n"
224
225 void rrd_stats_graph_json(RRDSET *st, char *options, BUFFER *wb)
226 {
227         buffer_strcat(wb, RRD_GRAPH_JSON_HEADER);
228         rrd_stats_one_json(st, options, wb);
229         buffer_strcat(wb, RRD_GRAPH_JSON_FOOTER);
230 }
231
232 void rrd_stats_all_json(BUFFER *wb)
233 {
234         unsigned long memory = 0;
235         long c;
236         RRDSET *st;
237
238         buffer_strcat(wb, RRD_GRAPH_JSON_HEADER);
239
240         pthread_rwlock_rdlock(&rrdset_root_rwlock);
241         for(st = rrdset_root, c = 0; st ; st = st->next) {
242                 if(st->enabled) {
243                         if(c) buffer_strcat(wb, ",\n");
244                         memory += rrd_stats_one_json(st, NULL, wb);
245                         c++;
246                 }
247         }
248         pthread_rwlock_unlock(&rrdset_root_rwlock);
249
250         buffer_sprintf(wb, "\n\t],\n"
251                 "\t\"hostname\": \"%s\",\n"
252                 "\t\"update_every\": %d,\n"
253                 "\t\"history\": %d,\n"
254                 "\t\"memory\": %lu\n"
255                 "}\n"
256                 , hostname
257                 , rrd_update_every
258                 , rrd_default_history_entries
259                 , memory
260                 );
261 }
262
263
264
265 // ----------------------------------------------------------------------------
266
267 // RRDR dimension options
268 #define RRDR_EMPTY      0x01 // the dimension contains / the value is empty (null)
269 #define RRDR_RESET      0x02 // the dimension contains / the value is reset
270 #define RRDR_HIDDEN     0x04 // the dimension contains / the value is hidden
271 #define RRDR_NONZERO    0x08 // the dimension contains / the value is non-zero
272
273 // RRDR result options
274 #define RRDR_RESULT_OPTION_ABSOLUTE 0x00000001
275 #define RRDR_RESULT_OPTION_RELATIVE 0x00000002
276
277 typedef struct rrdresult {
278         RRDSET *st;                     // the chart this result refers to
279
280         uint32_t result_options;        // RRDR_RESULT_OPTION_*
281
282         int d;                                  // the number of dimensions
283         long n;                                 // the number of values in the arrays
284         long rows;                          // the number of rows used
285
286         uint8_t *od;                    // the options for the dimensions
287
288         time_t *t;                              // array of n timestamps
289         calculated_number *v;   // array n x d values
290         uint8_t *o;                             // array n x d options
291
292         long c;                                 // current line ( -1 ~ n ), ( -1 = none, use rrdr_rows() to get number of rows )
293
294         long group;                             // how many collected values were grouped for each row
295         long update_every;              // what is the suggested update frequency in seconds
296
297         calculated_number min;
298         calculated_number max;
299
300         time_t before;
301         time_t after;
302
303         int has_st_lock;                // if st is read locked by us
304 } RRDR;
305
306 #define rrdr_rows(r) ((r)->rows)
307
308 /*
309 static void rrdr_dump(RRDR *r)
310 {
311         long c, i;
312         RRDDIM *d;
313
314         fprintf(stderr, "\nCHART %s (%s)\n", r->st->id, r->st->name);
315
316         for(c = 0, d = r->st->dimensions; d ;c++, d = d->next) {
317                 fprintf(stderr, "DIMENSION %s (%s), %s%s%s%s\n"
318                                 , d->id
319                                 , d->name
320                                 , (r->od[c] & RRDR_EMPTY)?"EMPTY ":""
321                                 , (r->od[c] & RRDR_RESET)?"RESET ":""
322                                 , (r->od[c] & RRDR_HIDDEN)?"HIDDEN ":""
323                                 , (r->od[c] & RRDR_NONZERO)?"NONZERO ":""
324                                 );
325         }
326
327         if(r->rows <= 0) {
328                 fprintf(stderr, "RRDR does not have any values in it.\n");
329                 return;
330         }
331
332         fprintf(stderr, "RRDR includes %d values in it:\n", r->rows);
333
334         // for each line in the array
335         for(i = 0; i < r->rows ;i++) {
336                 calculated_number *cn = &r->v[ i * r->d ];
337                 uint8_t *co = &r->o[ i * r->d ];
338
339                 // print the id and the timestamp of the line
340                 fprintf(stderr, "%ld %ld ", i + 1, r->t[i]);
341
342                 // for each dimension
343                 for(c = 0, d = r->st->dimensions; d ;c++, d = d->next) {
344                         if(unlikely(r->od[c] & RRDR_HIDDEN)) continue;
345                         if(unlikely(!(r->od[c] & RRDR_NONZERO))) continue;
346
347                         if(co[c] & RRDR_EMPTY)
348                                 fprintf(stderr, "null ");
349                         else
350                                 fprintf(stderr, CALCULATED_NUMBER_FORMAT " %s%s%s%s "
351                                         , cn[c]
352                                         , (co[c] & RRDR_EMPTY)?"E":" "
353                                         , (co[c] & RRDR_RESET)?"R":" "
354                                         , (co[c] & RRDR_HIDDEN)?"H":" "
355                                         , (co[c] & RRDR_NONZERO)?"N":" "
356                                         );
357                 }
358
359                 fprintf(stderr, "\n");
360         }
361 }
362 */
363
364 void rrdr_disable_not_selected_dimensions(RRDR *r, const char *dims)
365 {
366         char b[strlen(dims) + 1];
367         char *o = b, *tok;
368         strcpy(o, dims);
369
370         long c;
371         RRDDIM *d;
372
373         // disable all of them
374         for(c = 0, d = r->st->dimensions; d ;c++, d = d->next)
375                 r->od[c] |= RRDR_HIDDEN;
376
377         while(o && *o && (tok = mystrsep(&o, ", |"))) {
378                 if(!*tok) continue;
379
380                 // find it and enable it
381                 for(c = 0, d = r->st->dimensions; d ;c++, d = d->next) {
382                         if(!strcmp(d->name, tok)) {
383                                 r->od[c] &= ~RRDR_HIDDEN;
384
385                                 // since the user needs this dimension
386                                 // make it appear as NONZERO, to return it
387                                 // even if the dimension has only zeros
388                                 r->od[c] |= RRDR_NONZERO;
389                         }
390                 }
391         }
392 }
393
394 void rrdr_buffer_print_format(BUFFER *wb, uint32_t format)
395 {
396         switch(format) {
397         case DATASOURCE_JSON:
398                 buffer_strcat(wb, DATASOURCE_FORMAT_JSON);
399                 break;
400
401         case DATASOURCE_DATATABLE_JSON:
402                 buffer_strcat(wb, DATASOURCE_FORMAT_DATATABLE_JSON);
403                 break;
404
405         case DATASOURCE_DATATABLE_JSONP:
406                 buffer_strcat(wb, DATASOURCE_FORMAT_DATATABLE_JSONP);
407                 break;
408
409         case DATASOURCE_JSONP:
410                 buffer_strcat(wb, DATASOURCE_FORMAT_JSONP);
411                 break;
412
413         case DATASOURCE_SSV:
414                 buffer_strcat(wb, DATASOURCE_FORMAT_SSV);
415                 break;
416
417         case DATASOURCE_CSV:
418                 buffer_strcat(wb, DATASOURCE_FORMAT_CSV);
419                 break;
420
421         case DATASOURCE_TSV:
422                 buffer_strcat(wb, DATASOURCE_FORMAT_TSV);
423                 break;
424
425         case DATASOURCE_HTML:
426                 buffer_strcat(wb, DATASOURCE_FORMAT_HTML);
427                 break;
428
429         case DATASOURCE_JS_ARRAY:
430                 buffer_strcat(wb, DATASOURCE_FORMAT_JS_ARRAY);
431                 break;
432
433         case DATASOURCE_SSV_COMMA:
434                 buffer_strcat(wb, DATASOURCE_FORMAT_SSV_COMMA);
435                 break;
436
437         default:
438                 buffer_strcat(wb, "unknown");
439                 break;
440         }
441 }
442
443 uint32_t rrdr_check_options(RRDR *r, uint32_t options, const char *dims)
444 {
445         if(options & RRDR_OPTION_NONZERO) {
446                 long i;
447
448                 if(dims && *dims) {
449                         // the caller wants specific dimensions
450                         // disable NONZERO option
451                         // to make sure we don't accidentally prevent
452                         // the specific dimensions from being returned
453                         i = 0;
454                 }
455                 else {
456                         // find how many dimensions are not zero
457                         long c;
458                         RRDDIM *rd;
459                         for(c = 0, i = 0, rd = r->st->dimensions; rd && c < r->d ; c++, rd = rd->next) {
460                                 if(unlikely(r->od[c] & RRDR_HIDDEN)) continue;
461                                 if(unlikely(!(r->od[c] & RRDR_NONZERO))) continue;
462                                 i++;
463                         }
464                 }
465
466                 // if with nonzero we get i = 0 (no dimensions will be returned)
467                 // disable nonzero to show all dimensions
468                 if(!i) options &= ~RRDR_OPTION_NONZERO;
469         }
470
471         return options;
472 }
473
474 void rrdr_json_wrapper_begin(RRDR *r, BUFFER *wb, uint32_t format, uint32_t options, int string_value)
475 {
476         long rows = rrdr_rows(r);
477         long c, i;
478         RRDDIM *rd;
479
480         //info("JSONWRAPPER(): %s: BEGIN", r->st->id);
481         char kq[2] = "",                                        // key quote
482                 sq[2] = "";                                             // string quote
483
484         if( options & RRDR_OPTION_GOOGLE_JSON ) {
485                 kq[0] = '\0';
486                 sq[0] = '\'';
487         }
488         else {
489                 kq[0] = '"';
490                 sq[0] = '"';
491         }
492
493         buffer_sprintf(wb, "{\n"
494                         "       %sapi%s: 1,\n"
495                         "       %sid%s: %s%s%s,\n"
496                         "       %sname%s: %s%s%s,\n"
497                         "       %sview_update_every%s: %d,\n"
498                         "       %supdate_every%s: %d,\n"
499                         "       %sfirst_entry%s: %u,\n"
500                         "       %slast_entry%s: %u,\n"
501                         "       %sbefore%s: %u,\n"
502                         "       %safter%s: %u,\n"
503                         "       %sdimension_names%s: ["
504                         , kq, kq
505                         , kq, kq, sq, r->st->id, sq
506                         , kq, kq, sq, r->st->name, sq
507                         , kq, kq, r->update_every
508                         , kq, kq, r->st->update_every
509                         , kq, kq, rrdset_first_entry_t(r->st)
510                         , kq, kq, rrdset_last_entry_t(r->st)
511                         , kq, kq, r->before
512                         , kq, kq, r->after
513                         , kq, kq);
514
515         for(c = 0, i = 0, rd = r->st->dimensions; rd && c < r->d ;c++, rd = rd->next) {
516                 if(unlikely(r->od[c] & RRDR_HIDDEN)) continue;
517                 if(unlikely((options & RRDR_OPTION_NONZERO) && !(r->od[c] & RRDR_NONZERO))) continue;
518
519                 if(i) buffer_strcat(wb, ", ");
520                 buffer_strcat(wb, sq);
521                 buffer_strcat(wb, rd->name);
522                 buffer_strcat(wb, sq);
523                 i++;
524         }
525         if(!i) {
526 #ifdef NETDATA_INTERNAL_CHECKS
527                 error("RRDR is empty for %s (RRDR has %d dimensions, options is 0x%08x)", r->st->id, r->d, options);
528 #endif
529                 rows = 0;
530                 buffer_strcat(wb, sq);
531                 buffer_strcat(wb, "no data");
532                 buffer_strcat(wb, sq);
533         }
534
535         buffer_sprintf(wb, "],\n"
536                         "       %sdimension_ids%s: ["
537                         , kq, kq);
538
539         for(c = 0, i = 0, rd = r->st->dimensions; rd && c < r->d ;c++, rd = rd->next) {
540                 if(unlikely(r->od[c] & RRDR_HIDDEN)) continue;
541                 if(unlikely((options & RRDR_OPTION_NONZERO) && !(r->od[c] & RRDR_NONZERO))) continue;
542
543                 if(i) buffer_strcat(wb, ", ");
544                 buffer_strcat(wb, sq);
545                 buffer_strcat(wb, rd->id);
546                 buffer_strcat(wb, sq);
547                 i++;
548         }
549         if(!i) {
550                 rows = 0;
551                 buffer_strcat(wb, sq);
552                 buffer_strcat(wb, "no data");
553                 buffer_strcat(wb, sq);
554         }
555
556         buffer_sprintf(wb, "],\n"
557                         "       %slatest_values%s: ["
558                         , kq, kq);
559
560         for(c = 0, i = 0, rd = r->st->dimensions; rd && c < r->d ;c++, rd = rd->next) {
561                 if(unlikely(r->od[c] & RRDR_HIDDEN)) continue;
562                 if(unlikely((options & RRDR_OPTION_NONZERO) && !(r->od[c] & RRDR_NONZERO))) continue;
563
564                 if(i) buffer_strcat(wb, ", ");
565                 i++;
566
567                 storage_number n = rd->values[rrdset_last_slot(r->st)];
568
569                 if(!does_storage_number_exist(n))
570                         buffer_strcat(wb, "null");
571                 else
572                         buffer_rrd_value(wb, unpack_storage_number(n));
573         }
574         if(!i) {
575                 rows = 0;
576                 buffer_strcat(wb, "null");
577         }
578
579         buffer_sprintf(wb, "],\n"
580                         "       %sview_latest_values%s: ["
581                         , kq, kq);
582
583         i = 0;
584         if(rows) {
585                 for(c = 0, i = 0, rd = r->st->dimensions; rd && c < r->d ;c++, rd = rd->next) {
586                         if(unlikely(r->od[c] & RRDR_HIDDEN)) continue;
587                         if(unlikely((options & RRDR_OPTION_NONZERO) && !(r->od[c] & RRDR_NONZERO))) continue;
588
589                         if(i) buffer_strcat(wb, ", ");
590                         i++;
591
592                         calculated_number *cn = &r->v[ (0) * r->d ];
593                         uint8_t *co = &r->o[ (0) * r->d ];
594
595                         if(co[c] & RRDR_EMPTY)
596                                 buffer_strcat(wb, "null");
597                         else
598                                 buffer_rrd_value(wb, cn[c]);
599                 }
600         }
601         if(!i) {
602                 rows = 0;
603                 buffer_strcat(wb, "null");
604         }
605
606         buffer_sprintf(wb, "],\n"
607                         "       %sdimensions%s: %d,\n"
608                         "       %spoints%s: %d,\n"
609                         "       %sformat%s: %s"
610                         , kq, kq, i
611                         , kq, kq, rows
612                         , kq, kq, sq
613                         );
614
615         rrdr_buffer_print_format(wb, format);
616
617         buffer_sprintf(wb, "%s,\n"
618                         "       %sresult%s: "
619                         , sq
620                         , kq, kq
621                         );
622
623         if(string_value) buffer_strcat(wb, sq);
624         //info("JSONWRAPPER(): %s: END", r->st->id);
625 }
626
627 void rrdr_json_wrapper_end(RRDR *r, BUFFER *wb, uint32_t format, uint32_t options, int string_value)
628 {
629         if(r) {;}
630         if(format) {;}
631
632         char kq[2] = "",                                        // key quote
633                 sq[2] = "";                                             // string quote
634
635         if( options & RRDR_OPTION_GOOGLE_JSON ) {
636                 kq[0] = '\0';
637                 sq[0] = '\'';
638         }
639         else {
640                 kq[0] = '"';
641                 sq[0] = '"';
642         }
643
644         if(string_value) buffer_strcat(wb, sq);
645
646         buffer_sprintf(wb, ",\n %smin%s: ", kq, kq);
647         buffer_rrd_value(wb, r->min);
648         buffer_sprintf(wb, ",\n %smax%s: ", kq, kq);
649         buffer_rrd_value(wb, r->max);
650         buffer_strcat(wb, "\n}\n");
651 }
652
653 #define JSON_DATES_JS 1
654 #define JSON_DATES_TIMESTAMP 2
655
656 static void rrdr2json(RRDR *r, BUFFER *wb, uint32_t options, int datatable)
657 {
658         //info("RRD2JSON(): %s: BEGIN", r->st->id);
659         int row_annotations = 0, dates, dates_with_new = 0;
660         char kq[2] = "",                                        // key quote
661                 sq[2] = "",                                             // string quote
662                 pre_label[101] = "",                    // before each label
663                 post_label[101] = "",                   // after each label
664                 pre_date[101] = "",                             // the beginning of line, to the date
665                 post_date[101] = "",                    // closing the date
666                 pre_value[101] = "",                    // before each value
667                 post_value[101] = "",                   // after each value
668                 post_line[101] = "",                    // at the end of each row
669                 normal_annotation[201] = "",    // default row annotation
670                 overflow_annotation[201] = "",  // overflow row annotation
671                 data_begin[101] = "",                   // between labels and values
672                 finish[101] = "";                               // at the end of everything
673
674         if(datatable) {
675                 dates = JSON_DATES_JS;
676                 if( options & RRDR_OPTION_GOOGLE_JSON ) {
677                         kq[0] = '\0';
678                         sq[0] = '\'';
679                 }
680                 else {
681                         kq[0] = '"';
682                         sq[0] = '"';
683                 }
684                 row_annotations = 1;
685                 snprintfz(pre_date,   100, "            {%sc%s:[{%sv%s:%s", kq, kq, kq, kq, sq);
686                 snprintfz(post_date,  100, "%s}", sq);
687                 snprintfz(pre_label,  100, ",\n         {%sid%s:%s%s,%slabel%s:%s", kq, kq, sq, sq, kq, kq, sq);
688                 snprintfz(post_label, 100, "%s,%spattern%s:%s%s,%stype%s:%snumber%s}", sq, kq, kq, sq, sq, kq, kq, sq, sq);
689                 snprintfz(pre_value,  100, ",{%sv%s:", kq, kq);
690                 strcpy(post_value,         "}");
691                 strcpy(post_line,          "]}");
692                 snprintfz(data_begin, 100, "\n  ],\n    %srows%s:\n     [\n", kq, kq);
693                 strcpy(finish,             "\n  ]\n}");
694
695                 snprintfz(overflow_annotation, 200, ",{%sv%s:%sRESET OR OVERFLOW%s},{%sv%s:%sThe counters have been wrapped.%s}", kq, kq, sq, sq, kq, kq, sq, sq);
696                 snprintfz(normal_annotation,   200, ",{%sv%s:null},{%sv%s:null}", kq, kq, kq, kq);
697
698                 buffer_sprintf(wb, "{\n %scols%s:\n     [\n", kq, kq, kq, kq);
699                 buffer_sprintf(wb, "            {%sid%s:%s%s,%slabel%s:%stime%s,%spattern%s:%s%s,%stype%s:%sdatetime%s},\n", kq, kq, sq, sq, kq, kq, sq, sq, kq, kq, sq, sq, kq, kq, sq, sq);
700                 buffer_sprintf(wb, "            {%sid%s:%s%s,%slabel%s:%s%s,%spattern%s:%s%s,%stype%s:%sstring%s,%sp%s:{%srole%s:%sannotation%s}},\n", kq, kq, sq, sq, kq, kq, sq, sq, kq, kq, sq, sq, kq, kq, sq, sq, kq, kq, kq, kq, sq, sq);
701                 buffer_sprintf(wb, "            {%sid%s:%s%s,%slabel%s:%s%s,%spattern%s:%s%s,%stype%s:%sstring%s,%sp%s:{%srole%s:%sannotationText%s}}", kq, kq, sq, sq, kq, kq, sq, sq, kq, kq, sq, sq, kq, kq, sq, sq, kq, kq, kq, kq, sq, sq);
702
703                 // remove the valueobjects flag
704                 // google wants its own keys
705                 if(options & RRDR_OPTION_OBJECTSROWS)
706                         options &= ~RRDR_OPTION_OBJECTSROWS;
707         }
708         else {
709                 kq[0] = '"';
710                 sq[0] = '"';
711                 if((options & RRDR_OPTION_SECONDS) || (options & RRDR_OPTION_MILLISECONDS)) {
712                         dates = JSON_DATES_TIMESTAMP;
713                         dates_with_new = 0;
714                 }
715                 else {
716                         dates = JSON_DATES_JS;
717                         dates_with_new = 1;
718                 }
719                 if( options & RRDR_OPTION_OBJECTSROWS )
720                         strcpy(pre_date, "              { ");
721                 else
722                         strcpy(pre_date, "              [ ");
723                 strcpy(pre_label,  ", \"");
724                 strcpy(post_label, "\"");
725                 strcpy(pre_value,  ", ");
726                 if( options & RRDR_OPTION_OBJECTSROWS )
727                         strcpy(post_line, "}");
728                 else
729                         strcpy(post_line, "]");
730                 snprintfz(data_begin, 100, "],\n        %sdata%s:\n     [\n", kq, kq);
731                 strcpy(finish,             "\n  ]\n}");
732
733                 buffer_sprintf(wb, "{\n %slabels%s: [", kq, kq);
734                 buffer_sprintf(wb, "%stime%s", sq, sq);
735         }
736
737         // -------------------------------------------------------------------------
738         // print the JSON header
739
740         long c, i;
741         RRDDIM *rd;
742
743         // print the header lines
744         for(c = 0, i = 0, rd = r->st->dimensions; rd && c < r->d ;c++, rd = rd->next) {
745                 if(unlikely(r->od[c] & RRDR_HIDDEN)) continue;
746                 if(unlikely((options & RRDR_OPTION_NONZERO) && !(r->od[c] & RRDR_NONZERO))) continue;
747
748                 buffer_strcat(wb, pre_label);
749                 buffer_strcat(wb, rd->name);
750                 buffer_strcat(wb, post_label);
751                 i++;
752         }
753         if(!i) {
754                 buffer_strcat(wb, pre_label);
755                 buffer_strcat(wb, "no data");
756                 buffer_strcat(wb, post_label);
757         }
758
759         // print the begin of row data
760         buffer_strcat(wb, data_begin);
761
762         // if all dimensions are hidden, print a null
763         if(!i) {
764                 buffer_strcat(wb, finish);
765                 return;
766         }
767
768         long start = 0, end = rrdr_rows(r), step = 1;
769         if((options & RRDR_OPTION_REVERSED)) {
770                 start = rrdr_rows(r) - 1;
771                 end = -1;
772                 step = -1;
773         }
774
775         // for each line in the array
776         calculated_number total = 1;
777         for(i = start; i != end ;i += step) {
778                 calculated_number *cn = &r->v[ i * r->d ];
779                 uint8_t *co = &r->o[ i * r->d ];
780
781                 time_t now = r->t[i];
782
783                 if(dates == JSON_DATES_JS) {
784                         // generate the local date time
785                         struct tm tmbuf, *tm = localtime_r(&now, &tmbuf);
786                         if(!tm) { error("localtime_r() failed."); continue; }
787
788                         if(likely(i != start)) buffer_strcat(wb, ",\n");
789                         buffer_strcat(wb, pre_date);
790
791                         if( options & RRDR_OPTION_OBJECTSROWS )
792                                 buffer_sprintf(wb, "%stime%s: ", kq, kq);
793
794                         if(dates_with_new)
795                                 buffer_strcat(wb, "new ");
796
797                         buffer_jsdate(wb, tm->tm_year + 1900, tm->tm_mon, tm->tm_mday, tm->tm_hour, tm->tm_min, tm->tm_sec);
798
799                         buffer_strcat(wb, post_date);
800
801                         if(row_annotations) {
802                                 // google supports one annotation per row
803                                 int annotation_found = 0;
804                                 for(c = 0, rd = r->st->dimensions; rd ;c++, rd = rd->next) {
805                                         if(co[c] & RRDR_RESET) {
806                                                 buffer_strcat(wb, overflow_annotation);
807                                                 annotation_found = 1;
808                                                 break;
809                                         }
810                                 }
811                                 if(!annotation_found)
812                                         buffer_strcat(wb, normal_annotation);
813                         }
814                 }
815                 else {
816                         // print the timestamp of the line
817                         if(likely(i != start)) buffer_strcat(wb, ",\n");
818                         buffer_strcat(wb, pre_date);
819
820                         if( options & RRDR_OPTION_OBJECTSROWS )
821                                 buffer_sprintf(wb, "%stime%s: ", kq, kq);
822
823                         buffer_rrd_value(wb, (calculated_number)r->t[i]);
824                         // in ms
825                         if(options & RRDR_OPTION_MILLISECONDS) buffer_strcat(wb, "000");
826
827                         buffer_strcat(wb, post_date);
828                 }
829
830                 if(unlikely(options & RRDR_OPTION_PERCENTAGE)) {
831                         total = 0;
832                         for(c = 0, rd = r->st->dimensions; rd && c < r->d ;c++, rd = rd->next) {
833                                 calculated_number n = cn[c];
834
835                                 if(likely((options & RRDR_OPTION_ABSOLUTE) && n < 0))
836                                         n = -n;
837
838                                 total += n;
839                         }
840                         // prevent a division by zero
841                         if(total == 0) total = 1;
842                 }
843
844                 // for each dimension
845                 for(c = 0, rd = r->st->dimensions; rd && c < r->d ;c++, rd = rd->next) {
846                         if(unlikely(r->od[c] & RRDR_HIDDEN)) continue;
847                         if(unlikely((options & RRDR_OPTION_NONZERO) && !(r->od[c] & RRDR_NONZERO))) continue;
848
849                         calculated_number n = cn[c];
850
851                         buffer_strcat(wb, pre_value);
852
853                         if( options & RRDR_OPTION_OBJECTSROWS )
854                                 buffer_sprintf(wb, "%s%s%s: ", kq, rd->name, kq);
855
856                         if(co[c] & RRDR_EMPTY) {
857                                 if(options & RRDR_OPTION_NULL2ZERO)
858                                         buffer_strcat(wb, "0");
859                                 else
860                                         buffer_strcat(wb, "null");
861                         }
862                         else {
863                                 if(unlikely((options & RRDR_OPTION_ABSOLUTE) && n < 0))
864                                         n = -n;
865
866                                 if(unlikely(options & RRDR_OPTION_PERCENTAGE))
867                                         n = n * 100 / total;
868
869                                 buffer_rrd_value(wb, n);
870                         }
871
872                         buffer_strcat(wb, post_value);
873                 }
874
875                 buffer_strcat(wb, post_line);
876         }
877
878         buffer_strcat(wb, finish);
879         //info("RRD2JSON(): %s: END", r->st->id);
880 }
881
882 static void rrdr2csv(RRDR *r, BUFFER *wb, uint32_t options, const char *startline, const char *separator, const char *endline, const char *betweenlines)
883 {
884         //info("RRD2CSV(): %s: BEGIN", r->st->id);
885         long c, i;
886         RRDDIM *d;
887
888         // print the csv header
889         for(c = 0, i = 0, d = r->st->dimensions; d && c < r->d ;c++, d = d->next) {
890                 if(unlikely(r->od[c] & RRDR_HIDDEN)) continue;
891                 if(unlikely((options & RRDR_OPTION_NONZERO) && !(r->od[c] & RRDR_NONZERO))) continue;
892
893                 if(!i) {
894                         buffer_strcat(wb, startline);
895                         if(options & RRDR_OPTION_LABEL_QUOTES) buffer_strcat(wb, "\"");
896                         buffer_strcat(wb, "time");
897                         if(options & RRDR_OPTION_LABEL_QUOTES) buffer_strcat(wb, "\"");
898                 }
899                 buffer_strcat(wb, separator);
900                 if(options & RRDR_OPTION_LABEL_QUOTES) buffer_strcat(wb, "\"");
901                 buffer_strcat(wb, d->name);
902                 if(options & RRDR_OPTION_LABEL_QUOTES) buffer_strcat(wb, "\"");
903                 i++;
904         }
905         buffer_strcat(wb, endline);
906
907         if(!i) {
908                 // no dimensions present
909                 return;
910         }
911
912         long start = 0, end = rrdr_rows(r), step = 1;
913         if((options & RRDR_OPTION_REVERSED)) {
914                 start = rrdr_rows(r) - 1;
915                 end = -1;
916                 step = -1;
917         }
918
919         // for each line in the array
920         calculated_number total = 1;
921         for(i = start; i != end ;i += step) {
922                 calculated_number *cn = &r->v[ i * r->d ];
923                 uint8_t *co = &r->o[ i * r->d ];
924
925                 buffer_strcat(wb, betweenlines);
926                 buffer_strcat(wb, startline);
927
928                 time_t now = r->t[i];
929
930                 if((options & RRDR_OPTION_SECONDS) || (options & RRDR_OPTION_MILLISECONDS)) {
931                         // print the timestamp of the line
932                         buffer_rrd_value(wb, (calculated_number)now);
933                         // in ms
934                         if(options & RRDR_OPTION_MILLISECONDS) buffer_strcat(wb, "000");
935                 }
936                 else {
937                         // generate the local date time
938                         struct tm tmbuf, *tm = localtime_r(&now, &tmbuf);
939                         if(!tm) { error("localtime() failed."); continue; }
940                         buffer_date(wb, tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday, tm->tm_hour, tm->tm_min, tm->tm_sec);
941                 }
942
943                 if(unlikely(options & RRDR_OPTION_PERCENTAGE)) {
944                         total = 0;
945                         for(c = 0, d = r->st->dimensions; d && c < r->d ;c++, d = d->next) {
946                                 calculated_number n = cn[c];
947
948                                 if(likely((options & RRDR_OPTION_ABSOLUTE) && n < 0))
949                                         n = -n;
950
951                                 total += n;
952                         }
953                         // prevent a division by zero
954                         if(total == 0) total = 1;
955                 }
956
957                 // for each dimension
958                 for(c = 0, d = r->st->dimensions; d && c < r->d ;c++, d = d->next) {
959                         if(unlikely(r->od[c] & RRDR_HIDDEN)) continue;
960                         if(unlikely((options & RRDR_OPTION_NONZERO) && !(r->od[c] & RRDR_NONZERO))) continue;
961
962                         buffer_strcat(wb, separator);
963
964                         calculated_number n = cn[c];
965
966                         if(co[c] & RRDR_EMPTY) {
967                                 if(options & RRDR_OPTION_NULL2ZERO)
968                                         buffer_strcat(wb, "0");
969                                 else
970                                         buffer_strcat(wb, "null");
971                         }
972                         else {
973                                 if(unlikely((options & RRDR_OPTION_ABSOLUTE) && n < 0))
974                                         n = -n;
975
976                                 if(unlikely(options & RRDR_OPTION_PERCENTAGE))
977                                         n = n * 100 / total;
978
979                                 buffer_rrd_value(wb, n);
980                         }
981                 }
982
983                 buffer_strcat(wb, endline);
984         }
985         //info("RRD2CSV(): %s: END", r->st->id);
986 }
987
988 inline static calculated_number rrdr2value(RRDR *r, long i, uint32_t options, int *all_values_are_null) {
989         long c;
990         RRDDIM *d;
991
992         calculated_number *cn = &r->v[ i * r->d ];
993         uint8_t *co = &r->o[ i * r->d ];
994
995         calculated_number sum = 0, min = 0, max = 0, v;
996         int all_null = 1, init = 1;
997
998         calculated_number total = 1;
999         if(unlikely(options & RRDR_OPTION_PERCENTAGE)) {
1000                 total = 0;
1001                 for(c = 0, d = r->st->dimensions; d && c < r->d ;c++, d = d->next) {
1002                         calculated_number n = cn[c];
1003
1004                         if(likely((options & RRDR_OPTION_ABSOLUTE) && n < 0))
1005                                 n = -n;
1006
1007                         total += n;
1008                 }
1009                 // prevent a division by zero
1010                 if(total == 0) total = 1;
1011         }
1012
1013         // for each dimension
1014         for(c = 0, d = r->st->dimensions; d && c < r->d ;c++, d = d->next) {
1015                 if(unlikely(r->od[c] & RRDR_HIDDEN)) continue;
1016                 if(unlikely((options & RRDR_OPTION_NONZERO) && !(r->od[c] & RRDR_NONZERO))) continue;
1017
1018                 calculated_number n = cn[c];
1019
1020                 if(likely((options & RRDR_OPTION_ABSOLUTE) && n < 0))
1021                         n = -n;
1022
1023                 if(unlikely(options & RRDR_OPTION_PERCENTAGE))
1024                         n = n * 100 / total;
1025
1026                 if(unlikely(init)) {
1027                         if(n > 0) {
1028                                 min = 0;
1029                                 max = n;
1030                         }
1031                         else {
1032                                 min = n;
1033                                 max = 0;
1034                         }
1035                         init = 0;
1036                 }
1037
1038                 if(likely(!(co[c] & RRDR_EMPTY))) {
1039                         all_null = 0;
1040                         sum += n;
1041                 }
1042
1043                 if(n < min) min = n;
1044                 if(n > max) max = n;
1045         }
1046
1047         if(unlikely(all_null)) {
1048                 if(likely(*all_values_are_null))
1049                         *all_values_are_null = 1;
1050                 return 0;
1051         }
1052         else {
1053                 if(likely(*all_values_are_null))
1054                         *all_values_are_null = 0;
1055         }
1056
1057         if(options & RRDR_OPTION_MIN2MAX)
1058                 v = max - min;
1059         else
1060                 v = sum;
1061
1062         return v;
1063 }
1064
1065 static void rrdr2ssv(RRDR *r, BUFFER *wb, uint32_t options, const char *prefix, const char *separator, const char *suffix)
1066 {
1067         //info("RRD2SSV(): %s: BEGIN", r->st->id);
1068         long i;
1069
1070         buffer_strcat(wb, prefix);
1071         long start = 0, end = rrdr_rows(r), step = 1;
1072         if((options & RRDR_OPTION_REVERSED)) {
1073                 start = rrdr_rows(r) - 1;
1074                 end = -1;
1075                 step = -1;
1076         }
1077
1078         // for each line in the array
1079         for(i = start; i != end ;i += step) {
1080                 int all_values_are_null = 0;
1081                 calculated_number v = rrdr2value(r, i, options, &all_values_are_null);
1082
1083                 if(likely(i != start)) {
1084                         if(r->min > v) r->min = v;
1085                         if(r->max < v) r->max = v;
1086                 }
1087                 else {
1088                         r->min = v;
1089                         r->max = v;
1090                 }
1091
1092                 if(likely(i != start))
1093                         buffer_strcat(wb, separator);
1094
1095                 if(all_values_are_null) {
1096                         if(options & RRDR_OPTION_NULL2ZERO)
1097                                 buffer_strcat(wb, "0");
1098                         else
1099                                 buffer_strcat(wb, "null");
1100                 }
1101                 else
1102                         buffer_rrd_value(wb, v);
1103         }
1104         buffer_strcat(wb, suffix);
1105         //info("RRD2SSV(): %s: END", r->st->id);
1106 }
1107
1108 inline static calculated_number *rrdr_line_values(RRDR *r)
1109 {
1110         return &r->v[ r->c * r->d ];
1111 }
1112
1113 inline static uint8_t *rrdr_line_options(RRDR *r)
1114 {
1115         return &r->o[ r->c * r->d ];
1116 }
1117
1118 inline static int rrdr_line_init(RRDR *r, time_t t)
1119 {
1120         r->c++;
1121
1122         if(unlikely(r->c >= r->n)) {
1123                 error("requested to step above RRDR size for chart %s", r->st->name);
1124                 r->c = r->n - 1;
1125         }
1126
1127         // save the time
1128         r->t[r->c] = t;
1129
1130         return 1;
1131 }
1132
1133 inline static void rrdr_lock_rrdset(RRDR *r) {
1134         if(unlikely(!r)) {
1135                 error("NULL value given!");
1136                 return;
1137         }
1138
1139         pthread_rwlock_rdlock(&r->st->rwlock);
1140         r->has_st_lock = 1;
1141 }
1142
1143 inline static void rrdr_unlock_rrdset(RRDR *r) {
1144         if(unlikely(!r)) {
1145                 error("NULL value given!");
1146                 return;
1147         }
1148
1149         if(likely(r->has_st_lock)) {
1150                 pthread_rwlock_unlock(&r->st->rwlock);
1151                 r->has_st_lock = 0;
1152         }
1153 }
1154
1155 inline static void rrdr_free(RRDR *r)
1156 {
1157         if(unlikely(!r)) {
1158                 error("NULL value given!");
1159                 return;
1160         }
1161
1162         rrdr_unlock_rrdset(r);
1163         if(likely(r->t)) free(r->t);
1164         if(likely(r->v)) free(r->v);
1165         if(likely(r->o)) free(r->o);
1166         if(likely(r->od)) free(r->od);
1167         free(r);
1168 }
1169
1170 inline void rrdr_done(RRDR *r)
1171 {
1172         r->rows = r->c + 1;
1173         r->c = 0;
1174 }
1175
1176 static RRDR *rrdr_create(RRDSET *st, long n)
1177 {
1178         if(unlikely(!st)) {
1179                 error("NULL value given!");
1180                 return NULL;
1181         }
1182
1183         RRDR *r = calloc(1, sizeof(RRDR));
1184         if(unlikely(!r)) goto cleanup;
1185
1186         r->st = st;
1187
1188         rrdr_lock_rrdset(r);
1189
1190         RRDDIM *rd;
1191         for(rd = st->dimensions ; rd ; rd = rd->next) r->d++;
1192
1193         r->n = n;
1194
1195         r->t = malloc(n * sizeof(time_t));
1196         if(unlikely(!r->t)) goto cleanup;
1197
1198         r->v = malloc(n * r->d * sizeof(calculated_number));
1199         if(unlikely(!r->v)) goto cleanup;
1200
1201         r->o = malloc(n * r->d * sizeof(uint8_t));
1202         if(unlikely(!r->o)) goto cleanup;
1203
1204         r->od = malloc(r->d * sizeof(uint8_t));
1205         if(unlikely(!r->od)) goto cleanup;
1206
1207         // set the hidden flag on hidden dimensions
1208         int c;
1209         for(c = 0, rd = st->dimensions ; rd ; c++, rd = rd->next) {
1210                 if(unlikely(rd->flags & RRDDIM_FLAG_HIDDEN)) r->od[c] = RRDR_HIDDEN;
1211                 else r->od[c] = 0;
1212         }
1213
1214         r->c = -1;
1215
1216         r->group = 1;
1217         r->update_every = 1;
1218
1219         return r;
1220
1221 cleanup:
1222         error("Cannot allocate RRDR memory for %d entries", n);
1223         if(likely(r)) rrdr_free(r);
1224         return NULL;
1225 }
1226
1227 RRDR *rrd2rrdr(RRDSET *st, long points, long long after, long long before, int group_method, int aligned)
1228 {
1229         int debug = st->debug;
1230         int absolute_period_requested = -1;
1231
1232         time_t first_entry_t = rrdset_first_entry_t(st);
1233         time_t last_entry_t  = rrdset_last_entry_t(st);
1234
1235         if(before == 0 && after == 0) {
1236                 before = last_entry_t;
1237                 after = first_entry_t;
1238                 absolute_period_requested = 0;
1239         }
1240
1241         // allow relative for before and after
1242         if(((before < 0)?-before:before) <= (st->update_every * st->entries)) {
1243                 before = last_entry_t + before;
1244                 absolute_period_requested = 0;
1245         }
1246
1247         if(((after < 0)?-after:after) <= (st->update_every * st->entries)) {
1248                 if(after == 0) after = -st->update_every;
1249                 after = before + after;
1250                 absolute_period_requested = 0;
1251         }
1252
1253         if(absolute_period_requested == -1)
1254                 absolute_period_requested = 1;
1255
1256         // make sure they are within our timeframe
1257         if(before > last_entry_t)  before = last_entry_t;
1258         if(before < first_entry_t) before = first_entry_t;
1259
1260         if(after > last_entry_t)  after = last_entry_t;
1261         if(after < first_entry_t) after = first_entry_t;
1262
1263         // check if they are upside down
1264         if(after > before) {
1265                 time_t tmp = before;
1266                 before = after;
1267                 after = tmp;
1268         }
1269
1270         // the duration of the chart
1271         time_t duration = before - after;
1272         long available_points = duration / st->update_every;
1273
1274         if(duration <= 0 || available_points <= 0)
1275                 return rrdr_create(st, 1);
1276
1277         // check the wanted points
1278         if(points < 0) points = -points;
1279         if(points > available_points) points = available_points;
1280         if(points == 0) points = available_points;
1281
1282         // calculate proper grouping of source data
1283         long group = available_points / points;
1284         if(group <= 0) group = 1;
1285
1286         // round group to the closest integer
1287         if(available_points % points > points / 2) group++;
1288
1289         time_t after_new  = (aligned) ? (after  - (after  % (group * st->update_every))) : after;
1290         time_t before_new = (aligned) ? (before - (before % (group * st->update_every))) : before;
1291         long points_new   = (before_new - after_new) / st->update_every / group;
1292
1293         // find the starting and ending slots in our round robin db
1294         long    start_at_slot = rrdset_time2slot(st, before_new),
1295                         stop_at_slot  = rrdset_time2slot(st, after_new);
1296
1297 #ifdef NETDATA_INTERNAL_CHECKS
1298         if(after_new < first_entry_t) {
1299                 error("after_new %u is too small, minimum %u", after_new, first_entry_t);
1300         }
1301         if(after_new > last_entry_t) {
1302                 error("after_new %u is too big, maximum %u", after_new, last_entry_t);
1303         }
1304         if(before_new < first_entry_t) {
1305                 error("before_new %u is too small, minimum %u", before_new, first_entry_t);
1306         }
1307         if(before_new > last_entry_t) {
1308                 error("before_new %u is too big, maximum %u", before_new, last_entry_t);
1309         }
1310         if(start_at_slot < 0 || start_at_slot >= st->entries) {
1311                 error("start_at_slot is invalid %ld, expected %ld to %ld", start_at_slot, 0, st->entries - 1);
1312         }
1313         if(stop_at_slot < 0 || stop_at_slot >= st->entries) {
1314                 error("stop_at_slot is invalid %ld, expected %ld to %ld", stop_at_slot, 0, st->entries - 1);
1315         }
1316         if(points_new > (before_new - after_new) / group / st->update_every + 1) {
1317                 error("points_new %ld is more than points %ld", points_new, (before_new - after_new) / group / st->update_every + 1);
1318         }
1319 #endif
1320
1321         //info("RRD2RRDR(): %s: wanted %ld points, got %ld - group=%ld, wanted duration=%u, got %u - wanted %ld - %ld, got %ld - %ld", st->id, points, points_new, group, before - after, before_new - after_new, after, before, after_new, before_new);
1322
1323         after = after_new;
1324         before = before_new;
1325         duration = before - after;
1326         points = points_new;
1327
1328         // Now we have:
1329         // before = the end time of the calculation
1330         // after = the start time of the calculation
1331         // duration = the duration of the calculation
1332         // group = the number of source points to aggregate / group together
1333         // method = the method of grouping source points
1334         // points = the number of points to generate
1335
1336
1337         // -------------------------------------------------------------------------
1338         // initialize our result set
1339
1340         RRDR *r = rrdr_create(st, points);
1341         if(!r) {
1342 #ifdef NETDATA_INTERNAL_CHECKS
1343                 error("Cannot create RRDR for %s, after=%u, before=%u, duration=%u, points=%d", st->id, after, before, duration, points);
1344 #endif
1345                 return NULL;
1346         }
1347         if(!r->d) {
1348 #ifdef NETDATA_INTERNAL_CHECKS
1349                 error("Returning empty RRDR (no dimensions in RRDSET) for %s, after=%u, before=%u, duration=%u, points=%d", st->id, after, before, duration, points);
1350 #endif
1351                 return r;
1352         }
1353
1354         if(absolute_period_requested == 1)
1355                 r->result_options |= RRDR_RESULT_OPTION_ABSOLUTE;
1356         else
1357                 r->result_options |= RRDR_RESULT_OPTION_RELATIVE;
1358
1359         // find how many dimensions we have
1360         long dimensions = r->d;
1361
1362
1363         // -------------------------------------------------------------------------
1364         // checks for debugging
1365
1366         if(debug) debug(D_RRD_STATS, "INFO %s first_t: %lu, last_t: %lu, all_duration: %lu, after: %lu, before: %lu, duration: %lu, points: %ld, group: %ld"
1367                         , st->id
1368                         , first_entry_t
1369                         , last_entry_t
1370                         , last_entry_t - first_entry_t
1371                         , after
1372                         , before
1373                         , duration
1374                         , points
1375                         , group
1376                         );
1377
1378
1379         // -------------------------------------------------------------------------
1380         // temp arrays for keeping values per dimension
1381
1382         calculated_number       last_values[dimensions]; // keep the last value of each dimension
1383         calculated_number       group_values[dimensions]; // keep sums when grouping
1384         long                            group_counts[dimensions]; // keep the number of values added to group_values
1385         uint8_t                         group_options[dimensions];
1386         uint8_t                         found_non_zero[dimensions];
1387
1388
1389         // initialize them
1390         RRDDIM *rd;
1391         long c;
1392         for( rd = st->dimensions, c = 0 ; rd && c < dimensions ; rd = rd->next, c++) {
1393                 last_values[c] = 0;
1394                 group_values[c] = 0;
1395                 group_counts[c] = 0;
1396                 group_options[c] = 0;
1397                 found_non_zero[c] = 0;
1398         }
1399
1400
1401         // -------------------------------------------------------------------------
1402         // the main loop
1403
1404         time_t  now = rrdset_slot2time(st, start_at_slot),
1405                         dt = st->update_every,
1406                         group_start_t = 0;
1407
1408         if(unlikely(debug)) debug(D_RRD_STATS, "BEGIN %s after_t: %lu (stop_at_t: %ld), before_t: %lu (start_at_t: %ld), start_t(now): %lu, current_entry: %ld, entries: %ld"
1409                         , st->id
1410                         , after
1411                         , stop_at_slot
1412                         , before
1413                         , start_at_slot
1414                         , now
1415                         , st->current_entry
1416                         , st->entries
1417                         );
1418
1419         r->group = group;
1420         r->update_every = group * st->update_every;
1421         r->before = now;
1422         r->after = now;
1423
1424         //info("RRD2RRDR(): %s: STARTING", st->id);
1425
1426         long slot = start_at_slot, counter = 0, stop_now = 0, added = 0, group_count = 0, add_this = 0;
1427         for(; !stop_now ; now -= dt, slot--, counter++) {
1428                 if(unlikely(slot < 0)) slot = st->entries - 1;
1429                 if(unlikely(slot == stop_at_slot)) stop_now = counter;
1430
1431                 if(unlikely(debug)) debug(D_RRD_STATS, "ROW %s slot: %ld, entries_counter: %ld, group_count: %ld, added: %ld, now: %lu, %s %s"
1432                                 , st->id
1433                                 , slot
1434                                 , counter
1435                                 , group_count + 1
1436                                 , added
1437                                 , now
1438                                 , (group_count + 1 == group)?"PRINT":"  -  "
1439                                 , (now >= after && now <= before)?"RANGE":"  -  "
1440                                 );
1441
1442                 // make sure we return data in the proper time range
1443                 if(unlikely(now > before)) continue;
1444                 if(unlikely(now < after)) break;
1445
1446                 if(unlikely(group_count == 0)) {
1447                         group_start_t = now;
1448                 }
1449                 group_count++;
1450
1451                 if(unlikely(group_count == group)) {
1452                         if(unlikely(added >= points)) break;
1453                         add_this = 1;
1454                 }
1455
1456                 // do the calculations
1457                 for(rd = st->dimensions, c = 0 ; rd && c < dimensions ; rd = rd->next, c++) {
1458                         storage_number n = rd->values[slot];
1459                         if(unlikely(!does_storage_number_exist(n))) continue;
1460
1461                         group_counts[c]++;
1462
1463                         calculated_number value = unpack_storage_number(n);
1464                         if(likely(value != 0.0)) {
1465                                 group_options[c] |= RRDR_NONZERO;
1466                                 found_non_zero[c] = 1;
1467                         }
1468
1469                         if(unlikely(did_storage_number_reset(n)))
1470                                 group_options[c] |= RRDR_RESET;
1471
1472                         switch(group_method) {
1473                                 case GROUP_MAX:
1474                                         if(unlikely(fabsl(value) > fabsl(group_values[c])))
1475                                                 group_values[c] = value;
1476                                         break;
1477
1478                                 default:
1479                                 case GROUP_SUM:
1480                                 case GROUP_AVERAGE:
1481                                         group_values[c] += value;
1482                                         break;
1483
1484                                 case GROUP_INCREMENTAL_SUM:
1485                                         if(unlikely(slot == start_at_slot))
1486                                                 last_values[c] = value;
1487
1488                                         group_values[c] += last_values[c] - value;
1489                                         last_values[c] = value;
1490                                         break;
1491                         }
1492                 }
1493
1494                 // added it
1495                 if(unlikely(add_this)) {
1496                         if(unlikely(!rrdr_line_init(r, group_start_t))) break;
1497
1498                         r->after = now;
1499
1500                         calculated_number *cn = rrdr_line_values(r);
1501                         uint8_t *co = rrdr_line_options(r);
1502
1503                         for(rd = st->dimensions, c = 0 ; rd && c < dimensions ; rd = rd->next, c++) {
1504
1505                                 // update the dimension options
1506                                 if(likely(found_non_zero[c])) r->od[c] |= RRDR_NONZERO;
1507
1508                                 // store the specific point options
1509                                 co[c] = group_options[c];
1510
1511                                 // store the value
1512                                 if(unlikely(group_counts[c] == 0)) {
1513                                         cn[c] = 0.0;
1514                                         co[c] |= RRDR_EMPTY;
1515                                 }
1516                                 else if(unlikely(group_method == GROUP_AVERAGE)) {
1517                                         // GROUP_AVERAGE
1518                                         cn[c] = group_values[c] / group_counts[c];
1519                                 }
1520                                 else {
1521                                         // GROUP_SUM
1522                                         // GROUP_MAX
1523                                         // GROUP_INCREMENTAL_SUM
1524                                         cn[c] = group_values[c];
1525                                 }
1526
1527                                 if(cn[c] < r->min) r->min = cn[c];
1528                                 if(cn[c] > r->max) r->max = cn[c];
1529
1530                                 // reset them for the next loop
1531                                 group_values[c] = 0;
1532                                 group_counts[c] = 0;
1533                                 group_options[c] = 0;
1534                         }
1535
1536                         added++;
1537                         group_count = 0;
1538                         add_this = 0;
1539                 }
1540         }
1541
1542         rrdr_done(r);
1543         //info("RRD2RRDR(): %s: END %ld loops made, %ld points generated", st->id, counter, rrdr_rows(r));
1544         //error("SHIFT: %s: wanted %ld points, got %ld", st->id, points, rrdr_rows(r));
1545         return r;
1546 }
1547
1548 int rrd2value(RRDSET *st, BUFFER *wb, calculated_number *n, BUFFER *dimensions, long points, long long after, long long before, int group_method, uint32_t options, time_t *latest_timestamp, int *value_is_null)
1549 {
1550         RRDR *r = rrd2rrdr(st, points, after, before, group_method, !(options & RRDR_OPTION_NOT_ALIGNED));
1551         if(!r) {
1552                 if(value_is_null) *value_is_null = 1;
1553                 return 500;
1554         }
1555
1556         if(rrdr_rows(r) == 0) {
1557                 rrdr_free(r);
1558                 if(value_is_null) *value_is_null = 1;
1559                 return 400;
1560         }
1561
1562         if(r->result_options & RRDR_RESULT_OPTION_RELATIVE)
1563                 wb->options |= WB_CONTENT_NO_CACHEABLE;
1564         else if(r->result_options & RRDR_RESULT_OPTION_ABSOLUTE)
1565                 wb->options |= WB_CONTENT_CACHEABLE;
1566
1567         options = rrdr_check_options(r, options, (dimensions)?buffer_tostring(dimensions):NULL);
1568
1569         if(dimensions)
1570                 rrdr_disable_not_selected_dimensions(r, buffer_tostring(dimensions));
1571
1572         if(latest_timestamp)
1573                 *latest_timestamp = r->before;
1574
1575         long i = (options & RRDR_OPTION_REVERSED)?rrdr_rows(r) - 1:0;
1576         *n = rrdr2value(r, i, options, value_is_null);
1577
1578         rrdr_free(r);
1579         return 200;
1580 }
1581
1582 int rrd2format(RRDSET *st, BUFFER *wb, BUFFER *dimensions, uint32_t format, long points, long long after, long long before, int group_method, uint32_t options, time_t *latest_timestamp)
1583 {
1584         RRDR *r = rrd2rrdr(st, points, after, before, group_method, !(options & RRDR_OPTION_NOT_ALIGNED));
1585         if(!r) {
1586                 buffer_strcat(wb, "Cannot generate output with these parameters on this chart.");
1587                 return 500;
1588         }
1589
1590         if(r->result_options & RRDR_RESULT_OPTION_RELATIVE)
1591                 wb->options |= WB_CONTENT_NO_CACHEABLE;
1592         else if(r->result_options & RRDR_RESULT_OPTION_ABSOLUTE)
1593                 wb->options |= WB_CONTENT_CACHEABLE;
1594
1595         options = rrdr_check_options(r, options, (dimensions)?buffer_tostring(dimensions):NULL);
1596
1597         if(dimensions)
1598                 rrdr_disable_not_selected_dimensions(r, buffer_tostring(dimensions));
1599
1600         if(latest_timestamp && rrdr_rows(r) > 0)
1601                 *latest_timestamp = r->before;
1602
1603         switch(format) {
1604         case DATASOURCE_SSV:
1605                 if(options & RRDR_OPTION_JSON_WRAP) {
1606                         wb->contenttype = CT_APPLICATION_JSON;
1607                         rrdr_json_wrapper_begin(r, wb, format, options, 1);
1608                         rrdr2ssv(r, wb, options, "", " ", "");
1609                         rrdr_json_wrapper_end(r, wb, format, options, 1);
1610                 }
1611                 else {
1612                         wb->contenttype = CT_TEXT_PLAIN;
1613                         rrdr2ssv(r, wb, options, "", " ", "");
1614                 }
1615                 break;
1616
1617         case DATASOURCE_SSV_COMMA:
1618                 if(options & RRDR_OPTION_JSON_WRAP) {
1619                         wb->contenttype = CT_APPLICATION_JSON;
1620                         rrdr_json_wrapper_begin(r, wb, format, options, 1);
1621                         rrdr2ssv(r, wb, options, "", ",", "");
1622                         rrdr_json_wrapper_end(r, wb, format, options, 1);
1623                 }
1624                 else {
1625                         wb->contenttype = CT_TEXT_PLAIN;
1626                         rrdr2ssv(r, wb, options, "", ",", "");
1627                 }
1628                 break;
1629
1630         case DATASOURCE_JS_ARRAY:
1631                 if(options & RRDR_OPTION_JSON_WRAP) {
1632                         wb->contenttype = CT_APPLICATION_JSON;
1633                         rrdr_json_wrapper_begin(r, wb, format, options, 0);
1634                         rrdr2ssv(r, wb, options, "[", ",", "]");
1635                         rrdr_json_wrapper_end(r, wb, format, options, 0);
1636                 }
1637                 else {
1638                         wb->contenttype = CT_APPLICATION_JSON;
1639                         rrdr2ssv(r, wb, options, "[", ",", "]");
1640                 }
1641                 break;
1642
1643         case DATASOURCE_CSV:
1644                 if(options & RRDR_OPTION_JSON_WRAP) {
1645                         wb->contenttype = CT_APPLICATION_JSON;
1646                         rrdr_json_wrapper_begin(r, wb, format, options, 1);
1647                         rrdr2csv(r, wb, options, "", ",", "\\n", "");
1648                         rrdr_json_wrapper_end(r, wb, format, options, 1);
1649                 }
1650                 else {
1651                         wb->contenttype = CT_TEXT_PLAIN;
1652                         rrdr2csv(r, wb, options, "", ",", "\r\n", "");
1653                 }
1654                 break;
1655
1656         case DATASOURCE_CSV_JSON_ARRAY:
1657                 wb->contenttype = CT_APPLICATION_JSON;
1658                 if(options & RRDR_OPTION_JSON_WRAP) {
1659                         rrdr_json_wrapper_begin(r, wb, format, options, 0);
1660                         buffer_strcat(wb, "[\n");
1661                         rrdr2csv(r, wb, options + RRDR_OPTION_LABEL_QUOTES, "[", ",", "]", ",\n");
1662                         buffer_strcat(wb, "\n]");
1663                         rrdr_json_wrapper_end(r, wb, format, options, 0);
1664                 }
1665                 else {
1666                         wb->contenttype = CT_TEXT_PLAIN;
1667                         buffer_strcat(wb, "[\n");
1668                         rrdr2csv(r, wb, options + RRDR_OPTION_LABEL_QUOTES, "[", ",", "]", ",\n");
1669                         buffer_strcat(wb, "\n]");
1670                 }
1671                 break;
1672
1673         case DATASOURCE_TSV:
1674                 if(options & RRDR_OPTION_JSON_WRAP) {
1675                         wb->contenttype = CT_APPLICATION_JSON;
1676                         rrdr_json_wrapper_begin(r, wb, format, options, 1);
1677                         rrdr2csv(r, wb, options, "", "\t", "\\n", "");
1678                         rrdr_json_wrapper_end(r, wb, format, options, 1);
1679                 }
1680                 else {
1681                         wb->contenttype = CT_TEXT_PLAIN;
1682                         rrdr2csv(r, wb, options, "", "\t", "\r\n", "");
1683                 }
1684                 break;
1685
1686         case DATASOURCE_HTML:
1687                 if(options & RRDR_OPTION_JSON_WRAP) {
1688                         wb->contenttype = CT_APPLICATION_JSON;
1689                         rrdr_json_wrapper_begin(r, wb, format, options, 1);
1690                         buffer_strcat(wb, "<html>\\n<center>\\n<table border=\\\"0\\\" cellpadding=\\\"5\\\" cellspacing=\\\"5\\\">\\n");
1691                         rrdr2csv(r, wb, options, "<tr><td>", "</td><td>", "</td></tr>\\n", "");
1692                         buffer_strcat(wb, "</table>\\n</center>\\n</html>\\n");
1693                         rrdr_json_wrapper_end(r, wb, format, options, 1);
1694                 }
1695                 else {
1696                         wb->contenttype = CT_TEXT_HTML;
1697                         buffer_strcat(wb, "<html>\n<center>\n<table border=\"0\" cellpadding=\"5\" cellspacing=\"5\">\n");
1698                         rrdr2csv(r, wb, options, "<tr><td>", "</td><td>", "</td></tr>\n", "");
1699                         buffer_strcat(wb, "</table>\n</center>\n</html>\n");
1700                 }
1701                 break;
1702
1703         case DATASOURCE_DATATABLE_JSONP:
1704                 wb->contenttype = CT_APPLICATION_X_JAVASCRIPT;
1705
1706                 if(options & RRDR_OPTION_JSON_WRAP)
1707                         rrdr_json_wrapper_begin(r, wb, format, options, 0);
1708
1709                 rrdr2json(r, wb, options, 1);
1710
1711                 if(options & RRDR_OPTION_JSON_WRAP)
1712                         rrdr_json_wrapper_end(r, wb, format, options, 0);
1713                 break;
1714
1715         case DATASOURCE_DATATABLE_JSON:
1716                 wb->contenttype = CT_APPLICATION_JSON;
1717
1718                 if(options & RRDR_OPTION_JSON_WRAP)
1719                         rrdr_json_wrapper_begin(r, wb, format, options, 0);
1720
1721                 rrdr2json(r, wb, options, 1);
1722
1723                 if(options & RRDR_OPTION_JSON_WRAP)
1724                         rrdr_json_wrapper_end(r, wb, format, options, 0);
1725                 break;
1726
1727         case DATASOURCE_JSONP:
1728                 wb->contenttype = CT_APPLICATION_X_JAVASCRIPT;
1729                 if(options & RRDR_OPTION_JSON_WRAP)
1730                         rrdr_json_wrapper_begin(r, wb, format, options, 0);
1731
1732                 rrdr2json(r, wb, options, 0);
1733
1734                 if(options & RRDR_OPTION_JSON_WRAP)
1735                         rrdr_json_wrapper_end(r, wb, format, options, 0);
1736                 break;
1737
1738         case DATASOURCE_JSON:
1739         default:
1740                 wb->contenttype = CT_APPLICATION_JSON;
1741
1742                 if(options & RRDR_OPTION_JSON_WRAP)
1743                         rrdr_json_wrapper_begin(r, wb, format, options, 0);
1744
1745                 rrdr2json(r, wb, options, 0);
1746
1747                 if(options & RRDR_OPTION_JSON_WRAP)
1748                         rrdr_json_wrapper_end(r, wb, format, options, 0);
1749                 break;
1750         }
1751
1752         rrdr_free(r);
1753         return 200;
1754 }
1755
1756 time_t rrd_stats_json(int type, RRDSET *st, BUFFER *wb, long points, long group, int group_method, time_t after, time_t before, int only_non_zero)
1757 {
1758         int c;
1759         pthread_rwlock_rdlock(&st->rwlock);
1760
1761
1762         // -------------------------------------------------------------------------
1763         // switch from JSON to google JSON
1764
1765         char kq[2] = "\"";
1766         char sq[2] = "\"";
1767         switch(type) {
1768                 case DATASOURCE_DATATABLE_JSON:
1769                 case DATASOURCE_DATATABLE_JSONP:
1770                         kq[0] = '\0';
1771                         sq[0] = '\'';
1772                         break;
1773
1774                 case DATASOURCE_JSON:
1775                 default:
1776                         break;
1777         }
1778
1779
1780         // -------------------------------------------------------------------------
1781         // validate the parameters
1782
1783         if(points < 1) points = 1;
1784         if(group < 1) group = 1;
1785
1786         if(before == 0 || before > rrdset_last_entry_t(st)) before = rrdset_last_entry_t(st);
1787         if(after  == 0 || after < rrdset_first_entry_t(st)) after = rrdset_first_entry_t(st);
1788
1789         // ---
1790
1791         // our return value (the last timestamp printed)
1792         // this is required to detect re-transmit in google JSONP
1793         time_t last_timestamp = 0;
1794
1795
1796         // -------------------------------------------------------------------------
1797         // find how many dimensions we have
1798
1799         int dimensions = 0;
1800         RRDDIM *rd;
1801         for( rd = st->dimensions ; rd ; rd = rd->next) dimensions++;
1802         if(!dimensions) {
1803                 pthread_rwlock_unlock(&st->rwlock);
1804                 buffer_strcat(wb, "No dimensions yet.");
1805                 return 0;
1806         }
1807
1808
1809         // -------------------------------------------------------------------------
1810         // prepare various strings, to speed up the loop
1811
1812         char overflow_annotation[201]; snprintfz(overflow_annotation, 200, ",{%sv%s:%sRESET OR OVERFLOW%s},{%sv%s:%sThe counters have been wrapped.%s}", kq, kq, sq, sq, kq, kq, sq, sq);
1813         char normal_annotation[201];   snprintfz(normal_annotation,   200, ",{%sv%s:null},{%sv%s:null}", kq, kq, kq, kq);
1814         char pre_date[51];             snprintfz(pre_date,             50, "            {%sc%s:[{%sv%s:%s", kq, kq, kq, kq, sq);
1815         char post_date[21];            snprintfz(post_date,            20, "%s}", sq);
1816         char pre_value[21];            snprintfz(pre_value,            20, ",{%sv%s:", kq, kq);
1817         char post_value[21];           strcpy(post_value,                  "}");
1818
1819
1820         // -------------------------------------------------------------------------
1821         // checks for debugging
1822
1823         if(st->debug) {
1824                 debug(D_RRD_STATS, "%s first_entry_t = %lu, last_entry_t = %lu, duration = %lu, after = %lu, before = %lu, duration = %lu, entries_to_show = %lu, group = %lu"
1825                         , st->id
1826                         , rrdset_first_entry_t(st)
1827                         , rrdset_last_entry_t(st)
1828                         , rrdset_last_entry_t(st) - rrdset_first_entry_t(st)
1829                         , after
1830                         , before
1831                         , before - after
1832                         , points
1833                         , group
1834                         );
1835
1836                 if(before < after)
1837                         debug(D_RRD_STATS, "WARNING: %s The newest value in the database (%lu) is earlier than the oldest (%lu)", st->name, before, after);
1838
1839                 if((before - after) > st->entries * st->update_every)
1840                         debug(D_RRD_STATS, "WARNING: %s The time difference between the oldest and the newest entries (%lu) is higher than the capacity of the database (%lu)", st->name, before - after, st->entries * st->update_every);
1841         }
1842
1843
1844         // -------------------------------------------------------------------------
1845         // temp arrays for keeping values per dimension
1846
1847         calculated_number group_values[dimensions]; // keep sums when grouping
1848         int               print_hidden[dimensions]; // keep hidden flags
1849         int               found_non_zero[dimensions];
1850         int               found_non_existing[dimensions];
1851
1852         // initialize them
1853         for( rd = st->dimensions, c = 0 ; rd && c < dimensions ; rd = rd->next, c++) {
1854                 group_values[c] = 0;
1855                 print_hidden[c] = (rd->flags & RRDDIM_FLAG_HIDDEN)?1:0;
1856                 found_non_zero[c] = 0;
1857                 found_non_existing[c] = 0;
1858         }
1859
1860
1861         // error("OLD: points=%d after=%d before=%d group=%d, duration=%d", entries_to_show, before - (st->update_every * group * entries_to_show), before, group, before - after + 1);
1862         // rrd2array(st, entries_to_show, before - (st->update_every * group * entries_to_show), before, group_method, only_non_zero);
1863         // rrd2rrdr(st, entries_to_show, before - (st->update_every * group * entries_to_show), before, group_method);
1864
1865         // -------------------------------------------------------------------------
1866         // remove dimensions that contain only zeros
1867
1868         int max_loop = 1;
1869         if(only_non_zero) max_loop = 2;
1870
1871         for(; max_loop ; max_loop--) {
1872
1873                 // -------------------------------------------------------------------------
1874                 // print the JSON header
1875
1876                 buffer_sprintf(wb, "{\n %scols%s:\n     [\n", kq, kq);
1877                 buffer_sprintf(wb, "            {%sid%s:%s%s,%slabel%s:%stime%s,%spattern%s:%s%s,%stype%s:%sdatetime%s},\n", kq, kq, sq, sq, kq, kq, sq, sq, kq, kq, sq, sq, kq, kq, sq, sq);
1878                 buffer_sprintf(wb, "            {%sid%s:%s%s,%slabel%s:%s%s,%spattern%s:%s%s,%stype%s:%sstring%s,%sp%s:{%srole%s:%sannotation%s}},\n", kq, kq, sq, sq, kq, kq, sq, sq, kq, kq, sq, sq, kq, kq, sq, sq, kq, kq, kq, kq, sq, sq);
1879                 buffer_sprintf(wb, "            {%sid%s:%s%s,%slabel%s:%s%s,%spattern%s:%s%s,%stype%s:%sstring%s,%sp%s:{%srole%s:%sannotationText%s}}", kq, kq, sq, sq, kq, kq, sq, sq, kq, kq, sq, sq, kq, kq, sq, sq, kq, kq, kq, kq, sq, sq);
1880
1881                 // print the header for each dimension
1882                 // and update the print_hidden array for the dimensions that should be hidden
1883                 int pc = 0;
1884                 for( rd = st->dimensions, c = 0 ; rd && c < dimensions ; rd = rd->next, c++) {
1885                         if(!print_hidden[c]) {
1886                                 pc++;
1887                                 buffer_sprintf(wb, ",\n         {%sid%s:%s%s,%slabel%s:%s%s%s,%spattern%s:%s%s,%stype%s:%snumber%s}", kq, kq, sq, sq, kq, kq, sq, rd->name, sq, kq, kq, sq, sq, kq, kq, sq, sq);
1888                         }
1889                 }
1890                 if(!pc) {
1891                         buffer_sprintf(wb, ",\n         {%sid%s:%s%s,%slabel%s:%s%s%s,%spattern%s:%s%s,%stype%s:%snumber%s}", kq, kq, sq, sq, kq, kq, sq, "no data", sq, kq, kq, sq, sq, kq, kq, sq, sq);
1892                 }
1893
1894                 // print the begin of row data
1895                 buffer_sprintf(wb, "\n  ],\n    %srows%s:\n     [\n", kq, kq);
1896
1897
1898                 // -------------------------------------------------------------------------
1899                 // the main loop
1900
1901                 int annotate_reset = 0;
1902                 int annotation_count = 0;
1903
1904                 long    t = rrdset_time2slot(st, before),
1905                                 stop_at_t = rrdset_time2slot(st, after),
1906                                 stop_now = 0;
1907
1908                 t -= t % group;
1909
1910                 time_t  now = rrdset_slot2time(st, t),
1911                                 dt = st->update_every;
1912
1913                 long count = 0, printed = 0, group_count = 0;
1914                 last_timestamp = 0;
1915
1916                 if(st->debug) debug(D_RRD_STATS, "%s: REQUEST after:%lu before:%lu, points:%d, group:%d, CHART cur:%ld first: %lu last:%lu, CALC start_t:%ld, stop_t:%ld"
1917                                         , st->id
1918                                         , after
1919                                         , before
1920                                         , points
1921                                         , group
1922                                         , st->current_entry
1923                                         , rrdset_first_entry_t(st)
1924                                         , rrdset_last_entry_t(st)
1925                                         , t
1926                                         , stop_at_t
1927                                         );
1928
1929                 long counter = 0;
1930                 for(; !stop_now ; now -= dt, t--, counter++) {
1931                         if(t < 0) t = st->entries - 1;
1932                         if(t == stop_at_t) stop_now = counter;
1933
1934                         int print_this = 0;
1935
1936                         if(st->debug) debug(D_RRD_STATS, "%s t = %ld, count = %ld, group_count = %ld, printed = %ld, now = %lu, %s %s"
1937                                         , st->id
1938                                         , t
1939                                         , count + 1
1940                                         , group_count + 1
1941                                         , printed
1942                                         , now
1943                                         , (group_count + 1 == group)?"PRINT":"  -  "
1944                                         , (now >= after && now <= before)?"RANGE":"  -  "
1945                                         );
1946
1947
1948                         // make sure we return data in the proper time range
1949                         if(now > before) continue;
1950                         if(now < after) break;
1951
1952                         //if(rrdset_slot2time(st, t) != now)
1953                         //      error("%s: slot=%ld, now=%ld, slot2time=%ld, diff=%ld, last_entry_t=%ld, rrdset_last_slot=%ld", st->id, t, now, rrdset_slot2time(st,t), now - rrdset_slot2time(st,t), rrdset_last_entry_t(st), rrdset_last_slot(st));
1954
1955                         count++;
1956                         group_count++;
1957
1958                         // check if we have to print this now
1959                         if(group_count == group) {
1960                                 if(printed >= points) {
1961                                         // debug(D_RRD_STATS, "Already printed all rows. Stopping.");
1962                                         break;
1963                                 }
1964
1965                                 // generate the local date time
1966                                 struct tm tmbuf, *tm = localtime_r(&now, &tmbuf);
1967                                 if(!tm) { error("localtime() failed."); continue; }
1968                                 if(now > last_timestamp) last_timestamp = now;
1969
1970                                 if(printed) buffer_strcat(wb, "]},\n");
1971                                 buffer_strcat(wb, pre_date);
1972                                 buffer_jsdate(wb, tm->tm_year + 1900, tm->tm_mon, tm->tm_mday, tm->tm_hour, tm->tm_min, tm->tm_sec);
1973                                 buffer_strcat(wb, post_date);
1974
1975                                 print_this = 1;
1976                         }
1977
1978                         // do the calculations
1979                         for(rd = st->dimensions, c = 0 ; rd && c < dimensions ; rd = rd->next, c++) {
1980                                 storage_number n = rd->values[t];
1981                                 calculated_number value = unpack_storage_number(n);
1982
1983                                 if(!does_storage_number_exist(n)) {
1984                                         value = 0.0;
1985                                         found_non_existing[c]++;
1986                                 }
1987                                 if(did_storage_number_reset(n)) annotate_reset = 1;
1988
1989                                 switch(group_method) {
1990                                         case GROUP_MAX:
1991                                                 if(abs(value) > abs(group_values[c])) group_values[c] = value;
1992                                                 break;
1993
1994                                         case GROUP_SUM:
1995                                                 group_values[c] += value;
1996                                                 break;
1997
1998                                         default:
1999                                         case GROUP_AVERAGE:
2000                                                 group_values[c] += value;
2001                                                 if(print_this) group_values[c] /= ( group_count - found_non_existing[c] );
2002                                                 break;
2003                                 }
2004                         }
2005
2006                         if(print_this) {
2007                                 if(annotate_reset) {
2008                                         annotation_count++;
2009                                         buffer_strcat(wb, overflow_annotation);
2010                                         annotate_reset = 0;
2011                                 }
2012                                 else
2013                                         buffer_strcat(wb, normal_annotation);
2014
2015                                 pc = 0;
2016                                 for(c = 0 ; c < dimensions ; c++) {
2017                                         if(found_non_existing[c] == group_count) {
2018                                                 // all entries are non-existing
2019                                                 pc++;
2020                                                 buffer_strcat(wb, pre_value);
2021                                                 buffer_strcat(wb, "null");
2022                                                 buffer_strcat(wb, post_value);
2023                                         }
2024                                         else if(!print_hidden[c]) {
2025                                                 pc++;
2026                                                 buffer_strcat(wb, pre_value);
2027                                                 buffer_rrd_value(wb, group_values[c]);
2028                                                 buffer_strcat(wb, post_value);
2029
2030                                                 if(group_values[c]) found_non_zero[c]++;
2031                                         }
2032
2033                                         // reset them for the next loop
2034                                         group_values[c] = 0;
2035                                         found_non_existing[c] = 0;
2036                                 }
2037
2038                                 // if all dimensions are hidden, print a null
2039                                 if(!pc) {
2040                                         buffer_strcat(wb, pre_value);
2041                                         buffer_strcat(wb, "null");
2042                                         buffer_strcat(wb, post_value);
2043                                 }
2044
2045                                 printed++;
2046                                 group_count = 0;
2047                         }
2048                 }
2049
2050                 if(printed) buffer_strcat(wb, "]}");
2051                 buffer_strcat(wb, "\n   ]\n}\n");
2052
2053                 if(only_non_zero && max_loop > 1) {
2054                         int changed = 0;
2055                         for(rd = st->dimensions, c = 0 ; rd && c < dimensions ; rd = rd->next, c++) {
2056                                 group_values[c] = 0;
2057                                 found_non_existing[c] = 0;
2058
2059                                 if(!print_hidden[c] && !found_non_zero[c]) {
2060                                         changed = 1;
2061                                         print_hidden[c] = 1;
2062                                 }
2063                         }
2064
2065                         if(changed) buffer_flush(wb);
2066                         else break;
2067                 }
2068                 else break;
2069
2070         } // max_loop
2071
2072         debug(D_RRD_STATS, "RRD_STATS_JSON: %s total %ld bytes", st->name, wb->len);
2073
2074         pthread_rwlock_unlock(&st->rwlock);
2075         return last_timestamp;
2076 }