From 34bd17ce66a2d5d0ba43373001c95acf40504056 Mon Sep 17 00:00:00 2001 From: Martyn Inglis Date: Tue, 13 Sep 2016 14:40:04 +0100 Subject: [PATCH] Record time in seconds --- app/clients/statsd/statsd_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/clients/statsd/statsd_client.py b/app/clients/statsd/statsd_client.py index cc404b8b5..dfc9db72e 100644 --- a/app/clients/statsd/statsd_client.py +++ b/app/clients/statsd/statsd_client.py @@ -27,5 +27,5 @@ class StatsdClient(StatsClient): def timing_with_dates(self, stat, start, end, rate=1): if self.active: - delta = (start - end).total_seconds() * 1000 + delta = (start - end).total_seconds() super(StatsClient, self).timing(stat, delta, rate)