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