* New FETCH command allowing rrd_fetch to operate through the daemon and
thus work remotely. By Florian Forster
-
+API
+---
+* exported rrd_update_v_r for theadsave rrd_update calls
#####################################
rrd_update
rrd_update_r
rrd_update_v
+rrd_update_v_r
rrd_version
rrd_write
rrd_xport
const char **argv);
rrd_info_t *rrd_info_r(
char *);
-/* NOTE: rrd_update_r are only thread-safe if no at-style time
- specifications get used!!! */
+/* NOTE: rrd_update_r and rrd_update_v_r are only thread-safe if no at-style
+ time specifications get used!!! */
int rrd_update_r(
const char *filename,
const char *_template,
int argc,
const char **argv);
+ int rrd_update_v_r(
+ const char *filename,
+ const char *_template,
+ int argc,
+ const char **argv,
+ rrd_info_t * pcdp_summary);
int rrd_fetch_r (
const char *filename,
const char *cf,
return _rrd_update(filename, tmplt, argc, argv, NULL);
}
+int rrd_update_v_r(
+ const char *filename,
+ const char *tmplt,
+ int argc,
+ const char **argv,
+ rrd_info_t * pcdp_summary)
+{
+ return _rrd_update(filename, tmplt, argc, argv, pcdp_summary);
+}
+
int _rrd_update(
const char *filename,
const char *tmplt,