fix from alex
[rrdtool.git] / src / rrd_client.h
1 /**
2  * RRDTool - src/rrd_client.h
3  * Copyright (C) 2008 Florian octo Forster
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  * Authors:
19  *   Florian octo Forster <octo at verplant.org>
20  **/
21
22 #ifndef __RRD_CLIENT_H
23 #define __RRD_CLIENT_H 1
24
25 #include <stdint.h>
26
27 #ifndef RRDCACHED_DEFAULT_ADDRESS
28 # define RRDCACHED_DEFAULT_ADDRESS "unix:/tmp/rrdcached.sock"
29 #endif
30
31 #define RRDCACHED_DEFAULT_PORT "42217"
32 #define ENV_RRDCACHED_ADDRESS "RRDCACHED_ADDRESS"
33
34 int rrdc_connect (const char *addr);
35 int rrdc_is_connected(const char *daemon_addr);
36 int rrdc_disconnect (void);
37
38 int rrdc_update (const char *filename, int values_num,
39         const char * const *values);
40
41 int rrdc_flush (const char *filename);
42 int rrdc_flush_if_daemon (const char *opt_daemon, const char *filename);
43
44
45 struct rrdc_stats_s
46 {
47   const char *name;
48   uint16_t type;
49 #define RRDC_STATS_TYPE_GAUGE   0x0001
50 #define RRDC_STATS_TYPE_COUNTER 0x0002
51   uint16_t flags;
52   union
53   {
54     uint64_t counter;
55     double   gauge;
56   } value;
57   struct rrdc_stats_s *next;
58 };
59 typedef struct rrdc_stats_s rrdc_stats_t;
60
61 int rrdc_stats_get (rrdc_stats_t **ret_stats);
62 void rrdc_stats_free (rrdc_stats_t *ret_stats);
63
64 #endif /* __RRD_CLIENT_H */
65 /*
66  * vim: set sw=2 sts=2 ts=8 et fdm=marker :
67  */