X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fserial.c;h=9bd885dbbf0bec28aeacbe8ae06624a06bf0a98e;hb=4fd631aa4fc9aa2e5339a1531dc74915676844a4;hp=1c874e52177e919d59056126015da12edf760109;hpb=92445ff3363441d0f515de4a3ab92a504cfc0366;p=collectd.git diff --git a/src/serial.c b/src/serial.c index 1c874e52..9bd885db 100644 --- a/src/serial.c +++ b/src/serial.c @@ -30,17 +30,16 @@ #endif static void serial_submit (const char *type_instance, - counter_t rx, counter_t tx) + derive_t rx, derive_t tx) { value_t values[2]; value_list_t vl = VALUE_LIST_INIT; - values[0].counter = rx; - values[1].counter = tx; + values[0].derive = rx; + values[1].derive = tx; vl.values = values; vl.values_len = 2; - vl.time = time (NULL); sstrncpy (vl.host, hostname_g, sizeof (vl.host)); sstrncpy (vl.plugin, "serial", sizeof (vl.plugin)); sstrncpy (vl.type, "serial_octets", sizeof (vl.type)); @@ -55,8 +54,8 @@ static int serial_read (void) FILE *fh; char buffer[1024]; - counter_t rx = 0; - counter_t tx = 0; + derive_t rx = 0; + derive_t tx = 0; char *fields[16]; int i, numfields;