Use CLOCK_REALTIME for collectd-tg times (fixes issue 2219)
[collectd.git] / 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;