2 * collectd - src/pinba.c (based on code from pinba_engine 0.0.5)
3 * Copyright (c) 2007-2009 Antony Dovgal
4 * Copyright (C) 2010 Phoenix Kayo
5 * Copyright (C) 2010 Florian Forster
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; only version 2 of the License is applicable.
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 * Antony Dovgal <tony at daylessday.org>
22 * Phoenix Kayo <kayo.k11.4 at gmail.com>
23 * Florian Forster <octo at collectd.org>
34 #include "pinba.pb-c.h"
36 /* AIX doesn't have MSG_DONTWAIT */
38 # define MSG_DONTWAIT MSG_NONBLOCK
44 #ifndef PINBA_UDP_BUFFER_SIZE
45 # define PINBA_UDP_BUFFER_SIZE 65536
48 #ifndef PINBA_DEFAULT_NODE
49 # define PINBA_DEFAULT_NODE "::0"
52 #ifndef PINBA_DEFAULT_SERVICE
53 # define PINBA_DEFAULT_SERVICE "30002"
56 #ifndef PINBA_MAX_SOCKETS
57 # define PINBA_MAX_SOCKETS 16
61 * Private data structures
66 struct pollfd fd[PINBA_MAX_SOCKETS];
69 typedef struct pinba_socket_s pinba_socket_t;
71 /* Fixed point counter value. n is the decimal part multiplied by 10^9. */
72 struct float_counter_s
75 uint64_t n; /* nanos */
77 typedef struct float_counter_s float_counter_t;
79 struct pinba_statnode_s
81 /* collector name, used as plugin instance */
91 float_counter_t req_time;
92 float_counter_t ru_utime;
93 float_counter_t ru_stime;
98 typedef struct pinba_statnode_s pinba_statnode_t;
102 * Module global variables
105 static pinba_statnode_t *stat_nodes = NULL;
106 static unsigned int stat_nodes_num = 0;
107 static pthread_mutex_t stat_nodes_lock;
109 static char *conf_node = NULL;
110 static char *conf_service = NULL;
112 static _Bool collector_thread_running = 0;
113 static _Bool collector_thread_do_shutdown = 0;
114 static pthread_t collector_thread_id;
120 static void float_counter_add (float_counter_t *fc, float val) /* {{{ */
127 tmp = (uint64_t) val;
131 fc->n += (uint64_t) ((val * 1000000000.0) + .5);
133 if (fc->n >= 1000000000)
137 assert (fc->n < 1000000000);
139 } /* }}} void float_counter_add */
141 static derive_t float_counter_get (const float_counter_t *fc, /* {{{ */
146 ret = (derive_t) (fc->i * factor);
147 ret += (derive_t) (fc->n / (1000000000 / factor));
150 } /* }}} derive_t float_counter_get */
152 static void strset (char **str, const char *new) /* {{{ */
165 } /* }}} void strset */
167 static void service_statnode_add(const char *name, /* {{{ */
172 pinba_statnode_t *node;
174 node = realloc (stat_nodes,
175 sizeof (*stat_nodes) * (stat_nodes_num + 1));
178 ERROR ("pinba plugin: realloc failed");
183 node = stat_nodes + stat_nodes_num;
184 memset (node, 0, sizeof (*node));
192 node->mem_peak = NAN;
194 /* fill query data */
195 strset (&node->name, name);
196 strset (&node->host, host);
197 strset (&node->server, server);
198 strset (&node->script, script);
200 /* increment counter */
202 } /* }}} void service_statnode_add */
204 /* Copy the data from the global "stat_nodes" list into the buffer pointed to
205 * by "res", doing the derivation in the process. Returns the next index or
206 * zero if the end of the list has been reached. */
207 static unsigned int service_statnode_collect (pinba_statnode_t *res, /* {{{ */
210 pinba_statnode_t *node;
212 if (stat_nodes_num == 0)
215 /* begin collecting */
217 pthread_mutex_lock (&stat_nodes_lock);
220 if (index >= stat_nodes_num)
222 pthread_mutex_unlock (&stat_nodes_lock);
226 node = stat_nodes + index;
227 memcpy (res, node, sizeof (*res));
230 node->mem_peak = NAN;
233 } /* }}} unsigned int service_statnode_collect */
235 static void service_statnode_process (pinba_statnode_t *node, /* {{{ */
236 Pinba__Request* request)
240 float_counter_add (&node->req_time, request->request_time);
241 float_counter_add (&node->ru_utime, request->ru_utime);
242 float_counter_add (&node->ru_stime, request->ru_stime);
244 node->doc_size += request->document_size;
246 if (isnan (node->mem_peak)
247 || (node->mem_peak < ((gauge_t) request->memory_peak)))
248 node->mem_peak = (gauge_t) request->memory_peak;
250 } /* }}} void service_statnode_process */
252 static void service_process_request (Pinba__Request *request) /* {{{ */
254 pthread_mutex_lock (&stat_nodes_lock);
256 for (unsigned int i = 0; i < stat_nodes_num; i++)
258 if ((stat_nodes[i].host != NULL)
259 && (strcmp (request->hostname, stat_nodes[i].host) != 0))
262 if ((stat_nodes[i].server != NULL)
263 && (strcmp (request->server_name, stat_nodes[i].server) != 0))
266 if ((stat_nodes[i].script != NULL)
267 && (strcmp (request->script_name, stat_nodes[i].script) != 0))
270 service_statnode_process(&stat_nodes[i], request);
273 pthread_mutex_unlock(&stat_nodes_lock);
274 } /* }}} void service_process_request */
276 static int pb_del_socket (pinba_socket_t *s, /* {{{ */
279 if (index >= s->fd_num)
282 close (s->fd[index].fd);
283 s->fd[index].fd = -1;
285 /* When deleting the last element in the list, no memmove is necessary. */
286 if (index < (s->fd_num - 1))
288 memmove (&s->fd[index], &s->fd[index + 1],
289 sizeof (s->fd[0]) * (s->fd_num - (index + 1)));
294 } /* }}} int pb_del_socket */
296 static int pb_add_socket (pinba_socket_t *s, /* {{{ */
297 const struct addrinfo *ai)
303 if (s->fd_num == PINBA_MAX_SOCKETS)
305 WARNING ("pinba plugin: Sorry, you have hit the built-in limit of "
306 "%i sockets. Please complain to the collectd developers so we can "
307 "raise the limit.", PINBA_MAX_SOCKETS);
311 fd = socket (ai->ai_family, ai->ai_socktype, ai->ai_protocol);
315 ERROR ("pinba plugin: socket(2) failed: %s",
316 sstrerror (errno, errbuf, sizeof (errbuf)));
321 status = setsockopt (fd, SOL_SOCKET, SO_REUSEADDR, &tmp, sizeof (tmp));
325 WARNING ("pinba plugin: setsockopt(SO_REUSEADDR) failed: %s",
326 sstrerror (errno, errbuf, sizeof (errbuf)));
329 status = bind (fd, ai->ai_addr, ai->ai_addrlen);
333 ERROR ("pinba plugin: bind(2) failed: %s",
334 sstrerror (errno, errbuf, sizeof (errbuf)));
339 s->fd[s->fd_num].fd = fd;
340 s->fd[s->fd_num].events = POLLIN | POLLPRI;
341 s->fd[s->fd_num].revents = 0;
345 } /* }}} int pb_add_socket */
347 static pinba_socket_t *pinba_socket_open (const char *node, /* {{{ */
351 struct addrinfo *ai_list;
355 node = PINBA_DEFAULT_NODE;
358 service = PINBA_DEFAULT_SERVICE;
360 struct addrinfo ai_hints = {
361 .ai_family = AF_UNSPEC,
362 .ai_flags = AI_PASSIVE,
363 .ai_socktype = SOCK_DGRAM
366 status = getaddrinfo (node, service,
367 &ai_hints, &ai_list);
370 ERROR ("pinba plugin: getaddrinfo(3) failed: %s",
371 gai_strerror (status));
374 assert (ai_list != NULL);
376 s = calloc (1, sizeof (*s));
379 freeaddrinfo (ai_list);
380 ERROR ("pinba plugin: calloc failed.");
384 for (struct addrinfo *ai_ptr = ai_list; ai_ptr != NULL; ai_ptr = ai_ptr->ai_next)
386 status = pb_add_socket (s, ai_ptr);
389 } /* for (ai_list) */
391 freeaddrinfo (ai_list);
395 WARNING ("pinba plugin: Unable to open socket for address %s.", node);
401 } /* }}} pinba_socket_open */
403 static void pinba_socket_free (pinba_socket_t *socket) /* {{{ */
408 for (nfds_t i = 0; i < socket->fd_num; i++)
410 if (socket->fd[i].fd < 0)
412 close (socket->fd[i].fd);
413 socket->fd[i].fd = -1;
417 } /* }}} void pinba_socket_free */
419 static int pinba_process_stats_packet (const uint8_t *buffer, /* {{{ */
422 Pinba__Request *request;
424 request = pinba__request__unpack (NULL, buffer_size, buffer);
429 service_process_request(request);
430 pinba__request__free_unpacked (request, NULL);
433 } /* }}} int pinba_process_stats_packet */
435 static int pinba_udp_read_callback_fn (int sock) /* {{{ */
437 uint8_t buffer[PINBA_UDP_BUFFER_SIZE];
443 buffer_size = sizeof (buffer);
444 status = recvfrom (sock, buffer, buffer_size - 1, MSG_DONTWAIT, /* from = */ NULL, /* from len = */ 0);
451 || (errno == EWOULDBLOCK)
453 || (errno == EAGAIN))
458 WARNING("pinba plugin: recvfrom(2) failed: %s",
459 sstrerror (errno, errbuf, sizeof (errbuf)));
462 else if (status == 0)
464 DEBUG ("pinba plugin: recvfrom(2) returned unexpected status zero.");
467 else /* if (status > 0) */
469 assert (((size_t) status) < buffer_size);
470 buffer_size = (size_t) status;
471 buffer[buffer_size] = 0;
473 status = pinba_process_stats_packet (buffer, buffer_size);
475 DEBUG("pinba plugin: Parsing packet failed.");
483 } /* }}} void pinba_udp_read_callback_fn */
485 static int receive_loop (void) /* {{{ */
489 s = pinba_socket_open (conf_node, conf_service);
492 ERROR ("pinba plugin: Collector thread is exiting prematurely.");
496 while (!collector_thread_do_shutdown)
503 status = poll (s->fd, s->fd_num, /* timeout = */ 1000);
504 if (status == 0) /* timeout */
512 if ((errno == EINTR) || (errno == EAGAIN))
515 ERROR ("pinba plugin: poll(2) failed: %s",
516 sstrerror (errno, errbuf, sizeof (errbuf)));
517 pinba_socket_free (s);
521 for (nfds_t i = 0; i < s->fd_num; i++)
523 if (s->fd[i].revents & (POLLERR | POLLHUP | POLLNVAL))
525 pb_del_socket (s, i);
528 else if (s->fd[i].revents & (POLLIN | POLLPRI))
530 pinba_udp_read_callback_fn (s->fd[i].fd);
533 } /* while (!collector_thread_do_shutdown) */
535 pinba_socket_free (s);
539 } /* }}} int receive_loop */
541 static void *collector_thread (void *arg) /* {{{ */
545 memset (&collector_thread_id, 0, sizeof (collector_thread_id));
546 collector_thread_running = 0;
549 } /* }}} void *collector_thread */
552 * Plugin declaration section
554 static int pinba_config_view (const oconfig_item_t *ci) /* {{{ */
562 status = cf_util_get_string (ci, &name);
566 for (int i = 0; i < ci->children_num; i++)
568 oconfig_item_t *child = ci->children + i;
570 if (strcasecmp ("Host", child->key) == 0)
571 status = cf_util_get_string (child, &host);
572 else if (strcasecmp ("Server", child->key) == 0)
573 status = cf_util_get_string (child, &server);
574 else if (strcasecmp ("Script", child->key) == 0)
575 status = cf_util_get_string (child, &script);
578 WARNING ("pinba plugin: Unknown config option: %s", child->key);
587 service_statnode_add (name, host, server, script);
595 } /* }}} int pinba_config_view */
597 static int plugin_config (oconfig_item_t *ci) /* {{{ */
599 /* The lock should not be necessary in the config callback, but let's be
601 pthread_mutex_lock (&stat_nodes_lock);
603 for (int i = 0; i < ci->children_num; i++)
605 oconfig_item_t *child = ci->children + i;
607 if (strcasecmp ("Address", child->key) == 0)
608 cf_util_get_string (child, &conf_node);
609 else if (strcasecmp ("Port", child->key) == 0)
610 cf_util_get_service (child, &conf_service);
611 else if (strcasecmp ("View", child->key) == 0)
612 pinba_config_view (child);
614 WARNING ("pinba plugin: Unknown config option: %s", child->key);
617 pthread_mutex_unlock(&stat_nodes_lock);
620 } /* }}} int pinba_config */
622 static int plugin_init (void) /* {{{ */
626 if (stat_nodes == NULL)
628 /* Collect the "total" data by default. */
629 service_statnode_add ("total",
632 /* script = */ NULL);
635 if (collector_thread_running)
638 status = plugin_thread_create (&collector_thread_id,
645 ERROR ("pinba plugin: pthread_create(3) failed: %s",
646 sstrerror (errno, errbuf, sizeof (errbuf)));
649 collector_thread_running = 1;
654 static int plugin_shutdown (void) /* {{{ */
656 if (collector_thread_running)
660 DEBUG ("pinba plugin: Shutting down collector thread.");
661 collector_thread_do_shutdown = 1;
663 status = pthread_join (collector_thread_id, /* retval = */ NULL);
667 ERROR ("pinba plugin: pthread_join(3) failed: %s",
668 sstrerror (status, errbuf, sizeof (errbuf)));
671 collector_thread_running = 0;
672 collector_thread_do_shutdown = 0;
673 } /* if (collector_thread_running) */
676 } /* }}} int plugin_shutdown */
678 static int plugin_submit (const pinba_statnode_t *res) /* {{{ */
681 value_list_t vl = VALUE_LIST_INIT;
685 sstrncpy (vl.host, hostname_g, sizeof (vl.host));
686 sstrncpy (vl.plugin, "pinba", sizeof (vl.plugin));
687 sstrncpy (vl.plugin_instance, res->name, sizeof (vl.plugin_instance));
689 value.derive = res->req_count;
690 sstrncpy (vl.type, "total_requests", sizeof (vl.type));
691 plugin_dispatch_values (&vl);
693 value.derive = float_counter_get (&res->req_time, /* factor = */ 1000);
694 sstrncpy (vl.type, "total_time_in_ms", sizeof (vl.type));
695 plugin_dispatch_values (&vl);
697 value.derive = res->doc_size;
698 sstrncpy (vl.type, "total_bytes", sizeof (vl.type));
699 plugin_dispatch_values (&vl);
701 value.derive = float_counter_get (&res->ru_utime, /* factor = */ 100);
702 sstrncpy (vl.type, "cpu", sizeof (vl.type));
703 sstrncpy (vl.type_instance, "user", sizeof (vl.type_instance));
704 plugin_dispatch_values (&vl);
706 value.derive = float_counter_get (&res->ru_stime, /* factor = */ 100);
707 sstrncpy (vl.type, "cpu", sizeof (vl.type));
708 sstrncpy (vl.type_instance, "system", sizeof (vl.type_instance));
709 plugin_dispatch_values (&vl);
711 value.gauge = res->mem_peak;
712 sstrncpy (vl.type, "memory", sizeof (vl.type));
713 sstrncpy (vl.type_instance, "peak", sizeof (vl.type_instance));
714 plugin_dispatch_values (&vl);
717 } /* }}} int plugin_submit */
719 static int plugin_read (void) /* {{{ */
722 pinba_statnode_t data;
724 while ((i = service_statnode_collect (&data, i)) != 0)
726 plugin_submit (&data);
730 } /* }}} int plugin_read */
732 void module_register (void) /* {{{ */
734 plugin_register_complex_config ("pinba", plugin_config);
735 plugin_register_init ("pinba", plugin_init);
736 plugin_register_read ("pinba", plugin_read);
737 plugin_register_shutdown ("pinba", plugin_shutdown);
738 } /* }}} void module_register */
740 /* vim: set sw=2 sts=2 et fdm=marker : */