move config parsing to init() functions
This commit is contained in:
parent
22958bb820
commit
d09c70d2aa
1
Makefile
1
Makefile
@ -28,6 +28,7 @@ ifeq ("$(WITH_RRD)", "yes")
|
|||||||
LDFLAGS += -lrrd
|
LDFLAGS += -lrrd
|
||||||
TARGET = sammler
|
TARGET = sammler
|
||||||
else
|
else
|
||||||
|
SRC += rrdtool-fake.c
|
||||||
TARGET = sammler_norrd
|
TARGET = sammler_norrd
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#ifndef _RRDTOOL_H_
|
#ifndef _RRDTOOL_H_
|
||||||
#define _RRDTOOL_H_
|
#define _RRDTOOL_H_
|
||||||
|
|
||||||
#ifdef WITH_RRD
|
int rrd_init(void);
|
||||||
int rrd_submit(const char *hostname, const char *pluginname, const char *filename, int ds_id, const char *data);
|
int rrd_submit(const char *hostname, const char *pluginname, const char *filename, int ds_id, const char *data);
|
||||||
#else
|
|
||||||
#define rrd_submit(hostname, plugin, filename, ds_id, data)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif /* _RRDTOOL_H_ */
|
#endif /* _RRDTOOL_H_ */
|
||||||
|
11
probe.c
11
probe.c
@ -14,6 +14,7 @@
|
|||||||
#define SUBMIT_NET_ONLY 0x01
|
#define SUBMIT_NET_ONLY 0x01
|
||||||
|
|
||||||
static int submit_flags;
|
static int submit_flags;
|
||||||
|
static const char *hostname;
|
||||||
|
|
||||||
int probe_init(void)
|
int probe_init(void)
|
||||||
{
|
{
|
||||||
@ -21,20 +22,16 @@ int probe_init(void)
|
|||||||
if (!strncmp(fwd_only, "true", 4))
|
if (!strncmp(fwd_only, "true", 4))
|
||||||
submit_flags |= SUBMIT_NET_ONLY;
|
submit_flags |= SUBMIT_NET_ONLY;
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
int probe_submit(struct sammler_plugin *plugin, const char *filename, int ds_id, const char *fmt, ... )
|
|
||||||
{
|
|
||||||
static const char *hostname = NULL;
|
|
||||||
if (hostname == NULL) {
|
|
||||||
static char hostname_buf[32];
|
static char hostname_buf[32];
|
||||||
if (gethostname(hostname_buf, sizeof(hostname_buf)) != 0)
|
if (gethostname(hostname_buf, sizeof(hostname_buf)) != 0)
|
||||||
strcpy(hostname_buf, "localhost");
|
strcpy(hostname_buf, "localhost");
|
||||||
|
|
||||||
hostname = config_get_string("global", "hostname", hostname_buf);
|
hostname = config_get_string("global", "hostname", hostname_buf);
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int probe_submit(struct sammler_plugin *plugin, const char *filename, int ds_id, const char *fmt, ... )
|
||||||
|
{
|
||||||
char *buffer = malloc(BUFSIZE);
|
char *buffer = malloc(BUFSIZE);
|
||||||
if (buffer == NULL) {
|
if (buffer == NULL) {
|
||||||
log_print(LOG_ERROR, "probe_submit: out of memory");
|
log_print(LOG_ERROR, "probe_submit: out of memory");
|
||||||
|
30
rrdtool-fake.c
Normal file
30
rrdtool-fake.c
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
/***************************************************************************
|
||||||
|
* Copyright (C) 05/2009 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 <rrdtool.h>
|
||||||
|
|
||||||
|
int rrd_init(void)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
int rrd_submit(const char *hostname, const char *pluginname, const char *filename, int ds_id, const char *data)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
12
rrdtool.c
12
rrdtool.c
@ -48,6 +48,14 @@ struct rra_cb_data {
|
|||||||
int *pos;
|
int *pos;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static const char *rrd_dir;
|
||||||
|
|
||||||
|
int rrd_init(void)
|
||||||
|
{
|
||||||
|
rrd_dir = config_get_string("global", "rrd_dir", ".");
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
static int append_rra_config(const char *parameter, void *privdata)
|
static int append_rra_config(const char *parameter, void *privdata)
|
||||||
{
|
{
|
||||||
struct rra_cb_data *data = (struct rra_cb_data *)privdata;
|
struct rra_cb_data *data = (struct rra_cb_data *)privdata;
|
||||||
@ -201,10 +209,6 @@ static int create_parent_dirs(char *filename)
|
|||||||
|
|
||||||
int rrd_submit(const char *hostname, const char *pluginname, const char *filename, int ds_id, const char *data)
|
int rrd_submit(const char *hostname, const char *pluginname, const char *filename, int ds_id, const char *data)
|
||||||
{
|
{
|
||||||
static const char *rrd_dir = NULL;
|
|
||||||
if (rrd_dir == NULL)
|
|
||||||
rrd_dir = config_get_string("global", "rrd_dir", ".");
|
|
||||||
|
|
||||||
char *fullfile = malloc(BUFSIZE);
|
char *fullfile = malloc(BUFSIZE);
|
||||||
if (fullfile == NULL) {
|
if (fullfile == NULL) {
|
||||||
log_print(LOG_ERROR, "rrd_submit: out of memory");
|
log_print(LOG_ERROR, "rrd_submit: out of memory");
|
||||||
|
@ -31,6 +31,7 @@
|
|||||||
#include "event.h"
|
#include "event.h"
|
||||||
#include "logging.h"
|
#include "logging.h"
|
||||||
#include "network.h"
|
#include "network.h"
|
||||||
|
#include "rrdtool.h"
|
||||||
#include "plugins.h"
|
#include "plugins.h"
|
||||||
#include "probe.h"
|
#include "probe.h"
|
||||||
|
|
||||||
@ -103,6 +104,9 @@ int main(int argc, char *argv[])
|
|||||||
if (net_init())
|
if (net_init())
|
||||||
exit(1);
|
exit(1);
|
||||||
|
|
||||||
|
if (rrd_init())
|
||||||
|
exit(1);
|
||||||
|
|
||||||
if (plugin_init()) {
|
if (plugin_init()) {
|
||||||
net_close();
|
net_close();
|
||||||
exit(1);
|
exit(1);
|
||||||
|
Loading…
Reference in New Issue
Block a user