2 * collectd - src/apache.c
3 * Copyright (C) 2006-2010 Florian octo Forster
4 * Copyright (C) 2007 Florent EppO Monbillard
5 * Copyright (C) 2009 Amit Gupta
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 * Florian octo Forster <octo at collectd.org>
22 * Florent EppO Monbillard <eppo at darox.net>
23 * - connections/lighttpd extension
24 * Amit Gupta <amit.gupta221 at gmail.com>
32 #include <curl/curl.h>
34 enum server_enum { APACHE = 0, LIGHTTPD };
47 char *server; /* user specific server type */
49 char apache_curl_error[CURL_ERROR_SIZE];
50 size_t apache_buffer_size;
51 size_t apache_buffer_fill;
56 typedef struct apache_s apache_t;
58 /* TODO: Remove this prototype */
59 static int apache_read_host(user_data_t *user_data);
61 static void apache_free(void *arg) {
73 sfree(st->ssl_ciphers);
75 sfree(st->apache_buffer);
77 curl_easy_cleanup(st->curl);
83 static size_t apache_curl_callback(void *buf, size_t size, size_t nmemb,
85 size_t len = size * nmemb;
90 ERROR("apache plugin: apache_curl_callback: "
91 "user_data pointer is NULL.");
98 if ((st->apache_buffer_fill + len) >= st->apache_buffer_size) {
101 temp = realloc(st->apache_buffer, st->apache_buffer_fill + len + 1);
103 ERROR("apache plugin: realloc failed.");
106 st->apache_buffer = temp;
107 st->apache_buffer_size = st->apache_buffer_fill + len + 1;
110 memcpy(st->apache_buffer + st->apache_buffer_fill, (char *)buf, len);
111 st->apache_buffer_fill += len;
112 st->apache_buffer[st->apache_buffer_fill] = 0;
115 } /* int apache_curl_callback */
117 static size_t apache_header_callback(void *buf, size_t size, size_t nmemb,
119 size_t len = size * nmemb;
124 ERROR("apache plugin: apache_header_callback: "
125 "user_data pointer is NULL.");
132 /* look for the Server header */
133 if (strncasecmp(buf, "Server: ", strlen("Server: ")) != 0)
136 if (strstr(buf, "Apache") != NULL)
137 st->server_type = APACHE;
138 else if (strstr(buf, "lighttpd") != NULL)
139 st->server_type = LIGHTTPD;
140 else if (strstr(buf, "IBM_HTTP_Server") != NULL)
141 st->server_type = APACHE;
143 const char *hdr = buf;
145 hdr += strlen("Server: ");
146 NOTICE("apache plugin: Unknown server software: %s", hdr);
150 } /* apache_header_callback */
152 /* Configuration handling functiions
154 * <Instance "instance_name">
160 static int config_add(oconfig_item_t *ci) {
164 st = calloc(1, sizeof(*st));
166 ERROR("apache plugin: calloc failed.");
172 status = cf_util_get_string(ci, &st->name);
177 assert(st->name != NULL);
179 for (int i = 0; i < ci->children_num; i++) {
180 oconfig_item_t *child = ci->children + i;
182 if (strcasecmp("URL", child->key) == 0)
183 status = cf_util_get_string(child, &st->url);
184 else if (strcasecmp("Host", child->key) == 0)
185 status = cf_util_get_string(child, &st->host);
186 else if (strcasecmp("User", child->key) == 0)
187 status = cf_util_get_string(child, &st->user);
188 else if (strcasecmp("Password", child->key) == 0)
189 status = cf_util_get_string(child, &st->pass);
190 else if (strcasecmp("VerifyPeer", child->key) == 0)
191 status = cf_util_get_boolean(child, &st->verify_peer);
192 else if (strcasecmp("VerifyHost", child->key) == 0)
193 status = cf_util_get_boolean(child, &st->verify_host);
194 else if (strcasecmp("CACert", child->key) == 0)
195 status = cf_util_get_string(child, &st->cacert);
196 else if (strcasecmp("SSLCiphers", child->key) == 0)
197 status = cf_util_get_string(child, &st->ssl_ciphers);
198 else if (strcasecmp("Server", child->key) == 0)
199 status = cf_util_get_string(child, &st->server);
200 else if (strcasecmp("Timeout", child->key) == 0)
201 status = cf_util_get_int(child, &st->timeout);
203 WARNING("apache plugin: Option `%s' not allowed here.", child->key);
211 /* Check if struct is complete.. */
212 if ((status == 0) && (st->url == NULL)) {
213 ERROR("apache plugin: Instance `%s': "
214 "No URL has been configured.",
224 char callback_name[3 * DATA_MAX_NAME_LEN];
226 snprintf(callback_name, sizeof(callback_name), "apache/%s/%s",
227 (st->host != NULL) ? st->host : hostname_g,
228 (st->name != NULL) ? st->name : "default");
230 return plugin_register_complex_read(
232 /* name = */ callback_name,
233 /* callback = */ apache_read_host,
236 .data = st, .free_func = apache_free,
238 } /* int config_add */
240 static int config(oconfig_item_t *ci) {
243 for (int i = 0; i < ci->children_num; i++) {
244 oconfig_item_t *child = ci->children + i;
246 if (strcasecmp("Instance", child->key) == 0)
249 WARNING("apache plugin: The configuration option "
250 "\"%s\" is not allowed here. Did you "
251 "forget to add an <Instance /> block "
252 "around the configuration?",
254 } /* for (ci->children) */
259 /* initialize curl for each host */
260 static int init_host(apache_t *st) /* {{{ */
262 assert(st->url != NULL);
263 /* (Assured by `config_add') */
265 if (st->curl != NULL) {
266 curl_easy_cleanup(st->curl);
270 if ((st->curl = curl_easy_init()) == NULL) {
271 ERROR("apache plugin: init_host: `curl_easy_init' failed.");
275 curl_easy_setopt(st->curl, CURLOPT_NOSIGNAL, 1L);
276 curl_easy_setopt(st->curl, CURLOPT_WRITEFUNCTION, apache_curl_callback);
277 curl_easy_setopt(st->curl, CURLOPT_WRITEDATA, st);
279 /* not set as yet if the user specified string doesn't match apache or
280 * lighttpd, then ignore it. Headers will be parsed to find out the
282 st->server_type = -1;
284 if (st->server != NULL) {
285 if (strcasecmp(st->server, "apache") == 0)
286 st->server_type = APACHE;
287 else if (strcasecmp(st->server, "lighttpd") == 0)
288 st->server_type = LIGHTTPD;
289 else if (strcasecmp(st->server, "ibm_http_server") == 0)
290 st->server_type = APACHE;
292 WARNING("apache plugin: Unknown `Server' setting: %s", st->server);
295 /* if not found register a header callback to determine the server_type */
296 if (st->server_type == -1) {
297 curl_easy_setopt(st->curl, CURLOPT_HEADERFUNCTION, apache_header_callback);
298 curl_easy_setopt(st->curl, CURLOPT_WRITEHEADER, st);
301 curl_easy_setopt(st->curl, CURLOPT_USERAGENT, COLLECTD_USERAGENT);
302 curl_easy_setopt(st->curl, CURLOPT_ERRORBUFFER, st->apache_curl_error);
304 if (st->user != NULL) {
305 #ifdef HAVE_CURLOPT_USERNAME
306 curl_easy_setopt(st->curl, CURLOPT_USERNAME, st->user);
307 curl_easy_setopt(st->curl, CURLOPT_PASSWORD,
308 (st->pass == NULL) ? "" : st->pass);
310 static char credentials[1024];
313 status = snprintf(credentials, sizeof(credentials), "%s:%s", st->user,
314 (st->pass == NULL) ? "" : st->pass);
315 if ((status < 0) || ((size_t)status >= sizeof(credentials))) {
316 ERROR("apache plugin: init_host: Returning an error "
317 "because the credentials have been "
319 curl_easy_cleanup(st->curl);
324 curl_easy_setopt(st->curl, CURLOPT_USERPWD, credentials);
328 curl_easy_setopt(st->curl, CURLOPT_FOLLOWLOCATION, 1L);
329 curl_easy_setopt(st->curl, CURLOPT_MAXREDIRS, 50L);
331 curl_easy_setopt(st->curl, CURLOPT_SSL_VERIFYPEER, (long)st->verify_peer);
332 curl_easy_setopt(st->curl, CURLOPT_SSL_VERIFYHOST, st->verify_host ? 2L : 0L);
333 if (st->cacert != NULL)
334 curl_easy_setopt(st->curl, CURLOPT_CAINFO, st->cacert);
335 if (st->ssl_ciphers != NULL)
336 curl_easy_setopt(st->curl, CURLOPT_SSL_CIPHER_LIST, st->ssl_ciphers);
338 #ifdef HAVE_CURLOPT_TIMEOUT_MS
339 if (st->timeout >= 0)
340 curl_easy_setopt(st->curl, CURLOPT_TIMEOUT_MS, (long)st->timeout);
342 curl_easy_setopt(st->curl, CURLOPT_TIMEOUT_MS,
343 (long)CDTIME_T_TO_MS(plugin_get_interval()));
347 } /* }}} int init_host */
349 static void submit_value(const char *type, const char *type_instance,
350 value_t value, apache_t *st) {
351 value_list_t vl = VALUE_LIST_INIT;
356 if (st->host != NULL)
357 sstrncpy(vl.host, st->host, sizeof(vl.host));
359 sstrncpy(vl.plugin, "apache", sizeof(vl.plugin));
360 if (st->name != NULL)
361 sstrncpy(vl.plugin_instance, st->name, sizeof(vl.plugin_instance));
363 sstrncpy(vl.type, type, sizeof(vl.type));
364 if (type_instance != NULL)
365 sstrncpy(vl.type_instance, type_instance, sizeof(vl.type_instance));
367 plugin_dispatch_values(&vl);
368 } /* void submit_value */
370 static void submit_derive(const char *type, const char *type_instance,
371 derive_t d, apache_t *st) {
372 submit_value(type, type_instance, (value_t){.derive = d}, st);
373 } /* void submit_derive */
375 static void submit_gauge(const char *type, const char *type_instance, gauge_t g,
377 submit_value(type, type_instance, (value_t){.gauge = g}, st);
378 } /* void submit_gauge */
380 static void submit_scoreboard(char *buf, apache_t *st) {
383 * "_" Waiting for Connection, "S" Starting up,
384 * "R" Reading Request for apache and read-POST for lighttpd,
385 * "W" Sending Reply, "K" Keepalive (read), "D" DNS Lookup,
386 * "C" Closing connection, "L" Logging, "G" Gracefully finishing,
387 * "I" Idle cleanup of worker, "." Open slot with no current process
388 * Lighttpd specific legends -
389 * "E" hard error, "." connect, "h" handle-request,
390 * "q" request-start, "Q" request-end, "s" response-start
391 * "S" response-end, "r" read
393 long long open = 0LL;
394 long long waiting = 0LL;
395 long long starting = 0LL;
396 long long reading = 0LL;
397 long long sending = 0LL;
398 long long keepalive = 0LL;
399 long long dnslookup = 0LL;
400 long long closing = 0LL;
401 long long logging = 0LL;
402 long long finishing = 0LL;
403 long long idle_cleanup = 0LL;
405 /* lighttpd specific */
406 long long hard_error = 0LL;
407 long long lighttpd_read = 0LL;
408 long long handle_request = 0LL;
409 long long request_start = 0LL;
410 long long request_end = 0LL;
411 long long response_start = 0LL;
412 long long response_end = 0LL;
414 for (int i = 0; buf[i] != '\0'; i++) {
417 else if (buf[i] == '_')
419 else if (buf[i] == 'S')
421 else if (buf[i] == 'R')
423 else if (buf[i] == 'W')
425 else if (buf[i] == 'K')
427 else if (buf[i] == 'D')
429 else if (buf[i] == 'C')
431 else if (buf[i] == 'L')
433 else if (buf[i] == 'G')
435 else if (buf[i] == 'I')
437 else if (buf[i] == 'r')
439 else if (buf[i] == 'h')
441 else if (buf[i] == 'E')
443 else if (buf[i] == 'q')
445 else if (buf[i] == 'Q')
447 else if (buf[i] == 's')
449 else if (buf[i] == 'S')
453 if (st->server_type == APACHE) {
454 submit_gauge("apache_scoreboard", "open", open, st);
455 submit_gauge("apache_scoreboard", "waiting", waiting, st);
456 submit_gauge("apache_scoreboard", "starting", starting, st);
457 submit_gauge("apache_scoreboard", "reading", reading, st);
458 submit_gauge("apache_scoreboard", "sending", sending, st);
459 submit_gauge("apache_scoreboard", "keepalive", keepalive, st);
460 submit_gauge("apache_scoreboard", "dnslookup", dnslookup, st);
461 submit_gauge("apache_scoreboard", "closing", closing, st);
462 submit_gauge("apache_scoreboard", "logging", logging, st);
463 submit_gauge("apache_scoreboard", "finishing", finishing, st);
464 submit_gauge("apache_scoreboard", "idle_cleanup", idle_cleanup, st);
466 submit_gauge("apache_scoreboard", "connect", open, st);
467 submit_gauge("apache_scoreboard", "close", closing, st);
468 submit_gauge("apache_scoreboard", "hard_error", hard_error, st);
469 submit_gauge("apache_scoreboard", "read", lighttpd_read, st);
470 submit_gauge("apache_scoreboard", "read_post", reading, st);
471 submit_gauge("apache_scoreboard", "write", sending, st);
472 submit_gauge("apache_scoreboard", "handle_request", handle_request, st);
473 submit_gauge("apache_scoreboard", "request_start", request_start, st);
474 submit_gauge("apache_scoreboard", "request_end", request_end, st);
475 submit_gauge("apache_scoreboard", "response_start", response_start, st);
476 submit_gauge("apache_scoreboard", "response_end", response_end, st);
480 static int apache_read_host(user_data_t *user_data) /* {{{ */
491 st = user_data->data;
496 static const char *text_plain = "text/plain";
498 assert(st->url != NULL);
499 /* (Assured by `config_add') */
501 if (st->curl == NULL) {
502 status = init_host(st);
506 assert(st->curl != NULL);
508 st->apache_buffer_fill = 0;
510 curl_easy_setopt(st->curl, CURLOPT_URL, st->url);
512 if (curl_easy_perform(st->curl) != CURLE_OK) {
513 ERROR("apache: curl_easy_perform failed: %s", st->apache_curl_error);
517 /* fallback - server_type to apache if not set at this time */
518 if (st->server_type == -1) {
519 WARNING("apache plugin: Unable to determine server software "
520 "automatically. Will assume Apache.");
521 st->server_type = APACHE;
524 status = curl_easy_getinfo(st->curl, CURLINFO_CONTENT_TYPE, &content_type);
525 if ((status == CURLE_OK) && (content_type != NULL) &&
526 (strncasecmp(content_type, text_plain, strlen(text_plain)) != 0)) {
527 WARNING("apache plugin: `Content-Type' response header is not `%s' "
528 "(received: `%s'). Expecting unparseable data. Please check `URL' "
529 "parameter (missing `?auto' suffix ?)",
530 text_plain, content_type);
533 ptr = st->apache_buffer;
535 while ((line = strtok_r(ptr, "\n\r", &saveptr)) != NULL) {
537 fields_num = strsplit(line, fields, STATIC_ARRAY_SIZE(fields));
539 if (fields_num == 3) {
540 if ((strcmp(fields[0], "Total") == 0) &&
541 (strcmp(fields[1], "Accesses:") == 0))
542 submit_derive("apache_requests", "", atoll(fields[2]), st);
543 else if ((strcmp(fields[0], "Total") == 0) &&
544 (strcmp(fields[1], "kBytes:") == 0))
545 submit_derive("apache_bytes", "", 1024LL * atoll(fields[2]), st);
546 } else if (fields_num == 2) {
547 if (strcmp(fields[0], "Scoreboard:") == 0)
548 submit_scoreboard(fields[1], st);
549 else if ((strcmp(fields[0], "BusyServers:") == 0) /* Apache 1.* */
550 || (strcmp(fields[0], "BusyWorkers:") == 0) /* Apache 2.* */)
551 submit_gauge("apache_connections", NULL, atol(fields[1]), st);
552 else if ((strcmp(fields[0], "IdleServers:") == 0) /* Apache 1.x */
553 || (strcmp(fields[0], "IdleWorkers:") == 0) /* Apache 2.x */)
554 submit_gauge("apache_idle_workers", NULL, atol(fields[1]), st);
558 st->apache_buffer_fill = 0;
561 } /* }}} int apache_read_host */
563 static int apache_init(void) /* {{{ */
565 /* Call this while collectd is still single-threaded to avoid
566 * initialization issues in libgcrypt. */
567 curl_global_init(CURL_GLOBAL_SSL);
569 } /* }}} int apache_init */
571 void module_register(void) {
572 plugin_register_complex_config("apache", config);
573 plugin_register_init("apache", apache_init);
574 } /* void module_register */