write_prometheus plugin: Improve performance of metric_cmp().
[collectd.git] / src / write_prometheus.c
1 /**
2  * collectd - src/write_prometheus.c
3  * Copyright (C) 2016       Florian octo Forster
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a copy
6  * of this software and associated documentation files (the "Software"), to deal
7  * in the Software without restriction, including without limitation the rights
8  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9  * copies of the Software, and to permit persons to whom the Software is
10  * furnished to do so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included in
13  * all copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21  * SOFTWARE.
22  *
23  * Authors:
24  *   Florian octo Forster <octo at collectd.org>
25  */
26
27 #include "collectd.h"
28
29 #include "common.h"
30 #include "plugin.h"
31 #include "utils_avltree.h"
32 #include "utils_complain.h"
33 #include "utils_time.h"
34
35 #include "prometheus.pb-c.h"
36
37 #include <microhttpd.h>
38
39 #ifndef PROMETHEUS_DEFAULT_STALENESS_DELTA
40 #define PROMETHEUS_DEFAULT_STALENESS_DELTA TIME_T_TO_CDTIME_T(300)
41 #endif
42
43 #define VARINT_UINT32_BYTES 5
44
45 #define CONTENT_TYPE_PROTO                                                     \
46   "application/vnd.google.protobuf; proto=io.prometheus.client.MetricFamily; " \
47   "encoding=delimited"
48 #define CONTENT_TYPE_TEXT "text/plain; version=0.0.4"
49
50 static c_avl_tree_t *metrics;
51 static pthread_mutex_t metrics_lock = PTHREAD_MUTEX_INITIALIZER;
52
53 static unsigned short httpd_port = 9103;
54 static struct MHD_Daemon *httpd;
55
56 static cdtime_t staleness_delta = PROMETHEUS_DEFAULT_STALENESS_DELTA;
57
58 /* Unfortunately, protoc-c doesn't export it's implementation of varint, so we
59  * need to implement our own. */
60 static size_t varint(uint8_t buffer[static VARINT_UINT32_BYTES],
61                      uint32_t value) {
62   for (size_t i = 0; i < VARINT_UINT32_BYTES; i++) {
63     buffer[i] = (uint8_t)(value & 0x7f);
64     value >>= 7;
65
66     if (value == 0)
67       return i + 1;
68
69     buffer[i] |= 0x80;
70   }
71
72   return 0;
73 }
74
75 /* format_protobuf iterates over all metric families in "metrics" and adds them
76  * to a buffer in ProtoBuf format. It prefixes each protobuf with its encoded
77  * size, the so called "delimited" format. */
78 static void format_protobuf(ProtobufCBuffer *buffer) {
79   pthread_mutex_lock(&metrics_lock);
80
81   char *unused_name;
82   Io__Prometheus__Client__MetricFamily *fam;
83   c_avl_iterator_t *iter = c_avl_get_iterator(metrics);
84   while (c_avl_iterator_next(iter, (void *)&unused_name, (void *)&fam) == 0) {
85     /* Prometheus uses a message length prefix to determine where one
86      * MetricFamily ends and the next begins. This delimiter is encoded as a
87      * "varint", which is common in Protobufs. */
88     uint8_t delim[VARINT_UINT32_BYTES] = {0};
89     size_t delim_len = varint(
90         delim,
91         (uint32_t)io__prometheus__client__metric_family__get_packed_size(fam));
92     buffer->append(buffer, delim_len, delim);
93
94     io__prometheus__client__metric_family__pack_to_buffer(fam, buffer);
95   }
96   c_avl_iterator_destroy(iter);
97
98   pthread_mutex_unlock(&metrics_lock);
99 }
100
101 /* format_labels formats a metric's labels in Prometheus-compatible format. This
102  * format looks like this:
103  *
104  *   key0="value0",key1="value1"
105  */
106 static char *format_labels(char *buffer, size_t buffer_size,
107                            Io__Prometheus__Client__Metric const *m) {
108   /* our metrics always have at least one and at most three labels. */
109   assert(m->n_label >= 1);
110   assert(m->n_label <= 3);
111
112 #define LABEL_BUFFER_SIZE (2 * DATA_MAX_NAME_LEN + 4)
113
114   char *labels[3] = {
115       (char[LABEL_BUFFER_SIZE]){0}, (char[LABEL_BUFFER_SIZE]){0},
116       (char[LABEL_BUFFER_SIZE]){0},
117   };
118
119   for (size_t i = 0; i < m->n_label; i++)
120     ssnprintf(labels[i], LABEL_BUFFER_SIZE, "%s=\"%s\"", m->label[i]->name,
121               m->label[i]->value);
122
123   strjoin(buffer, buffer_size, labels, m->n_label, ",");
124   return buffer;
125 }
126
127 /* format_protobuf iterates over all metric families in "metrics" and adds them
128  * to a buffer in plain text format. */
129 static void format_text(ProtobufCBuffer *buffer) {
130   pthread_mutex_lock(&metrics_lock);
131
132   char *unused_name;
133   Io__Prometheus__Client__MetricFamily *fam;
134   c_avl_iterator_t *iter = c_avl_get_iterator(metrics);
135   while (c_avl_iterator_next(iter, (void *)&unused_name, (void *)&fam) == 0) {
136     char line[1024]; /* 4x DATA_MAX_NAME_LEN? */
137
138     ssnprintf(line, sizeof(line), "# HELP %s %s\n", fam->name, fam->help);
139     buffer->append(buffer, strlen(line), (uint8_t *)line);
140
141     ssnprintf(line, sizeof(line), "# TYPE %s %s\n", fam->name,
142               (fam->type == IO__PROMETHEUS__CLIENT__METRIC_TYPE__GAUGE)
143                   ? "gauge"
144                   : "counter");
145     buffer->append(buffer, strlen(line), (uint8_t *)line);
146
147     for (size_t i = 0; i < fam->n_metric; i++) {
148       Io__Prometheus__Client__Metric *m = fam->metric[i];
149
150       char labels[1024];
151
152       char timestamp_ms[24] = "";
153       if (m->has_timestamp_ms)
154         ssnprintf(timestamp_ms, sizeof(timestamp_ms), " %" PRIi64,
155                   m->timestamp_ms);
156
157       if (fam->type == IO__PROMETHEUS__CLIENT__METRIC_TYPE__GAUGE)
158         ssnprintf(line, sizeof(line), "%s{%s} " GAUGE_FORMAT "%s\n", fam->name,
159                   format_labels(labels, sizeof(labels), m), m->gauge->value,
160                   timestamp_ms);
161       else /* if (fam->type == IO__PROMETHEUS__CLIENT__METRIC_TYPE__COUNTER) */
162         ssnprintf(line, sizeof(line), "%s{%s} %.0f%s\n", fam->name,
163                   format_labels(labels, sizeof(labels), m), m->counter->value,
164                   timestamp_ms);
165
166       buffer->append(buffer, strlen(line), (uint8_t *)line);
167     }
168   }
169   c_avl_iterator_destroy(iter);
170
171   char server[1024];
172   ssnprintf(server, sizeof(server), "\n# collectd/write_prometheus %s at %s\n",
173             PACKAGE_VERSION, hostname_g);
174   buffer->append(buffer, strlen(server), (uint8_t *)server);
175
176   pthread_mutex_unlock(&metrics_lock);
177 }
178
179 /* http_handler is the callback called by the microhttpd library. It essentially
180  * handles all HTTP request aspects and creates an HTTP response. */
181 static int http_handler(void *cls, struct MHD_Connection *connection,
182                         const char *url, const char *method,
183                         const char *version, const char *upload_data,
184                         size_t *upload_data_size, void **connection_state) {
185   if (strcmp(method, MHD_HTTP_METHOD_GET) != 0) {
186     return MHD_NO;
187   }
188
189   /* On the first call for each connection, return without anything further.
190    * Apparently not everything has been initialized yet or so; the docs are not
191    * very specific on the issue. */
192   if (*connection_state == NULL) {
193     /* set to a random non-NULL pointer. */
194     *connection_state = &(int){42};
195     return MHD_YES;
196   }
197
198   char const *accept = MHD_lookup_connection_value(connection, MHD_HEADER_KIND,
199                                                    MHD_HTTP_HEADER_ACCEPT);
200   _Bool want_proto =
201       (accept != NULL) &&
202       (strstr(accept, "application/vnd.google.protobuf") != NULL);
203
204   uint8_t scratch[4096] = {0};
205   ProtobufCBufferSimple simple = PROTOBUF_C_BUFFER_SIMPLE_INIT(scratch);
206   ProtobufCBuffer *buffer = (ProtobufCBuffer *)&simple;
207
208   if (want_proto)
209     format_protobuf(buffer);
210   else
211     format_text(buffer);
212
213   struct MHD_Response *res = MHD_create_response_from_data(
214       simple.len, simple.data, /* must_free = */ 0, /* must_copy = */ 1);
215   MHD_add_response_header(res, MHD_HTTP_HEADER_CONTENT_TYPE,
216                           want_proto ? CONTENT_TYPE_PROTO : CONTENT_TYPE_TEXT);
217
218   int status = MHD_queue_response(connection, MHD_HTTP_OK, res);
219
220   MHD_destroy_response(res);
221   PROTOBUF_C_BUFFER_SIMPLE_CLEAR(&simple);
222   return status;
223 }
224
225 /*
226  * Functions for manipulating the global state in "metrics". This is organized
227  * in two tiers: the global "metrics" tree holds "metric families", which are
228  * identified by a name (a string). Each metric family has one or more
229  * "metrics", which are identified by a unique set of key-value-pairs. For
230  * example:
231  *
232  * collectd_cpu_total
233  *   {cpu="0",type="idle"}
234  *   {cpu="0",type="user"}
235  *   ...
236  * collectd_memory
237  *   {memory="used"}
238  *   {memory="free"}
239  *   ...
240  * {{{ */
241 /* label_pair_destroy frees the memory used by a label pair. */
242 static void label_pair_destroy(Io__Prometheus__Client__LabelPair *msg) {
243   if (msg == NULL)
244     return;
245
246   sfree(msg->name);
247   sfree(msg->value);
248
249   sfree(msg);
250 }
251
252 /* label_pair_clone allocates and initializes a new label pair. */
253 static Io__Prometheus__Client__LabelPair *
254 label_pair_clone(Io__Prometheus__Client__LabelPair const *orig) {
255   Io__Prometheus__Client__LabelPair *copy = calloc(1, sizeof(*copy));
256   if (copy == NULL)
257     return NULL;
258   io__prometheus__client__label_pair__init(copy);
259
260   copy->name = strdup(orig->name);
261   copy->value = strdup(orig->value);
262   if ((copy->name == NULL) || (copy->value == NULL)) {
263     label_pair_destroy(copy);
264     return NULL;
265   }
266
267   return copy;
268 }
269
270 /* metric_destroy frees the memory used by a metric. */
271 static void metric_destroy(Io__Prometheus__Client__Metric *msg) {
272   if (msg == NULL)
273     return;
274
275   for (size_t i = 0; i < msg->n_label; i++) {
276     label_pair_destroy(msg->label[i]);
277   }
278   sfree(msg->label);
279
280   sfree(msg->gauge);
281   sfree(msg->counter);
282
283   sfree(msg);
284 }
285
286 /* metric_cmp compares two metrics. It's prototype makes it easy to use with
287  * qsort(3) and bsearch(3). */
288 static int metric_cmp(void const *a, void const *b) {
289   Io__Prometheus__Client__Metric const *m_a =
290       *((Io__Prometheus__Client__Metric **)a);
291   Io__Prometheus__Client__Metric const *m_b =
292       *((Io__Prometheus__Client__Metric **)b);
293
294   if (m_a->n_label < m_b->n_label)
295     return -1;
296   else if (m_a->n_label > m_b->n_label)
297     return 1;
298
299   /* Prometheus does not care about the order of labels. All labels in this
300    * plugin are created by METRIC_ADD_LABELS(), though, and therefore always
301    * appear in the same order. We take advantage of this and simplify the check
302    * by making sure all labels are the same in each position.
303    *
304    * We also only need to check the label values, because the label names are
305    * the same for all metrics in a metric family.
306    *
307    * 3 labels:
308    * [0] $plugin="$plugin_instance" => $plugin is the same within a family
309    * [1] type="$type_instance"      => "type" is a static string
310    * [2] instance="$host"           => "instance" is a static string
311    *
312    * 2 labels, variant 1:
313    * [0] $plugin="$plugin_instance" => $plugin is the same within a family
314    * [1] instance="$host"           => "instance" is a static string
315    *
316    * 2 labels, variant 2:
317    * [0] $plugin="$type_instance"   => $plugin is the same within a family
318    * [1] instance="$host"           => "instance" is a static string
319    *
320    * 1 label:
321    * [1] instance="$host"           => "instance" is a static string
322    */
323   for (size_t i = 0; i < m_a->n_label; i++) {
324     int status = strcmp(m_a->label[i]->value, m_b->label[i]->value);
325     if (status != 0)
326       return status;
327
328 #if COLLECT_DEBUG
329     assert(strcmp(m_a->label[i]->name, m_b->label[i]->name) == 0);
330 #endif
331   }
332
333   return 0;
334 }
335
336 #define METRIC_INIT                                                            \
337   &(Io__Prometheus__Client__Metric) {                                          \
338     .label =                                                                   \
339         (Io__Prometheus__Client__LabelPair *[]){                               \
340             &(Io__Prometheus__Client__LabelPair){                              \
341                 .name = NULL,                                                  \
342             },                                                                 \
343             &(Io__Prometheus__Client__LabelPair){                              \
344                 .name = NULL,                                                  \
345             },                                                                 \
346             &(Io__Prometheus__Client__LabelPair){                              \
347                 .name = NULL,                                                  \
348             },                                                                 \
349         },                                                                     \
350     .n_label = 0,                                                              \
351   }
352
353 #define METRIC_ADD_LABELS(m, vl)                                               \
354   do {                                                                         \
355     if (strlen((vl)->plugin_instance) != 0) {                                  \
356       (m)->label[(m)->n_label]->name = (char *)(vl)->plugin;                   \
357       (m)->label[(m)->n_label]->value = (char *)(vl)->plugin_instance;         \
358       (m)->n_label++;                                                          \
359     }                                                                          \
360                                                                                \
361     if (strlen((vl)->type_instance) != 0) {                                    \
362       (m)->label[(m)->n_label]->name = "type";                                 \
363       if (strlen((vl)->plugin_instance) == 0)                                  \
364         (m)->label[(m)->n_label]->name = (char *)(vl)->plugin;                 \
365       (m)->label[(m)->n_label]->value = (char *)(vl)->type_instance;           \
366       (m)->n_label++;                                                          \
367     }                                                                          \
368                                                                                \
369     (m)->label[(m)->n_label]->name = "instance";                               \
370     (m)->label[(m)->n_label]->value = (char *)(vl)->host;                      \
371     (m)->n_label++;                                                            \
372   } while (0)
373
374 /* metric_clone allocates and initializes a new metric based on orig. */
375 static Io__Prometheus__Client__Metric *
376 metric_clone(Io__Prometheus__Client__Metric const *orig) {
377   Io__Prometheus__Client__Metric *copy = calloc(1, sizeof(*copy));
378   if (copy == NULL)
379     return NULL;
380   io__prometheus__client__metric__init(copy);
381
382   copy->n_label = orig->n_label;
383   copy->label = calloc(copy->n_label, sizeof(*copy->label));
384   if (copy->label == NULL) {
385     sfree(copy);
386     return NULL;
387   }
388
389   for (size_t i = 0; i < copy->n_label; i++) {
390     copy->label[i] = label_pair_clone(orig->label[i]);
391     if (copy->label[i] == NULL) {
392       metric_destroy(copy);
393       return NULL;
394     }
395   }
396
397   return copy;
398 }
399
400 /* metric_update stores the new value and timestamp in m. */
401 static int metric_update(Io__Prometheus__Client__Metric *m, value_t value,
402                          int ds_type, cdtime_t t, cdtime_t interval) {
403   if (ds_type == DS_TYPE_GAUGE) {
404     sfree(m->counter);
405     if (m->gauge == NULL) {
406       m->gauge = calloc(1, sizeof(*m->gauge));
407       if (m->gauge == NULL)
408         return ENOMEM;
409       io__prometheus__client__gauge__init(m->gauge);
410     }
411
412     m->gauge->value = (double)value.gauge;
413     m->gauge->has_value = 1;
414   } else { /* not gauge */
415     sfree(m->gauge);
416     if (m->counter == NULL) {
417       m->counter = calloc(1, sizeof(*m->counter));
418       if (m->counter == NULL)
419         return ENOMEM;
420       io__prometheus__client__counter__init(m->counter);
421     }
422
423     switch (ds_type) {
424     case DS_TYPE_ABSOLUTE:
425       m->counter->value = (double)value.absolute;
426       break;
427     case DS_TYPE_COUNTER:
428       m->counter->value = (double)value.counter;
429       break;
430     default:
431       m->counter->value = (double)value.derive;
432       break;
433     }
434     m->counter->has_value = 1;
435   }
436
437   /* Prometheus has a globally configured timeout after which metrics are
438    * considered stale. This causes problems when metrics have an interval
439    * exceeding that limit. We emulate the behavior of "pushgateway" and *not*
440    * send a timestamp value â€“ Prometheus will fill in the current time. */
441   if (interval <= staleness_delta) {
442     m->timestamp_ms = CDTIME_T_TO_MS(t);
443     m->has_timestamp_ms = 1;
444   } else {
445     static c_complain_t long_metric = C_COMPLAIN_INIT_STATIC;
446     c_complain(
447         LOG_NOTICE, &long_metric,
448         "write_prometheus plugin: You have metrics with an interval exceeding "
449         "\"StalenessDelta\" setting (%.3fs). This is suboptimal, please check "
450         "the collectd.conf(5) manual page to understand what's going on.",
451         CDTIME_T_TO_DOUBLE(staleness_delta));
452
453     m->timestamp_ms = 0;
454     m->has_timestamp_ms = 0;
455   }
456
457   return 0;
458 }
459
460 /* metric_family_add_metric adds m to the metric list of fam. */
461 static int metric_family_add_metric(Io__Prometheus__Client__MetricFamily *fam,
462                                     Io__Prometheus__Client__Metric *m) {
463   Io__Prometheus__Client__Metric **tmp =
464       realloc(fam->metric, (fam->n_metric + 1) * sizeof(*fam->metric));
465   if (tmp == NULL)
466     return ENOMEM;
467   fam->metric = tmp;
468
469   fam->metric[fam->n_metric] = m;
470   fam->n_metric++;
471
472   /* Sort the metrics so that lookup is fast. */
473   qsort(fam->metric, fam->n_metric, sizeof(*fam->metric), metric_cmp);
474
475   return 0;
476 }
477
478 /* metric_family_delete_metric looks up and deletes the metric corresponding to
479  * vl. */
480 static int
481 metric_family_delete_metric(Io__Prometheus__Client__MetricFamily *fam,
482                             value_list_t const *vl) {
483   Io__Prometheus__Client__Metric *key = METRIC_INIT;
484   METRIC_ADD_LABELS(key, vl);
485
486   size_t i;
487   for (i = 0; i < fam->n_metric; i++) {
488     if (metric_cmp(&key, &fam->metric[i]) == 0)
489       break;
490   }
491
492   if (i >= fam->n_metric)
493     return ENOENT;
494
495   metric_destroy(fam->metric[i]);
496   if ((fam->n_metric - 1) > i)
497     memmove(&fam->metric[i], &fam->metric[i + 1],
498             ((fam->n_metric - 1) - i) * sizeof(fam->metric[i]));
499   fam->n_metric--;
500
501   Io__Prometheus__Client__Metric **tmp =
502       realloc(fam->metric, fam->n_metric * sizeof(*fam->metric));
503   if ((tmp != NULL) || (fam->n_metric == 0))
504     fam->metric = tmp;
505
506   return 0;
507 }
508
509 /* metric_family_get_metric looks up the matching metric in a metric family,
510  * allocating it if necessary. */
511 static Io__Prometheus__Client__Metric *
512 metric_family_get_metric(Io__Prometheus__Client__MetricFamily *fam,
513                          value_list_t const *vl) {
514   Io__Prometheus__Client__Metric *key = METRIC_INIT;
515   METRIC_ADD_LABELS(key, vl);
516
517   /* Metrics are sorted in metric_family_add_metric() so that we can do a binary
518    * search here. */
519   Io__Prometheus__Client__Metric **m = bsearch(
520       &key, fam->metric, fam->n_metric, sizeof(*fam->metric), metric_cmp);
521
522   if (m != NULL) {
523     return *m;
524   }
525
526   Io__Prometheus__Client__Metric *new_metric = metric_clone(key);
527   if (new_metric == NULL)
528     return NULL;
529
530   DEBUG("write_prometheus plugin: created new metric in family");
531   int status = metric_family_add_metric(fam, new_metric);
532   if (status != 0) {
533     metric_destroy(new_metric);
534     return NULL;
535   }
536
537   return new_metric;
538 }
539
540 /* metric_family_update looks up the matching metric in a metric family,
541  * allocating it if necessary, and updates the metric to the latest value. */
542 static int metric_family_update(Io__Prometheus__Client__MetricFamily *fam,
543                                 data_set_t const *ds, value_list_t const *vl,
544                                 size_t ds_index) {
545   Io__Prometheus__Client__Metric *m = metric_family_get_metric(fam, vl);
546   if (m == NULL)
547     return -1;
548
549   return metric_update(m, vl->values[ds_index], ds->ds[ds_index].type, vl->time,
550                        vl->interval);
551 }
552
553 /* metric_family_destroy frees the memory used by a metric family. */
554 static void metric_family_destroy(Io__Prometheus__Client__MetricFamily *msg) {
555   if (msg == NULL)
556     return;
557
558   sfree(msg->name);
559   sfree(msg->help);
560
561   for (size_t i = 0; i < msg->n_metric; i++) {
562     metric_destroy(msg->metric[i]);
563   }
564   sfree(msg->metric);
565
566   sfree(msg);
567 }
568
569 /* metric_family_create allocates and initializes a new metric family. */
570 static Io__Prometheus__Client__MetricFamily *
571 metric_family_create(char *name, data_set_t const *ds, value_list_t const *vl,
572                      size_t ds_index) {
573   Io__Prometheus__Client__MetricFamily *msg = calloc(1, sizeof(*msg));
574   if (msg == NULL)
575     return NULL;
576   io__prometheus__client__metric_family__init(msg);
577
578   msg->name = name;
579
580   char help[1024];
581   ssnprintf(
582       help, sizeof(help),
583       "write_prometheus plugin: '%s' Type: '%s', Dstype: '%s', Dsname: '%s'",
584       vl->plugin, vl->type, DS_TYPE_TO_STRING(ds->ds[ds_index].type),
585       ds->ds[ds_index].name);
586   msg->help = strdup(help);
587
588   msg->type = (ds->ds[ds_index].type == DS_TYPE_GAUGE)
589                   ? IO__PROMETHEUS__CLIENT__METRIC_TYPE__GAUGE
590                   : IO__PROMETHEUS__CLIENT__METRIC_TYPE__COUNTER;
591   msg->has_type = 1;
592
593   return msg;
594 }
595
596 /* metric_family_name creates a metric family's name from a data source. This is
597  * done in the same way as done by the "collectd_exporter" for best possible
598  * compatibility. In essence, the plugin, type and data source name go in the
599  * metric family name, while hostname, plugin instance and type instance go into
600  * the labels of a metric. */
601 static char *metric_family_name(data_set_t const *ds, value_list_t const *vl,
602                                 size_t ds_index) {
603   char const *fields[5] = {"collectd"};
604   size_t fields_num = 1;
605
606   if (strcmp(vl->plugin, vl->type) != 0) {
607     fields[fields_num] = vl->plugin;
608     fields_num++;
609   }
610   fields[fields_num] = vl->type;
611   fields_num++;
612
613   if (strcmp("value", ds->ds[ds_index].name) != 0) {
614     fields[fields_num] = ds->ds[ds_index].name;
615     fields_num++;
616   }
617
618   /* Prometheus best practices:
619    * cumulative metrics should have a "total" suffix. */
620   if ((ds->ds[ds_index].type == DS_TYPE_COUNTER) ||
621       (ds->ds[ds_index].type == DS_TYPE_DERIVE)) {
622     fields[fields_num] = "total";
623     fields_num++;
624   }
625
626   char name[5 * DATA_MAX_NAME_LEN];
627   strjoin(name, sizeof(name), (char **)fields, fields_num, "_");
628   return strdup(name);
629 }
630
631 /* metric_family_get looks up the matching metric family, allocating it if
632  * necessary. */
633 static Io__Prometheus__Client__MetricFamily *
634 metric_family_get(data_set_t const *ds, value_list_t const *vl,
635                   size_t ds_index) {
636   char *name = metric_family_name(ds, vl, ds_index);
637   if (name == NULL) {
638     ERROR("write_prometheus plugin: Allocating metric family name failed.");
639     return NULL;
640   }
641
642   Io__Prometheus__Client__MetricFamily *fam = NULL;
643   if (c_avl_get(metrics, name, (void *)&fam) == 0) {
644     sfree(name);
645     assert(fam != NULL);
646     return fam;
647   }
648
649   fam = metric_family_create(name, ds, vl, ds_index);
650   if (fam == NULL) {
651     ERROR("write_prometheus plugin: Allocating metric family failed.");
652     sfree(name);
653     return NULL;
654   }
655
656   /* If successful, "name" is owned by "fam", i.e. don't free it here. */
657   DEBUG("write_prometheus plugin: metric family \"%s\" has been created.",
658         name);
659   name = NULL;
660
661   int status = c_avl_insert(metrics, fam->name, fam);
662   if (status != 0) {
663     ERROR("write_prometheus plugin: Adding \"%s\" failed.", name);
664     metric_family_destroy(fam);
665     return NULL;
666   }
667
668   return fam;
669 }
670 /* }}} */
671
672 /*
673  * collectd callbacks
674  */
675 static int prom_config(oconfig_item_t *ci) {
676   for (int i = 0; i < ci->children_num; i++) {
677     oconfig_item_t *child = ci->children + i;
678
679     if (strcasecmp("Port", child->key) == 0) {
680       int status = cf_util_get_port_number(child);
681       if (status > 0)
682         httpd_port = (unsigned short)status;
683     } else if (strcasecmp("StalenessDelta", child->key) == 0) {
684       cf_util_get_cdtime(child, &staleness_delta);
685     } else {
686       WARNING("write_prometheus plugin: Ignoring unknown configuration option "
687               "\"%s\".",
688               child->key);
689     }
690   }
691
692   return 0;
693 }
694
695 static int prom_init() {
696   if (metrics == NULL) {
697     metrics = c_avl_create((void *)strcmp);
698     if (metrics == NULL) {
699       ERROR("write_prometheus plugin: c_avl_create() failed.");
700       return -1;
701     }
702   }
703
704   if (httpd == NULL) {
705     unsigned int flags = MHD_USE_THREAD_PER_CONNECTION;
706 #if MHD_VERSION >= 0x00093300
707     flags |= MHD_USE_DUAL_STACK;
708 #endif
709
710     httpd = MHD_start_daemon(flags, httpd_port,
711                              /* MHD_AcceptPolicyCallback = */ NULL,
712                              /* MHD_AcceptPolicyCallback arg = */ NULL,
713                              http_handler, NULL, MHD_OPTION_END);
714     if (httpd == NULL) {
715       ERROR("write_prometheus plugin: MHD_start_daemon() failed.");
716       return -1;
717     }
718     DEBUG("write_prometheus plugin: Successfully started microhttpd %s",
719           MHD_get_version());
720   }
721
722   return 0;
723 }
724
725 static int prom_write(data_set_t const *ds, value_list_t const *vl,
726                       __attribute__((unused)) user_data_t *ud) {
727   pthread_mutex_lock(&metrics_lock);
728
729   for (size_t i = 0; i < ds->ds_num; i++) {
730     Io__Prometheus__Client__MetricFamily *fam = metric_family_get(ds, vl, i);
731     if (fam == NULL)
732       continue;
733
734     int status = metric_family_update(fam, ds, vl, i);
735     if (status != 0) {
736       ERROR("write_prometheus plugin: Updating metric \"%s\" failed with "
737             "status %d",
738             fam->name, status);
739       continue;
740     }
741   }
742
743   pthread_mutex_unlock(&metrics_lock);
744   return 0;
745 }
746
747 static int prom_missing(value_list_t const *vl,
748                         __attribute__((unused)) user_data_t *ud) {
749   data_set_t const *ds = plugin_get_ds(vl->type);
750   if (ds == NULL)
751     return ENOENT;
752
753   pthread_mutex_lock(&metrics_lock);
754
755   for (size_t i = 0; i < ds->ds_num; i++) {
756     Io__Prometheus__Client__MetricFamily *fam = metric_family_get(ds, vl, i);
757     if (fam == NULL)
758       continue;
759
760     int status = metric_family_delete_metric(fam, vl);
761     if (status != 0) {
762       ERROR("write_prometheus plugin: Deleting a metric in family \"%s\" "
763             "failed with status %d",
764             fam->name, status);
765       continue;
766     }
767
768     if (fam->n_metric == 0) {
769       int status = c_avl_remove(metrics, fam->name, NULL, NULL);
770       if (status != 0) {
771         ERROR("write_prometheus plugin: Deleting metric family \"%s\" failed "
772               "with status %d",
773               fam->name, status);
774         continue;
775       }
776       metric_family_destroy(fam);
777     }
778   }
779
780   pthread_mutex_unlock(&metrics_lock);
781   return 0;
782 }
783
784 static int prom_shutdown() {
785   if (httpd != NULL) {
786     MHD_stop_daemon(httpd);
787     httpd = NULL;
788   }
789
790   pthread_mutex_lock(&metrics_lock);
791   if (metrics != NULL) {
792     char *name;
793     Io__Prometheus__Client__MetricFamily *fam;
794     while (c_avl_pick(metrics, (void *)&name, (void *)&fam) == 0) {
795       assert(name == fam->name);
796       name = NULL;
797
798       metric_family_destroy(fam);
799     }
800     c_avl_destroy(metrics);
801     metrics = NULL;
802   }
803   pthread_mutex_unlock(&metrics_lock);
804
805   return 0;
806 }
807
808 void module_register() {
809   plugin_register_complex_config("write_prometheus", prom_config);
810   plugin_register_init("write_prometheus", prom_init);
811   plugin_register_write("write_prometheus", prom_write,
812                         /* user data = */ NULL);
813   plugin_register_missing("write_prometheus", prom_missing,
814                           /* user data = */ NULL);
815   plugin_register_shutdown("write_prometheus", prom_shutdown);
816 }
817
818 /* vim: set sw=2 sts=2 et fdm=marker : */