X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Ftail.c;h=8becc05bc4a86cfcdda73195775ed7a1d5bdc76e;hb=25ac639c505394e4ae9600ee62f5d5aeea97c6d4;hp=7d77e253a49d6a13d4c5a99a50cd666ce3b9266e;hpb=4aecad69a5640d208567d569636bfc2ddfed4b92;p=collectd.git diff --git a/src/tail.c b/src/tail.c index 7d77e253..8becc05b 100644 --- a/src/tail.c +++ b/src/tail.c @@ -30,7 +30,7 @@ * Instance "exim" * * Regex "S=([1-9][0-9]*)" - * DSType "CouterAdd" + * DSType "CounterAdd" * Type "ipt_bytes" * Instance "total" * @@ -92,15 +92,35 @@ static int ctail_config_add_match_dstype (ctail_config_match_t *cm, else if (strncasecmp ("Counter", ci->values[0].value.string, strlen ("Counter")) == 0) { cm->flags = UTILS_MATCH_DS_TYPE_COUNTER; - if (strcasecmp ("CouterSet", ci->values[0].value.string) == 0) + if (strcasecmp ("CounterSet", ci->values[0].value.string) == 0) cm->flags |= UTILS_MATCH_CF_COUNTER_SET; - else if (strcasecmp ("CouterAdd", ci->values[0].value.string) == 0) + else if (strcasecmp ("CounterAdd", ci->values[0].value.string) == 0) cm->flags |= UTILS_MATCH_CF_COUNTER_ADD; - else if (strcasecmp ("CouterInc", ci->values[0].value.string) == 0) + else if (strcasecmp ("CounterInc", ci->values[0].value.string) == 0) cm->flags |= UTILS_MATCH_CF_COUNTER_INC; else cm->flags = 0; } + else if (strncasecmp ("Derive", ci->values[0].value.string, strlen ("Derive")) == 0) + { + cm->flags = UTILS_MATCH_DS_TYPE_DERIVE; + if (strcasecmp ("DeriveSet", ci->values[0].value.string) == 0) + cm->flags |= UTILS_MATCH_CF_DERIVE_SET; + else if (strcasecmp ("DeriveAdd", ci->values[0].value.string) == 0) + cm->flags |= UTILS_MATCH_CF_DERIVE_ADD; + else if (strcasecmp ("DeriveInc", ci->values[0].value.string) == 0) + cm->flags |= UTILS_MATCH_CF_DERIVE_INC; + else + cm->flags = 0; + } + else if (strncasecmp ("Absolute", ci->values[0].value.string, strlen ("Absolute")) == 0) + { + cm->flags = UTILS_MATCH_DS_TYPE_ABSOLUTE; + if (strcasecmp ("AbsoluteSet", ci->values[0].value.string) == 0) + cm->flags |= UTILS_MATCH_CF_ABSOLUTE_SET; + else + cm->flags = 0; + } else { cm->flags = 0; @@ -305,7 +325,7 @@ static int ctail_init (void) static int ctail_read (void) { int success = 0; - int i; + size_t i; for (i = 0; i < tail_match_list_num; i++) { @@ -314,7 +334,7 @@ static int ctail_read (void) status = tail_match_read (tail_match_list[i]); if (status != 0) { - ERROR ("tail plugin: tail_match_read[%i] failed.", i); + ERROR ("tail plugin: tail_match_read[%zu] failed.", i); } else { @@ -329,7 +349,7 @@ static int ctail_read (void) static int ctail_shutdown (void) { - int i; + size_t i; for (i = 0; i < tail_match_list_num; i++) {