1 /**
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
6 *
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.
10 *
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.
15 *
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
19 *
20 * Authors:
21 * Antony Dovgal <tony at daylessday.org>
22 * Phoenix Kayo <kayo.k11.4 at gmail.com>
23 * Florian Forster <octo at collectd.org>
24 **/
26 #include "collectd.h"
27 #include "common.h"
28 #include "plugin.h"
29 #include "configfile.h"
31 #include <pthread.h>
32 #include <netdb.h>
33 #include <poll.h>
35 #include "pinba.pb-c.h"
37 /* AIX doesn't have MSG_DONTWAIT */
38 #ifndef MSG_DONTWAIT
39 # define MSG_DONTWAIT MSG_NONBLOCK
40 #endif
42 /*
43 * Defines
44 */
45 #ifndef PINBA_UDP_BUFFER_SIZE
46 # define PINBA_UDP_BUFFER_SIZE 65536
47 #endif
49 #ifndef PINBA_DEFAULT_NODE
50 # define PINBA_DEFAULT_NODE "::0"
51 #endif
53 #ifndef PINBA_DEFAULT_SERVICE
54 # define PINBA_DEFAULT_SERVICE "30002"
55 #endif
57 #ifndef PINBA_MAX_SOCKETS
58 # define PINBA_MAX_SOCKETS 16
59 #endif
61 /*
62 * Private data structures
63 */
64 /* {{{ */
65 struct pinba_socket_s
66 {
67 struct pollfd fd[PINBA_MAX_SOCKETS];
68 nfds_t fd_num;
69 };
70 typedef struct pinba_socket_s pinba_socket_t;
72 /* Fixed point counter value. n is the decimal part multiplied by 10^9. */
73 struct float_counter_s
74 {
75 uint64_t i;
76 uint64_t n; /* nanos */
77 };
78 typedef struct float_counter_s float_counter_t;
80 struct pinba_statnode_s
81 {
82 /* collector name, used as plugin instance */
83 char *name;
85 /* query data */
86 char *host;
87 char *server;
88 char *script;
90 derive_t req_count;
92 float_counter_t req_time;
93 float_counter_t ru_utime;
94 float_counter_t ru_stime;
96 derive_t doc_size;
97 gauge_t mem_peak;
98 };
99 typedef struct pinba_statnode_s pinba_statnode_t;
100 /* }}} */
102 /*
103 * Module global variables
104 */
105 /* {{{ */
106 static pinba_statnode_t *stat_nodes = NULL;
107 static unsigned int stat_nodes_num = 0;
108 static pthread_mutex_t stat_nodes_lock;
110 static char *conf_node = NULL;
111 static char *conf_service = NULL;
113 static _Bool collector_thread_running = 0;
114 static _Bool collector_thread_do_shutdown = 0;
115 static pthread_t collector_thread_id;
116 /* }}} */
118 /*
119 * Functions
120 */
121 static void float_counter_add (float_counter_t *fc, float val) /* {{{ */
122 {
123 uint64_t tmp;
125 if (val < 0.0)
126 return;
128 tmp = (uint64_t) val;
129 val -= (double) tmp;
131 fc->i += tmp;
132 fc->n += (uint64_t) ((val * 1000000000.0) + .5);
134 if (fc->n >= 1000000000)
135 {
136 fc->i += 1;
137 fc->n -= 1000000000;
138 assert (fc->n < 1000000000);
139 }
140 } /* }}} void float_counter_add */
142 static derive_t float_counter_get (const float_counter_t *fc, /* {{{ */
143 uint64_t factor)
144 {
145 derive_t ret;
147 ret = (derive_t) (fc->i * factor);
148 ret += (derive_t) (fc->n / (1000000000 / factor));
150 return (ret);
151 } /* }}} derive_t float_counter_get */
153 static void strset (char **str, const char *new) /* {{{ */
154 {
155 char *tmp;
157 if (!str || !new)
158 return;
160 tmp = strdup (new);
161 if (tmp == NULL)
162 return;
164 sfree (*str);
165 *str = tmp;
166 } /* }}} void strset */
168 static void service_statnode_add(const char *name, /* {{{ */
169 const char *host,
170 const char *server,
171 const char *script)
172 {
173 pinba_statnode_t *node;
175 node = realloc (stat_nodes,
176 sizeof (*stat_nodes) * (stat_nodes_num + 1));
177 if (node == NULL)
178 {
179 ERROR ("pinba plugin: realloc failed");
180 return;
181 }
182 stat_nodes = node;
184 node = stat_nodes + stat_nodes_num;
185 memset (node, 0, sizeof (*node));
187 /* reset strings */
188 node->name = NULL;
189 node->host = NULL;
190 node->server = NULL;
191 node->script = NULL;
193 node->mem_peak = NAN;
195 /* fill query data */
196 strset (&node->name, name);
197 strset (&node->host, host);
198 strset (&node->server, server);
199 strset (&node->script, script);
201 /* increment counter */
202 stat_nodes_num++;
203 } /* }}} void service_statnode_add */
205 /* Copy the data from the global "stat_nodes" list into the buffer pointed to
206 * by "res", doing the derivation in the process. Returns the next index or
207 * zero if the end of the list has been reached. */
208 static unsigned int service_statnode_collect (pinba_statnode_t *res, /* {{{ */
209 unsigned int index)
210 {
211 pinba_statnode_t *node;
213 if (stat_nodes_num == 0)
214 return 0;
216 /* begin collecting */
217 if (index == 0)
218 pthread_mutex_lock (&stat_nodes_lock);
220 /* end collecting */
221 if (index >= stat_nodes_num)
222 {
223 pthread_mutex_unlock (&stat_nodes_lock);
224 return 0;
225 }
227 node = stat_nodes + index;
228 memcpy (res, node, sizeof (*res));
230 /* reset node */
231 node->mem_peak = NAN;
233 return (index + 1);
234 } /* }}} unsigned int service_statnode_collect */
236 static void service_statnode_process (pinba_statnode_t *node, /* {{{ */
237 Pinba__Request* request)
238 {
239 node->req_count++;
241 float_counter_add (&node->req_time, request->request_time);
242 float_counter_add (&node->ru_utime, request->ru_utime);
243 float_counter_add (&node->ru_stime, request->ru_stime);
245 node->doc_size += request->document_size;
247 if (isnan (node->mem_peak)
248 || (node->mem_peak < ((gauge_t) request->memory_peak)))
249 node->mem_peak = (gauge_t) request->memory_peak;
251 } /* }}} void service_statnode_process */
253 static void service_process_request (Pinba__Request *request) /* {{{ */
254 {
255 unsigned int i;
257 pthread_mutex_lock (&stat_nodes_lock);
259 for (i = 0; i < stat_nodes_num; i++)
260 {
261 if ((stat_nodes[i].host != NULL)
262 && (strcmp (request->hostname, stat_nodes[i].host) != 0))
263 continue;
265 if ((stat_nodes[i].server != NULL)
266 && (strcmp (request->server_name, stat_nodes[i].server) != 0))
267 continue;
269 if ((stat_nodes[i].script != NULL)
270 && (strcmp (request->script_name, stat_nodes[i].script) != 0))
271 continue;
273 service_statnode_process(&stat_nodes[i], request);
274 }
276 pthread_mutex_unlock(&stat_nodes_lock);
277 } /* }}} void service_process_request */
279 static int pb_del_socket (pinba_socket_t *s, /* {{{ */
280 nfds_t index)
281 {
282 if (index >= s->fd_num)
283 return (EINVAL);
285 close (s->fd[index].fd);
286 s->fd[index].fd = -1;
288 /* When deleting the last element in the list, no memmove is necessary. */
289 if (index < (s->fd_num - 1))
290 {
291 memmove (&s->fd[index], &s->fd[index + 1],
292 sizeof (s->fd[0]) * (s->fd_num - (index + 1)));
293 }
295 s->fd_num--;
296 return (0);
297 } /* }}} int pb_del_socket */
299 static int pb_add_socket (pinba_socket_t *s, /* {{{ */
300 const struct addrinfo *ai)
301 {
302 int fd;
303 int tmp;
304 int status;
306 if (s->fd_num == PINBA_MAX_SOCKETS)
307 {
308 WARNING ("pinba plugin: Sorry, you have hit the built-in limit of "
309 "%i sockets. Please complain to the collectd developers so we can "
310 "raise the limit.", PINBA_MAX_SOCKETS);
311 return (-1);
312 }
314 fd = socket (ai->ai_family, ai->ai_socktype, ai->ai_protocol);
315 if (fd < 0)
316 {
317 char errbuf[1024];
318 ERROR ("pinba plugin: socket(2) failed: %s",
319 sstrerror (errno, errbuf, sizeof (errbuf)));
320 return (0);
321 }
323 tmp = 1;
324 status = setsockopt (fd, SOL_SOCKET, SO_REUSEADDR, &tmp, sizeof (tmp));
325 if (status != 0)
326 {
327 char errbuf[1024];
328 WARNING ("pinba plugin: setsockopt(SO_REUSEADDR) failed: %s",
329 sstrerror (errno, errbuf, sizeof (errbuf)));
330 }
332 status = bind (fd, ai->ai_addr, ai->ai_addrlen);
333 if (status != 0)
334 {
335 char errbuf[1024];
336 ERROR ("pinba plugin: bind(2) failed: %s",
337 sstrerror (errno, errbuf, sizeof (errbuf)));
338 close (fd);
339 return (0);
340 }
342 s->fd[s->fd_num].fd = fd;
343 s->fd[s->fd_num].events = POLLIN | POLLPRI;
344 s->fd[s->fd_num].revents = 0;
345 s->fd_num++;
347 return (0);
348 } /* }}} int pb_add_socket */
350 static pinba_socket_t *pinba_socket_open (const char *node, /* {{{ */
351 const char *service)
352 {
353 pinba_socket_t *s;
354 struct addrinfo *ai_list;
355 struct addrinfo *ai_ptr;
356 struct addrinfo ai_hints;
357 int status;
359 memset (&ai_hints, 0, sizeof (ai_hints));
360 ai_hints.ai_flags = AI_PASSIVE;
361 ai_hints.ai_family = AF_UNSPEC;
362 ai_hints.ai_socktype = SOCK_DGRAM;
363 ai_hints.ai_addr = NULL;
364 ai_hints.ai_canonname = NULL;
365 ai_hints.ai_next = NULL;
367 if (node == NULL)
368 node = PINBA_DEFAULT_NODE;
370 if (service == NULL)
371 service = PINBA_DEFAULT_SERVICE;
373 ai_list = NULL;
374 status = getaddrinfo (node, service,
375 &ai_hints, &ai_list);
376 if (status != 0)
377 {
378 ERROR ("pinba plugin: getaddrinfo(3) failed: %s",
379 gai_strerror (status));
380 return (NULL);
381 }
382 assert (ai_list != NULL);
384 s = calloc (1, sizeof (*s));
385 if (s == NULL)
386 {
387 freeaddrinfo (ai_list);
388 ERROR ("pinba plugin: calloc failed.");
389 return (NULL);
390 }
392 for (ai_ptr = ai_list; ai_ptr != NULL; ai_ptr = ai_ptr->ai_next)
393 {
394 status = pb_add_socket (s, ai_ptr);
395 if (status != 0)
396 break;
397 } /* for (ai_list) */
399 freeaddrinfo (ai_list);
401 if (s->fd_num < 1)
402 {
403 WARNING ("pinba plugin: Unable to open socket for address %s.", node);
404 sfree (s);
405 s = NULL;
406 }
408 return (s);
409 } /* }}} pinba_socket_open */
411 static void pinba_socket_free (pinba_socket_t *socket) /* {{{ */
412 {
413 nfds_t i;
415 if (!socket)
416 return;
418 for (i = 0; i < socket->fd_num; i++)
419 {
420 if (socket->fd[i].fd < 0)
421 continue;
422 close (socket->fd[i].fd);
423 socket->fd[i].fd = -1;
424 }
426 sfree(socket);
427 } /* }}} void pinba_socket_free */
429 static int pinba_process_stats_packet (const uint8_t *buffer, /* {{{ */
430 size_t buffer_size)
431 {
432 Pinba__Request *request;
434 request = pinba__request__unpack (NULL, buffer_size, buffer);
436 if (!request)
437 return (-1);
439 service_process_request(request);
440 pinba__request__free_unpacked (request, NULL);
442 return (0);
443 } /* }}} int pinba_process_stats_packet */
445 static int pinba_udp_read_callback_fn (int sock) /* {{{ */
446 {
447 uint8_t buffer[PINBA_UDP_BUFFER_SIZE];
448 size_t buffer_size;
449 int status;
451 while (42)
452 {
453 buffer_size = sizeof (buffer);
454 status = recvfrom (sock, buffer, buffer_size - 1, MSG_DONTWAIT, /* from = */ NULL, /* from len = */ 0);
455 if (status < 0)
456 {
457 char errbuf[1024];
459 if ((errno == EINTR)
460 #ifdef EWOULDBLOCK
461 || (errno == EWOULDBLOCK)
462 #endif
463 || (errno == EAGAIN))
464 {
465 continue;
466 }
468 WARNING("pinba plugin: recvfrom(2) failed: %s",
469 sstrerror (errno, errbuf, sizeof (errbuf)));
470 return (-1);
471 }
472 else if (status == 0)
473 {
474 DEBUG ("pinba plugin: recvfrom(2) returned unexpected status zero.");
475 return (-1);
476 }
477 else /* if (status > 0) */
478 {
479 assert (((size_t) status) < buffer_size);
480 buffer_size = (size_t) status;
481 buffer[buffer_size] = 0;
483 status = pinba_process_stats_packet (buffer, buffer_size);
484 if (status != 0)
485 DEBUG("pinba plugin: Parsing packet failed.");
486 return (status);
487 }
488 } /* while (42) */
490 /* not reached */
491 assert (23 == 42);
492 return (-1);
493 } /* }}} void pinba_udp_read_callback_fn */
495 static int receive_loop (void) /* {{{ */
496 {
497 pinba_socket_t *s;
499 s = pinba_socket_open (conf_node, conf_service);
500 if (s == NULL)
501 {
502 ERROR ("pinba plugin: Collector thread is exiting prematurely.");
503 return (-1);
504 }
506 while (!collector_thread_do_shutdown)
507 {
508 int status;
509 nfds_t i;
511 if (s->fd_num < 1)
512 break;
514 status = poll (s->fd, s->fd_num, /* timeout = */ 1000);
515 if (status == 0) /* timeout */
516 {
517 continue;
518 }
519 else if (status < 0)
520 {
521 char errbuf[1024];
523 if ((errno == EINTR) || (errno == EAGAIN))
524 continue;
526 ERROR ("pinba plugin: poll(2) failed: %s",
527 sstrerror (errno, errbuf, sizeof (errbuf)));
528 pinba_socket_free (s);
529 return (-1);
530 }
532 for (i = 0; i < s->fd_num; i++)
533 {
534 if (s->fd[i].revents & (POLLERR | POLLHUP | POLLNVAL))
535 {
536 pb_del_socket (s, i);
537 i--;
538 }
539 else if (s->fd[i].revents & (POLLIN | POLLPRI))
540 {
541 pinba_udp_read_callback_fn (s->fd[i].fd);
542 }
543 } /* for (s->fd) */
544 } /* while (!collector_thread_do_shutdown) */
546 pinba_socket_free (s);
547 s = NULL;
549 return (0);
550 } /* }}} int receive_loop */
552 static void *collector_thread (void *arg) /* {{{ */
553 {
554 receive_loop ();
556 memset (&collector_thread_id, 0, sizeof (collector_thread_id));
557 collector_thread_running = 0;
558 pthread_exit (NULL);
559 return (NULL);
560 } /* }}} void *collector_thread */
562 /*
563 * Plugin declaration section
564 */
565 static int pinba_config_view (const oconfig_item_t *ci) /* {{{ */
566 {
567 char *name = NULL;
568 char *host = NULL;
569 char *server = NULL;
570 char *script = NULL;
571 int status;
572 int i;
574 status = cf_util_get_string (ci, &name);
575 if (status != 0)
576 return (status);
578 for (i = 0; i < ci->children_num; i++)
579 {
580 oconfig_item_t *child = ci->children + i;
582 if (strcasecmp ("Host", child->key) == 0)
583 status = cf_util_get_string (child, &host);
584 else if (strcasecmp ("Server", child->key) == 0)
585 status = cf_util_get_string (child, &server);
586 else if (strcasecmp ("Script", child->key) == 0)
587 status = cf_util_get_string (child, &script);
588 else
589 {
590 WARNING ("pinba plugin: Unknown config option: %s", child->key);
591 status = -1;
592 }
594 if (status != 0)
595 break;
596 }
598 if (status == 0)
599 service_statnode_add (name, host, server, script);
601 sfree (name);
602 sfree (host);
603 sfree (server);
604 sfree (script);
606 return (status);
607 } /* }}} int pinba_config_view */
609 static int plugin_config (oconfig_item_t *ci) /* {{{ */
610 {
611 int i;
613 /* The lock should not be necessary in the config callback, but let's be
614 * sure.. */
615 pthread_mutex_lock (&stat_nodes_lock);
617 for (i = 0; i < ci->children_num; i++)
618 {
619 oconfig_item_t *child = ci->children + i;
621 if (strcasecmp ("Address", child->key) == 0)
622 cf_util_get_string (child, &conf_node);
623 else if (strcasecmp ("Port", child->key) == 0)
624 cf_util_get_service (child, &conf_service);
625 else if (strcasecmp ("View", child->key) == 0)
626 pinba_config_view (child);
627 else
628 WARNING ("pinba plugin: Unknown config option: %s", child->key);
629 }
631 pthread_mutex_unlock(&stat_nodes_lock);
633 return (0);
634 } /* }}} int pinba_config */
636 static int plugin_init (void) /* {{{ */
637 {
638 int status;
640 if (stat_nodes == NULL)
641 {
642 /* Collect the "total" data by default. */
643 service_statnode_add ("total",
644 /* host = */ NULL,
645 /* server = */ NULL,
646 /* script = */ NULL);
647 }
649 if (collector_thread_running)
650 return (0);
652 status = plugin_thread_create (&collector_thread_id,
653 /* attrs = */ NULL,
654 collector_thread,
655 /* args = */ NULL);
656 if (status != 0)
657 {
658 char errbuf[1024];
659 ERROR ("pinba plugin: pthread_create(3) failed: %s",
660 sstrerror (errno, errbuf, sizeof (errbuf)));
661 return (-1);
662 }
663 collector_thread_running = 1;
665 return (0);
666 } /* }}} */
668 static int plugin_shutdown (void) /* {{{ */
669 {
670 if (collector_thread_running)
671 {
672 int status;
674 DEBUG ("pinba plugin: Shutting down collector thread.");
675 collector_thread_do_shutdown = 1;
677 status = pthread_join (collector_thread_id, /* retval = */ NULL);
678 if (status != 0)
679 {
680 char errbuf[1024];
681 ERROR ("pinba plugin: pthread_join(3) failed: %s",
682 sstrerror (status, errbuf, sizeof (errbuf)));
683 }
685 collector_thread_running = 0;
686 collector_thread_do_shutdown = 0;
687 } /* if (collector_thread_running) */
689 return (0);
690 } /* }}} int plugin_shutdown */
692 static int plugin_submit (const pinba_statnode_t *res) /* {{{ */
693 {
694 value_t value;
695 value_list_t vl = VALUE_LIST_INIT;
697 vl.values = &value;
698 vl.values_len = 1;
699 sstrncpy (vl.host, hostname_g, sizeof (vl.host));
700 sstrncpy (vl.plugin, "pinba", sizeof (vl.plugin));
701 sstrncpy (vl.plugin_instance, res->name, sizeof (vl.plugin_instance));
703 value.derive = res->req_count;
704 sstrncpy (vl.type, "total_requests", sizeof (vl.type));
705 plugin_dispatch_values (&vl);
707 value.derive = float_counter_get (&res->req_time, /* factor = */ 1000);
708 sstrncpy (vl.type, "total_time_in_ms", sizeof (vl.type));
709 plugin_dispatch_values (&vl);
711 value.derive = res->doc_size;
712 sstrncpy (vl.type, "total_bytes", sizeof (vl.type));
713 plugin_dispatch_values (&vl);
715 value.derive = float_counter_get (&res->ru_utime, /* factor = */ 100);
716 sstrncpy (vl.type, "cpu", sizeof (vl.type));
717 sstrncpy (vl.type_instance, "user", sizeof (vl.type_instance));
718 plugin_dispatch_values (&vl);
720 value.derive = float_counter_get (&res->ru_stime, /* factor = */ 100);
721 sstrncpy (vl.type, "cpu", sizeof (vl.type));
722 sstrncpy (vl.type_instance, "system", sizeof (vl.type_instance));
723 plugin_dispatch_values (&vl);
725 value.gauge = res->mem_peak;
726 sstrncpy (vl.type, "memory", sizeof (vl.type));
727 sstrncpy (vl.type_instance, "peak", sizeof (vl.type_instance));
728 plugin_dispatch_values (&vl);
730 return (0);
731 } /* }}} int plugin_submit */
733 static int plugin_read (void) /* {{{ */
734 {
735 unsigned int i=0;
736 pinba_statnode_t data;
738 while ((i = service_statnode_collect (&data, i)) != 0)
739 {
740 plugin_submit (&data);
741 }
743 return 0;
744 } /* }}} int plugin_read */
746 void module_register (void) /* {{{ */
747 {
748 plugin_register_complex_config ("pinba", plugin_config);
749 plugin_register_init ("pinba", plugin_init);
750 plugin_register_read ("pinba", plugin_read);
751 plugin_register_shutdown ("pinba", plugin_shutdown);
752 } /* }}} void module_register */
754 /* vim: set sw=2 sts=2 et fdm=marker : */