1 /**
2 * collectd - src/write_log.c
3 * Copyright (C) 2015 Pierre-Yves Ritschard
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 * Pierre-Yves Ritschard <pyr at spootnik.org>
25 *
26 **/
28 #include "collectd.h"
29 #include "common.h"
30 #include "plugin.h"
31 #include "configfile.h"
33 #include "utils_format_graphite.h"
35 /* Folks without pthread will need to disable this plugin. */
36 #include <pthread.h>
38 #include <netdb.h>
40 #define WL_BUF_SIZE 8192
42 static int wl_write_messages (const data_set_t *ds, const value_list_t *vl)
43 {
44 char buffer[WL_BUF_SIZE];
45 int status;
47 if (0 != strcmp (ds->type, vl->type))
48 {
49 ERROR ("write_log plugin: DS type does not match "
50 "value list type");
51 return -1;
52 }
54 memset (buffer, 0, sizeof (buffer));
55 status = format_graphite (buffer, sizeof (buffer), ds, vl,
56 NULL, NULL, '_', 0);
57 if (status != 0) /* error message has been printed already. */
58 return (status);
60 INFO ("write_log values:\n%s", buffer);
62 return (0);
63 } /* int wl_write_messages */
65 static int wl_write (const data_set_t *ds, const value_list_t *vl,
66 user_data_t *user_data)
67 {
68 int status;
70 status = wl_write_messages (ds, vl);
72 return (status);
73 }
75 void module_register (void)
76 {
77 plugin_register_write ("write_log", wl_write, NULL);
78 }
80 /* vim: set sw=4 ts=4 sts=4 tw=78 et : */