X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fdrbd.c;h=d46bb020ed5cc89d821c1ea5caa71d665f169ec8;hb=55ef2778ade050e2924eeb027c98feea103f1585;hp=af55667ee34ace9056f4ae95eb1d1fb46c2a2511;hpb=f505691270f2317291c372fd5f004a4ffbce9f9a;p=collectd.git diff --git a/src/drbd.c b/src/drbd.c index af55667e..d46bb020 100644 --- a/src/drbd.c +++ b/src/drbd.c @@ -132,7 +132,7 @@ static int drbd_read (void) fh = fopen (drbd_stats, "r"); if (fh == NULL) { - WARNING ("Unable to open%s", drbd_stats); + WARNING ("drbd plugin: Unable to open %s", drbd_stats); return (EINVAL); } @@ -142,8 +142,12 @@ static int drbd_read (void) fields, STATIC_ARRAY_SIZE (fields)); /* ignore headers (first two iterations) */ - if (fields_num < 4) + if ((strcmp(fields[0], "version:") == 0) || + (strcmp(fields[0], "srcversion:") == 0) || + (strcmp(fields[0], "GIT-hash:") == 0)) + { continue; + } if (isdigit(fields[0][0])) {