2006-10-08 18:05:47 +02:00
|
|
|
/***************************************************************************
|
|
|
|
* Copyright (C) 10/2006 by Olaf Rempel *
|
|
|
|
* razzor@kopf-tisch.de *
|
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU General Public License as published by *
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
|
|
* (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
* GNU General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
* along with this program; if not, write to the *
|
|
|
|
* Free Software Foundation, Inc., *
|
|
|
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
|
|
|
***************************************************************************/
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2007-03-31 22:15:00 +02:00
|
|
|
#include <stdint.h>
|
2006-10-08 18:05:47 +02:00
|
|
|
|
|
|
|
#include <curl/curl.h>
|
|
|
|
|
|
|
|
#include "configfile.h"
|
|
|
|
#include "helper.h"
|
|
|
|
#include "list.h"
|
2007-04-01 15:45:31 +02:00
|
|
|
#include "logging.h"
|
2006-10-08 18:05:47 +02:00
|
|
|
#include "plugins.h"
|
2007-04-01 14:30:05 +02:00
|
|
|
#include "probe.h"
|
2006-10-08 18:05:47 +02:00
|
|
|
|
|
|
|
#define BUFSIZE 8192
|
|
|
|
|
2007-03-31 23:21:31 +02:00
|
|
|
struct sammler_plugin plugin;
|
|
|
|
|
2006-10-08 18:05:47 +02:00
|
|
|
struct server_entry {
|
|
|
|
struct list_head list;
|
|
|
|
CURL *handle;
|
|
|
|
char *name;
|
|
|
|
};
|
|
|
|
|
|
|
|
static LIST_HEAD(server_list);
|
|
|
|
|
2007-03-31 22:31:07 +02:00
|
|
|
static const char *ds_def = {
|
2006-10-08 18:05:47 +02:00
|
|
|
"DS:total_accesses:COUNTER:90:0:U "
|
|
|
|
"DS:total_kbytes:COUNTER:90:0:U "
|
|
|
|
"DS:busy_workers:GAUGE:90:0:U "
|
|
|
|
"DS:idle_workers:GAUGE:90:0:U "
|
|
|
|
};
|
|
|
|
|
|
|
|
struct stats {
|
2006-10-09 14:40:38 +02:00
|
|
|
uint64_t total_accesses;
|
|
|
|
uint64_t total_kbytes;
|
|
|
|
uint64_t busy_workers;
|
|
|
|
uint64_t idle_workers;
|
2006-10-08 18:05:47 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
static char *rx_buf;
|
|
|
|
static int rx_pos;
|
|
|
|
|
2007-03-31 22:31:07 +02:00
|
|
|
static const char * get_ds(int ds_id)
|
2006-10-08 18:05:47 +02:00
|
|
|
{
|
|
|
|
return ds_def;
|
|
|
|
}
|
|
|
|
|
|
|
|
static size_t curl_callback(void *buffer, size_t size, size_t nmemb, void *userp)
|
|
|
|
{
|
|
|
|
size_t realsize = size * nmemb;
|
|
|
|
|
|
|
|
// discard data
|
|
|
|
if (rx_pos + realsize >= BUFSIZE)
|
|
|
|
return realsize;
|
|
|
|
|
|
|
|
memcpy(rx_buf + rx_pos, buffer, realsize);
|
|
|
|
|
|
|
|
rx_pos += realsize;
|
|
|
|
return realsize;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int probe(void)
|
|
|
|
{
|
|
|
|
struct server_entry *entry;
|
|
|
|
list_for_each_entry(entry, &server_list, list) {
|
|
|
|
rx_pos = 0;
|
|
|
|
curl_easy_perform(entry->handle);
|
|
|
|
|
|
|
|
struct stats stats;
|
|
|
|
memset(&stats, 0, sizeof(stats));
|
|
|
|
|
|
|
|
char *line, *tmp = rx_buf, *tmp2;
|
|
|
|
while ((line = strtok_r(tmp, "\r\n", &tmp2))) {
|
|
|
|
char *part[2];
|
|
|
|
strsplit(line, ":", part, 2);
|
|
|
|
|
|
|
|
if (!strcmp(part[0], "Total Accesses"))
|
|
|
|
stats.total_accesses = atoll(part[1]);
|
|
|
|
|
|
|
|
else if (!strcmp(part[0], "Total kBytes"))
|
|
|
|
stats.total_kbytes = atoll(part[1]);
|
|
|
|
|
2006-10-09 14:40:38 +02:00
|
|
|
else if (!strcmp(part[0], "BusyWorkers") || !strcmp(part[0], "BusyServers"))
|
2006-10-08 18:05:47 +02:00
|
|
|
stats.busy_workers = atoll(part[1]);
|
|
|
|
|
2006-10-09 14:40:38 +02:00
|
|
|
else if (!strcmp(part[0], "IdleWorkers") || !strcmp(part[0], "IdleServers"))
|
2006-10-08 18:05:47 +02:00
|
|
|
stats.idle_workers = atoll(part[1]);
|
|
|
|
|
|
|
|
tmp = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
char filename[32];
|
|
|
|
int len = snprintf(filename, sizeof(filename), "apache-%s.rrd", entry->name);
|
|
|
|
if (len < 0 || len >= sizeof(filename))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
probe_submit(&plugin, filename, 0, "%llu:%llu:%llu:%llu",
|
|
|
|
stats.total_accesses, stats.total_kbytes,
|
|
|
|
stats.busy_workers, stats.idle_workers);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-03-31 22:15:00 +02:00
|
|
|
static int init_cb(const char *parameter, void *privdata)
|
2006-10-08 18:05:47 +02:00
|
|
|
{
|
2007-03-31 22:15:00 +02:00
|
|
|
char *part[4];
|
|
|
|
int ret = strsplit(parameter, ",", part, 4);
|
|
|
|
if (ret < 2) {
|
|
|
|
log_print(LOG_ERROR, "p_apache: parse error (1)");
|
2006-10-08 18:05:47 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2007-03-31 22:15:00 +02:00
|
|
|
struct server_entry *entry = malloc(sizeof(struct server_entry));
|
|
|
|
if (entry == NULL) {
|
|
|
|
log_print(LOG_ERROR, "p_apache: out of memory");
|
2006-10-08 18:05:47 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2007-03-31 22:15:00 +02:00
|
|
|
// reference config mem
|
|
|
|
entry->name = part[0];
|
2006-10-08 18:05:47 +02:00
|
|
|
|
2007-03-31 22:15:00 +02:00
|
|
|
entry->handle = curl_easy_init();
|
|
|
|
if (entry->handle == NULL) {
|
|
|
|
free(entry);
|
|
|
|
return -1;
|
|
|
|
}
|
2006-10-08 18:05:47 +02:00
|
|
|
|
2007-03-31 22:15:00 +02:00
|
|
|
ret = curl_easy_setopt(entry->handle, CURLOPT_URL, part[1]);
|
|
|
|
if (ret != 0) {
|
|
|
|
log_print(LOG_ERROR, "p_apache: %s", curl_easy_strerror(ret));
|
|
|
|
curl_easy_cleanup(entry->handle);
|
|
|
|
free(entry);
|
|
|
|
return -1;
|
|
|
|
}
|
2006-10-08 18:05:47 +02:00
|
|
|
|
2007-03-31 22:15:00 +02:00
|
|
|
if (part[2] != NULL && part[3] != NULL) {
|
|
|
|
*(part[3] -1) = ':';
|
2006-10-08 18:05:47 +02:00
|
|
|
|
2007-03-31 22:15:00 +02:00
|
|
|
log_print(LOG_INFO, "p_apache: auth: '%s'", part[2]);
|
2006-10-08 18:05:47 +02:00
|
|
|
|
2007-03-31 22:15:00 +02:00
|
|
|
ret = curl_easy_setopt(entry->handle, CURLOPT_USERPWD, part[2]);
|
2006-10-08 18:05:47 +02:00
|
|
|
if (ret != 0) {
|
|
|
|
log_print(LOG_ERROR, "p_apache: %s", curl_easy_strerror(ret));
|
|
|
|
curl_easy_cleanup(entry->handle);
|
|
|
|
free(entry);
|
2007-03-31 22:15:00 +02:00
|
|
|
return -1;
|
2006-10-08 18:05:47 +02:00
|
|
|
}
|
2007-03-31 22:15:00 +02:00
|
|
|
}
|
2006-10-08 18:05:47 +02:00
|
|
|
|
2007-03-31 22:15:00 +02:00
|
|
|
ret = curl_easy_setopt(entry->handle, CURLOPT_WRITEFUNCTION, &curl_callback);
|
|
|
|
if (ret != 0) {
|
|
|
|
log_print(LOG_ERROR, "p_apache: %s", curl_easy_strerror(ret));
|
|
|
|
curl_easy_cleanup(entry->handle);
|
|
|
|
free(entry);
|
|
|
|
return -1;
|
|
|
|
}
|
2006-10-08 18:05:47 +02:00
|
|
|
|
2007-03-31 22:15:00 +02:00
|
|
|
ret = curl_easy_setopt(entry->handle, CURLOPT_WRITEDATA, entry);
|
|
|
|
if (ret != 0) {
|
|
|
|
log_print(LOG_ERROR, "p_apache: %s", curl_easy_strerror(ret));
|
|
|
|
curl_easy_cleanup(entry->handle);
|
|
|
|
free(entry);
|
|
|
|
return -1;
|
|
|
|
}
|
2006-10-08 18:05:47 +02:00
|
|
|
|
2007-03-31 22:15:00 +02:00
|
|
|
log_print(LOG_INFO, "p_apache: added server '%s'", entry->name);
|
|
|
|
list_add_tail(&entry->list, &server_list);
|
|
|
|
return 0;
|
|
|
|
}
|
2006-10-08 18:05:47 +02:00
|
|
|
|
|
|
|
|
2007-03-31 22:15:00 +02:00
|
|
|
static int init(void)
|
|
|
|
{
|
|
|
|
rx_buf = malloc(BUFSIZE);
|
|
|
|
if (rx_buf == NULL) {
|
|
|
|
log_print(LOG_ERROR, "p_apache: out of memory");
|
|
|
|
return -1;
|
2006-10-08 18:05:47 +02:00
|
|
|
}
|
2007-03-31 22:15:00 +02:00
|
|
|
|
|
|
|
config_get_strings("p_apache", "server", init_cb, NULL);
|
2007-03-31 21:32:24 +02:00
|
|
|
return 0;
|
2006-10-08 18:05:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static int fini(void)
|
|
|
|
{
|
|
|
|
struct server_entry *entry, *tmp;
|
|
|
|
list_for_each_entry_safe(entry, tmp, &server_list, list) {
|
|
|
|
curl_easy_cleanup(entry->handle);
|
|
|
|
free(entry);
|
|
|
|
}
|
|
|
|
|
|
|
|
free(rx_buf);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct sammler_plugin plugin = {
|
|
|
|
.name = "apache",
|
2006-10-09 14:40:38 +02:00
|
|
|
.interval = 60,
|
2006-10-08 18:05:47 +02:00
|
|
|
.init = &init,
|
|
|
|
.fini = &fini,
|
|
|
|
.probe = &probe,
|
|
|
|
.get_ds = &get_ds,
|
|
|
|
};
|