From: Daniel Hilst Date: Thu, 3 Jan 2013 19:57:16 +0000 (-0200) Subject: Add Hostname option to Database block of dbi plugin X-Git-Tag: collectd-5.3.0~62 X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=b49c1ce11145159f1de4422335c3720937c2301e;p=collectd.git Add Hostname option to Database block of dbi plugin --- diff --git a/src/dbi.c b/src/dbi.c index 0c1982d7..b3bdd130 100644 --- a/src/dbi.c +++ b/src/dbi.c @@ -48,6 +48,7 @@ struct cdbi_database_s /* {{{ */ char *select_db; char *driver; + char *hostname; cdbi_driver_option_t *driver_options; size_t driver_options_num; @@ -297,6 +298,9 @@ static int cdbi_config_add_database (oconfig_item_t *ci) /* {{{ */ else if (strcasecmp ("Query", child->key) == 0) status = udb_query_pick_from_list (child, queries, queries_num, &db->queries, &db->queries_num); + else if (strcasecmp ("Hostname", child->key) == 0) + db->hostname = strdup(child->key); + else { WARNING ("dbi plugin: Option `%s' not allowed here.", child->key);