X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fgraph_config.c;h=6d2402b5c926047d15cd5d398864cde2dba5104e;hb=6b69fb3290de5d4208dc751f2fdbf8a37212fed8;hp=2a2b59d7432648f429c552f3493748c127a7a20e;hpb=7b4281ec1965ba5f02b1094532636d89304bcdfa;p=collection4.git diff --git a/src/graph_config.c b/src/graph_config.c index 2a2b59d..6d2402b 100644 --- a/src/graph_config.c +++ b/src/graph_config.c @@ -1,3 +1,26 @@ +/** + * collection4 - graph_config.c + * Copyright (C) 2010 Florian octo Forster + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301 USA + * + * Authors: + * Florian octo Forster + **/ + #include #include #include @@ -7,9 +30,11 @@ #include #include "graph_config.h" +#include "graph.h" #include "graph_list.h" #include "oconfig.h" #include "common.h" +#include "data_provider.h" #ifndef CONFIGFILE # define CONFIGFILE "/etc/collection.conf" @@ -28,6 +53,8 @@ static int dispatch_config (const oconfig_item_t *ci) /* {{{ */ child = ci->children + i; if (strcasecmp ("Graph", child->key) == 0) graph_config_add (child); + else if (strcasecmp ("DataProvider", child->key) == 0) + data_provider_config (child); else { DEBUG ("Unknown config option: %s", child->key);