Merge remote-tracking branch 'github/pr/1909' into collectd-5.5
[collectd.git] / src / drbd.c
index af55667..d46bb02 100644 (file)
@@ -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]))
                {