X-Git-Url: https://git.octo.it/?p=collectd.git;a=blobdiff_plain;f=src%2Fwrite_riemann_threshold.h;h=5299c32dddf5364b4cc0c797ded64cafc53e7e83;hp=d3b3fe9ab8fd7dc3ae9d46a148413feb3c5ea8fd;hb=48efd3deb4c9139fd060ff3d289896e9031bcc7c;hpb=abc30f241619b3eb66c801c324390e1e9e6e001f diff --git a/src/write_riemann_threshold.h b/src/write_riemann_threshold.h index d3b3fe9a..5299c32d 100644 --- a/src/write_riemann_threshold.h +++ b/src/write_riemann_threshold.h @@ -1,6 +1,36 @@ +/** + * collectd - src/write_riemann_threshold.h + * Copyright (C) 2016 Ruben Kerkhof + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the + * Free Software Foundation; only version 2 of the License is applicable. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + * Author: + * Ruben Kerkhof + **/ + #ifndef WRITE_RIEMANN_THRESHOLD_H #define WRITE_RIEMANN_THRESHOLD_H -int write_riemann_threshold_check(const data_set_t *, const value_list_t *, int *); +#include "plugin.h" + +/* write_riemann_threshold_check tests all matching thresholds and returns the + * worst result for each data source in "statuses". "statuses" must point to + * ds->ds_num integers to which the result is written. + * + * Returns zero on success and if no threshold has been configured. Returns + * less than zero on failure. */ +int write_riemann_threshold_check(const data_set_t *ds, const value_list_t *vl, + int *statuses); -#endif +#endif /* WRITE_RIEMANN_THRESHOLD_H */