Merge pull request #1832 from rubenk/check-for-c99-compiler
[collectd.git] / src / write_log.c
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  **/
27
28 #include "collectd.h"
29
30 #include "common.h"
31 #include "plugin.h"
32 #include "configfile.h"
33
34 #include "utils_format_graphite.h"
35
36 #include <netdb.h>
37
38 #define WL_BUF_SIZE 8192
39
40 static int wl_write_messages (const data_set_t *ds, const value_list_t *vl)
41 {
42     char buffer[WL_BUF_SIZE] = { 0 };
43     int status;
44
45     if (0 != strcmp (ds->type, vl->type))
46     {
47         ERROR ("write_log plugin: DS type does not match "
48                 "value list type");
49         return -1;
50     }
51
52     status = format_graphite (buffer, sizeof (buffer), ds, vl,
53                               NULL, NULL, '_', 0);
54     if (status != 0) /* error message has been printed already. */
55         return (status);
56
57     INFO ("write_log values:\n%s", buffer);
58
59     return (0);
60 } /* int wl_write_messages */
61
62 static int wl_write (const data_set_t *ds, const value_list_t *vl,
63         user_data_t *user_data)
64 {
65     int status;
66
67     status = wl_write_messages (ds, vl);
68
69     return (status);
70 }
71
72 void module_register (void)
73 {
74     plugin_register_write ("write_log", wl_write, NULL);
75 }
76
77 /* vim: set sw=4 ts=4 sts=4 tw=78 et : */