sammler/plugins/rtstat.c

141 lines
3.8 KiB
C
Raw Permalink Normal View History

2006-06-13 21:34:36 +02:00
/***************************************************************************
* Copyright (C) 06/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>
2006-10-08 16:33:07 +02:00
#include "helper.h"
2007-04-01 15:45:31 +02:00
#include "logging.h"
2006-06-13 21:34:36 +02:00
#include "plugins.h"
2007-04-01 14:30:05 +02:00
#include "probe.h"
2006-06-13 21:34:36 +02:00
2006-08-03 19:20:36 +02:00
#define DS_STAT 1
#define DS_GC 2
2007-04-01 15:23:09 +02:00
#define BUFSIZE 1024
2006-06-13 21:34:36 +02:00
struct sammler_plugin plugin;
2007-04-01 15:23:09 +02:00
static char *buffer;
2006-06-13 21:34:36 +02:00
2007-03-31 22:31:07 +02:00
static const char *ds_def_stat = {
"DS:in_hit:DERIVE:15:0:U "
"DS:in_slow_tot:DERIVE:15:0:U "
"DS:in_slow_mc:DERIVE:15:0:U "
"DS:in_no_route:DERIVE:15:0:U "
"DS:in_brd:DERIVE:15:0:U "
"DS:in_martian_dst:DERIVE:15:0:U "
"DS:in_martian_src:DERIVE:15:0:U "
"DS:out_hit:DERIVE:15:0:U "
"DS:out_slow_tot:DERIVE:15:0:U "
"DS:out_slow_mc:DERIVE:15:0:U "
"DS:in_hlist_search:DERIVE:15:0:U "
"DS:out_hlist_search:DERIVE:15:0:U "
2006-08-03 19:20:36 +02:00
};
2007-03-31 22:31:07 +02:00
static const char *ds_def_gc = {
"DS:entries:GAUGE:15:0:U "
"DS:gc_total:DERIVE:15:0:U "
"DS:gc_ignored:DERIVE:15:0:U "
"DS:gc_goal_miss:DERIVE:15:0:U "
"DS:gc_dst_overflow:DERIVE:15:0:U "
2006-06-13 21:34:36 +02:00
};
2007-03-31 22:31:07 +02:00
static const char * get_ds(int ds_id)
2006-06-13 21:34:36 +02:00
{
2006-08-03 19:20:36 +02:00
switch (ds_id) {
case DS_STAT:
return ds_def_stat;
case DS_GC:
return ds_def_gc;
default:
return NULL;
}
2006-06-13 21:34:36 +02:00
}
2006-10-07 20:37:30 +02:00
static int probe(void)
2006-06-13 21:34:36 +02:00
{
FILE *fp;
2006-10-07 20:37:30 +02:00
char *val[17], filename[16];
2006-06-13 21:34:36 +02:00
unsigned long long arr[17];
2006-06-22 20:33:30 +02:00
int i, len, cpu = 0;
2006-06-13 21:34:36 +02:00
fp = fopen("/proc/net/stat/rt_cache", "r");
if (fp == NULL) {
log_print(LOG_WARN, "plugin rtstat");
2006-10-07 20:37:30 +02:00
return -1;
2006-06-13 21:34:36 +02:00
}
2007-04-01 15:23:09 +02:00
while (fgets(buffer, BUFSIZE, fp) != NULL) {
if (!strncmp(buffer, "entries", 7))
2006-06-13 21:34:36 +02:00
continue;
2007-04-01 15:23:09 +02:00
if (strsplit(buffer, " \t\n", val, 17) != 17)
2006-06-13 21:34:36 +02:00
continue;
for (i = 0; i < 17; i++)
arr[i] = strtoll(val[i], NULL, 16);
2006-06-22 20:33:30 +02:00
len = snprintf(filename, sizeof(filename), "rtstat-%d.rrd", cpu);
if (len < 0 || len >= sizeof(filename))
continue;
2006-06-13 21:34:36 +02:00
2006-08-03 19:20:36 +02:00
probe_submit(&plugin, filename, DS_STAT,
"%llu:%llu:%llu:%llu:%llu:%llu:%llu:%llu:%llu:%llu:%llu:%llu",
arr[1], arr[2], arr[3], arr[4],
arr[5], arr[6], arr[7], arr[8],
arr[9], arr[10], arr[15], arr[16]);
len = snprintf(filename, sizeof(filename), "rtcache-%d.rrd", cpu);
if (len < 0 || len >= sizeof(filename))
continue;
probe_submit(&plugin, filename, DS_GC,
"%llu:%llu:%llu:%llu:%llu",
arr[0], arr[11], arr[12], arr[13], arr[14]);
2006-06-13 21:34:36 +02:00
cpu++;
}
fclose(fp);
2006-10-07 20:37:30 +02:00
return 0;
}
2007-04-01 15:23:09 +02:00
static int init(void)
{
buffer = malloc(BUFSIZE);
return (buffer == NULL) ? -1 : 0;
}
static int fini(void)
{
free(buffer);
return 0;
}
2006-06-13 21:34:36 +02:00
struct sammler_plugin plugin = {
.name = "rtstat",
.interval = 10,
2007-04-01 15:23:09 +02:00
.init = &init,
.fini = &fini,
2006-06-13 21:34:36 +02:00
.probe = &probe,
.get_ds = &get_ds,
};