Fix compile time issues
[collectd.git] / src / write_riemann_threshold.h
1 /**
2  * collectd - src/write_riemann_threshold.h
3  * Copyright (C) 2016       Ruben Kerkhof
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License as published by the
7  * Free Software Foundation; only version 2 of the License is applicable.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
17  *
18  * Author:
19  *   Ruben Kerkhof <ruben at rubenkerkhof.com>
20  **/
21
22 #ifndef WRITE_RIEMANN_THRESHOLD_H
23 #define WRITE_RIEMANN_THRESHOLD_H
24
25 #include "plugin.h"
26
27 /* write_riemann_threshold_check tests all matching thresholds and returns the
28  * worst result for each data source in "statuses". "statuses" must point to
29  * ds->ds_num integers to which the result is written.
30  *
31  * Returns zero on success and if no threshold has been configured. Returns
32  * less than zero on failure. */
33 int write_riemann_threshold_check(const data_set_t *ds, const value_list_t *vl,
34                                   int *statuses);
35
36 #endif /* WRITE_RIEMANN_THRESHOLD_H */