2 * collectd - src/utils_cache.h
3 * Copyright (C) 2007 Florian octo Forster
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.
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.
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
19 * Florian octo Forster <octo at verplant.org>
23 #define UTILS_CACHE_H 1
28 #define STATE_WARNING 1
30 #define STATE_MISSING 15
33 int uc_check_timeout (void);
34 int uc_update (const data_set_t *ds, const value_list_t *vl);
35 int uc_get_rate_by_name (const char *name, gauge_t **ret_values, size_t *ret_values_num);
36 gauge_t *uc_get_rate (const data_set_t *ds, const value_list_t *vl);
38 int uc_get_state (const data_set_t *ds, const value_list_t *vl);
39 int uc_set_state (const data_set_t *ds, const value_list_t *vl, int state);
41 /* vim: set shiftwidth=2 softtabstop=2 tabstop=8 : */
42 #endif /* !UTILS_CACHE_H */