mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-12-15 07:37:17 -05:00
Bugfix to rendering output of vectored TimerMetrics
This commit is contained in:
parent
f9478e475b
commit
b3a0179d64
2 changed files with 6 additions and 7 deletions
|
|
@ -127,9 +127,8 @@ class TimerMetric(CounterMetric):
|
|||
def render_item(self, k):
|
||||
keystr = self._render_key(k)
|
||||
|
||||
return ["%s%s:count %d" % (self.name, keystr, self.counts[k]),
|
||||
"%s%s:msec %d" % (self.name, keystr, self.times[k])]
|
||||
|
||||
return ["%s:count%s %d" % (self.name, keystr, self.counts[k]),
|
||||
"%s:msec%s %d" % (self.name, keystr, self.times[k])]
|
||||
|
||||
|
||||
class CacheMetric(object):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue