Code

added more debugging. cleaned up commented lines
[collectd.git] / src / write_mongodb.c
1 /**
2  * collectd - src/write_mongodb.c
3  * Copyright (C) 2010  Florian Forster, Akkarit Sangpetch
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation
8  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9  * and/or sell copies of the Software, and to permit persons to whom the
10  * Software is furnished to do so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included in
13  * all copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21  * DEALINGS IN THE SOFTWARE.
22  *
23  * Authors:
24  *   Florian Forster <ff at octo.it>
25  *   Akkarit Sangpetch <asangpet@andrew.cmu.edu>
26  **/
28 #include "collectd.h"
29 #include "plugin.h"
30 #include "common.h"
31 #include "configfile.h"
33 #include <pthread.h>
35 #if HAVE_STDINT_H
36 # define MONGO_HAVE_STDINT 1
37 #else
38 # define MONGO_USE_LONG_LONG_INT 1
39 #endif
40 #include <mongo.h>
42 /*
43 struct mongo_options
44 {
45   char *host;
46   int port;
47   int timeout;
48 };
49 typedef struct mongo_options mongo_options;
50 */
52 struct wm_node_s
53 {
54   char name[DATA_MAX_NAME_LEN];
56   char *host;
57   int port;
58   int timeout;
60   int connected;
62   mongo conn[1];
63 /*  mongo_options opts[1]; */
64   pthread_mutex_t lock;
65 };
66 typedef struct wm_node_s wm_node_t;
68 /*
69  * Functions
70  */
71 static int wm_write (const data_set_t *ds, /* {{{ */
72     const value_list_t *vl,
73     user_data_t *ud)
74 {
75   wm_node_t *node = ud->data;
76   char collection_name[512];
77   int status;
78   int i;
79   bson record;
80   /*bson_data record_buf; */
82   ssnprintf(collection_name, sizeof (collection_name), "collectd.%s", vl->plugin);
84   bson_init(&record);
85   bson_append_time_t(&record,"ts",vl->time);
86   bson_append_string(&record,"h",vl->host);
87   bson_append_string(&record,"i",vl->plugin_instance);
88   bson_append_string(&record,"t",vl->type);
89   bson_append_string(&record,"ti",vl->type_instance);
91   for (i = 0; i < ds->ds_num; i++)
92   {
93     if (ds->ds[i].type == DS_TYPE_COUNTER)
94       bson_append_long(&record, ds->ds[i].name, vl->values[i].counter);
95     else if (ds->ds[i].type == DS_TYPE_GAUGE)
96       bson_append_double(&record, ds->ds[i].name, vl->values[i].gauge);
97     else if (ds->ds[i].type == DS_TYPE_DERIVE)
98       bson_append_long(&record, ds->ds[i].name, vl->values[i].derive);
99     else if (ds->ds[i].type == DS_TYPE_ABSOLUTE)
100       bson_append_long(&record, ds->ds[i].name, vl->values[i].absolute);
101     else
102       assert (23 == 42);
103   }
106   pthread_mutex_lock (&node->lock);
108   if (node->connected == 0)
109   {
110 /*
111     sstrncpy(node->opts->host, node->host,
112         sizeof (node->opts->host));
113     node->opts->port = node->port;
114 */
116  /*   status = mongo_connect(node->conn,node->opts->host, node->opts->port);*/
117     status = mongo_connect(node->conn, node->host, node->port);
118     if (status != MONGO_OK) {
119       ERROR ("write_mongodb plugin: Connecting to host \"%s\" (port %i) failed.",
120           (node->host != NULL) ? node->host : "localhost",
121           (node->port != 0) ? node->port : MONGO_DEFAULT_PORT);
122       mongo_destroy(node->conn);
123       pthread_mutex_unlock (&node->lock);
124       return (-1);
125     } else {
126       node->connected = 1;
127     }
128   }
130   /* Assert if the connection has been established */
131   assert (node->connected == 1);
133   DEBUG ( "write_mongodb plugin: writing record");
134   /* bson_print(&record); */
136   status = mongo_insert(node->conn,collection_name,&record);
138   if(status != MONGO_OK)
139   {
140     ERROR ( "write_mongodb plugin: error inserting record: ");
141     if(node->conn->err == MONGO_BSON_INVALID) 
142     {
143       ERROR (record.errstr);
144     }
145   }
148   pthread_mutex_unlock (&node->lock);
150   return (0);
151 } /* }}} int wm_write */
153 static void wm_config_free (void *ptr) /* {{{ */
155   wm_node_t *node = ptr;
157   if (node == NULL)
158     return;
160   if (node->connected != 0)
161   {
162     mongo_destroy(node->conn);
163     node->connected = 0;
164   }
166   sfree (node->host);
167   sfree (node);
168 } /* }}} void wm_config_free */
170 static int wm_config_node (oconfig_item_t *ci) /* {{{ */
172   wm_node_t *node;
173   int status;
174   int i;
176   node = malloc (sizeof (*node));
177   if (node == NULL)
178     return (ENOMEM);
179   memset (node, 0, sizeof (*node));
180   node->host = NULL;
181   node->port = 0;
182   node->timeout = 1000;
183   node->connected = 0;
184   pthread_mutex_init (&node->lock, /* attr = */ NULL);
186   status = cf_util_get_string_buffer (ci, node->name, sizeof (node->name));
188   if (status != 0)
189   {
190     sfree (node);
191     return (status);
192   }
194   for (i = 0; i < ci->children_num; i++)
195   {
196     oconfig_item_t *child = ci->children + i;
198     if (strcasecmp ("Host", child->key) == 0)
199       status = cf_util_get_string (child, &node->host);
200     else if (strcasecmp ("Port", child->key) == 0)
201     {
202       status = cf_util_get_port_number (child);
203       if (status > 0)
204       {
205         node->port = status;
206         status = 0;
207       }
208     }
209     else if (strcasecmp ("Timeout", child->key) == 0)
210       status = cf_util_get_int (child, &node->timeout);
211     else
212       WARNING ("write_mongodb plugin: Ignoring unknown config option \"%s\".",
213           child->key);
215     if (status != 0)
216       break;
217   } /* for (i = 0; i < ci->children_num; i++) */
219   if (status == 0)
220   {
221     char cb_name[DATA_MAX_NAME_LEN];
222     user_data_t ud;
224     ssnprintf (cb_name, sizeof (cb_name), "write_mongodb/%s", node->name);
226     ud.data = node;
227     ud.free_func = wm_config_free;
229     status = plugin_register_write (cb_name, wm_write, &ud);
230     INFO ("write_mongodb plugin: registered write plugin %s %d",cb_name,status);
231   }
233   if (status != 0)
234     wm_config_free (node);
236   return (status);
237 } /* }}} int wm_config_node */
239 static int wm_config (oconfig_item_t *ci) /* {{{ */
241   int i;
243   for (i = 0; i < ci->children_num; i++)
244   {
245     oconfig_item_t *child = ci->children + i;
247     if (strcasecmp ("Node", child->key) == 0)
248       wm_config_node (child);
249     else
250       WARNING ("write_mongodb plugin: Ignoring unknown "
251           "configuration option \"%s\" at top level.", child->key);
252   }
254   return (0);
255 } /* }}} int wm_config */
257 void module_register (void)
259   plugin_register_complex_config ("write_mongodb", wm_config);
262 /* vim: set sw=2 sts=2 tw=78 et fdm=marker : */