sammler/include/rrdtool.h

11 lines
269 B
C

#ifndef _RRDTOOL_H_
#define _RRDTOOL_H_
#ifdef WITH_RRD
int rrd_submit(const char *hostname, const char *pluginname, const char *filename, int ds_id, const char *data);
#else
#define rrd_submit(hostname, plugin, filename, ds_id, data)
#endif
#endif /* _RRDTOOL_H_ */