Tree wide: Reformat with clang-format.
[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   char buffer[WL_BUF_SIZE] = {0};
41   int status;
42
43   if (0 != strcmp(ds->type, vl->type)) {
44     ERROR("write_log plugin: DS type does not match "
45           "value list type");
46     return -1;
47   }
48
49   status = format_graphite(buffer, sizeof(buffer), ds, vl, NULL, NULL, '_', 0);
50   if (status != 0) /* error message has been printed already. */
51     return (status);
52
53   INFO("write_log values:\n%s", buffer);
54
55   return (0);
56 } /* int wl_write_messages */
57
58 static int wl_write(const data_set_t *ds, const value_list_t *vl,
59                     __attribute__((unused)) user_data_t *user_data) {
60   int status;
61
62   status = wl_write_messages(ds, vl);
63
64   return (status);
65 }
66
67 void module_register(void) {
68   plugin_register_write("write_log", wl_write, NULL);
69 }
70
71 /* vim: set sw=4 ts=4 sts=4 tw=78 et : */