Use CLOCK_REALTIME for collectd-tg times (fixes issue 2219)
authorAndrew Bays <abays@redhat.com>
Mon, 25 Jun 2018 14:12:07 +0000 (10:12 -0400)
committerAndrew Bays <abays@redhat.com>
Mon, 25 Jun 2018 14:12:07 +0000 (10:12 -0400)
src/collectd-tg.c

index 48f2dc4..511cf5b 100644 (file)
@@ -104,7 +104,7 @@ static double dtime(void) /* {{{ */
 {
   struct timespec ts = {0};
 
-  if (clock_gettime(CLOCK_MONOTONIC, &ts) != 0)
+  if (clock_gettime(CLOCK_REALTIME, &ts) != 0)
     perror("clock_gettime");
 
   return (double)ts.tv_sec + (double)ts.tv_nsec / 1e9;