author | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Wed, 17 Nov 2010 14:18:03 +0000 (15:18 +0100) | ||
committer | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Wed, 17 Nov 2010 14:20:11 +0000 (15:20 +0100) |
Conflicts:
src/netapp.c
src/netapp.c
1 | 2 | |||
---|---|---|---|---|
configure.in | patch | | diff1 | | diff2 | | blob | history |
src/Makefile.am | patch | | diff1 | | diff2 | | blob | history |
src/collectd.h | patch | | diff1 | | diff2 | | blob | history |
src/netapp.c | patch | | diff1 | | diff2 | | blob | history |
src/network.c | patch | | diff1 | | diff2 | | blob | history |
src/notify_email.c | patch | | diff1 | | diff2 | | blob | history |
src/python.c | patch | | diff1 | | diff2 | | blob | history |
src/utils_cache.c | patch | | diff1 | | diff2 | | blob | history |
diff --cc configure.in
Simple merge
diff --cc src/Makefile.am
Simple merge
diff --cc src/collectd.h
Simple merge
diff --cc src/netapp.c
index c50b3dbdbcb707860d7a4658d211e844f1b3fe3a,1640cfd208d6bef77819a6b16f91fa5a0a8bc110..5c4b6e7372361d309a3207a8d812028ee6f4034a
--- 1/src/netapp.c
--- 2/src/netapp.c
+++ b/src/netapp.c
const char *plugin_inst,
const char *type, const char *type_inst,
value_t *values, int values_len,
- time_t timestamp, int interval)
- cdtime_t timestamp)
++ cdtime_t timestamp, cdtime_t interval)
{
value_list_t vl = VALUE_LIST_INIT;
static int submit_two_counters (const char *host, const char *plugin_inst, /* {{{ */
const char *type, const char *type_inst, counter_t val0, counter_t val1,
- time_t timestamp, int interval)
- cdtime_t timestamp)
++ cdtime_t timestamp, cdtime_t interval)
{
value_t values[2];
} /* }}} int submit_two_counters */
static int submit_counter (const char *host, const char *plugin_inst, /* {{{ */
- const char *type, const char *type_inst, counter_t counter, time_t timestamp, int interval)
- const char *type, const char *type_inst, counter_t counter, cdtime_t timestamp)
++ const char *type, const char *type_inst, counter_t counter,
++ cdtime_t timestamp, cdtime_t interval)
{
value_t v;
static int submit_two_gauge (const char *host, const char *plugin_inst, /* {{{ */
const char *type, const char *type_inst, gauge_t val0, gauge_t val1,
- time_t timestamp, int interval)
- cdtime_t timestamp)
++ cdtime_t timestamp, cdtime_t interval)
{
value_t values[2];
} /* }}} int submit_two_gauge */
static int submit_double (const char *host, const char *plugin_inst, /* {{{ */
- const char *type, const char *type_inst, double d, time_t timestamp, int interval)
- const char *type, const char *type_inst, double d, cdtime_t timestamp)
++ const char *type, const char *type_inst, double d,
++ cdtime_t timestamp, cdtime_t interval)
{
value_t v;
uint64_t new_misses,
uint64_t old_hits,
uint64_t old_misses,
- time_t timestamp,
- int interval)
- cdtime_t timestamp)
++ cdtime_t timestamp,
++ cdtime_t interval)
{
value_t v;
/* Data corresponding to <Disks /> */
static int cna_handle_disk_data (const char *hostname, /* {{{ */
- cfg_disk_t *cfg_disk, na_elem_t *data, int interval)
- cfg_disk_t *cfg_disk, na_elem_t *data)
++ cfg_disk_t *cfg_disk, na_elem_t *data, cdtime_t interval)
{
- time_t timestamp;
+ cdtime_t timestamp;
na_elem_t *instances;
na_elem_t *instance;
na_elem_iter_t instance_iter;
/* Data corresponding to <VolumePerf /> */
static int cna_handle_volume_perf_data (const char *hostname, /* {{{ */
- cfg_volume_perf_t *cvp, na_elem_t *data, int interval)
- cfg_volume_perf_t *cvp, na_elem_t *data)
++ cfg_volume_perf_t *cvp, na_elem_t *data, cdtime_t interval)
{
- time_t timestamp;
+ cdtime_t timestamp;
na_elem_t *elem_instances;
na_elem_iter_t iter_instances;
na_elem_t *elem_instance;
diff --cc src/network.c
Simple merge
diff --cc src/notify_email.c
Simple merge
diff --cc src/python.c
Simple merge
diff --cc src/utils_cache.c
Simple merge