2015-02-24 11:58:26 -05:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright 2015 OpenMarket Ltd
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
from tests import unittest
|
|
|
|
|
2015-03-04 11:46:44 -05:00
|
|
|
from synapse.metrics.metric import (
|
2015-03-10 11:21:03 -04:00
|
|
|
CounterMetric, CallbackMetric, DistributionMetric, CacheMetric
|
2015-03-04 11:46:44 -05:00
|
|
|
)
|
2015-02-24 11:58:26 -05:00
|
|
|
|
|
|
|
|
|
|
|
class CounterMetricTestCase(unittest.TestCase):
|
|
|
|
|
|
|
|
def test_scalar(self):
|
|
|
|
counter = CounterMetric("scalar")
|
|
|
|
|
|
|
|
self.assertEquals(counter.render(), [
|
2015-03-06 13:40:20 -05:00
|
|
|
'scalar 0',
|
2015-02-24 11:58:26 -05:00
|
|
|
])
|
|
|
|
|
|
|
|
counter.inc()
|
|
|
|
|
|
|
|
self.assertEquals(counter.render(), [
|
2015-03-06 13:40:20 -05:00
|
|
|
'scalar 1',
|
2015-02-24 11:58:26 -05:00
|
|
|
])
|
|
|
|
|
2015-03-10 11:54:16 -04:00
|
|
|
counter.inc_by(2)
|
2015-02-24 11:58:26 -05:00
|
|
|
|
|
|
|
self.assertEquals(counter.render(), [
|
2015-03-06 13:40:20 -05:00
|
|
|
'scalar 3'
|
2015-02-24 11:58:26 -05:00
|
|
|
])
|
|
|
|
|
|
|
|
def test_vector(self):
|
2015-03-06 10:28:06 -05:00
|
|
|
counter = CounterMetric("vector", labels=["method"])
|
2015-02-24 11:58:26 -05:00
|
|
|
|
|
|
|
# Empty counter doesn't yet know what values it has
|
|
|
|
self.assertEquals(counter.render(), [])
|
|
|
|
|
|
|
|
counter.inc("GET")
|
|
|
|
|
|
|
|
self.assertEquals(counter.render(), [
|
2015-03-06 13:40:20 -05:00
|
|
|
'vector{method="GET"} 1',
|
2015-02-24 11:58:26 -05:00
|
|
|
])
|
|
|
|
|
|
|
|
counter.inc("GET")
|
|
|
|
counter.inc("PUT")
|
|
|
|
|
|
|
|
self.assertEquals(counter.render(), [
|
2015-03-06 13:40:20 -05:00
|
|
|
'vector{method="GET"} 2',
|
|
|
|
'vector{method="PUT"} 1',
|
2015-02-24 11:58:26 -05:00
|
|
|
])
|
2015-03-04 10:47:23 -05:00
|
|
|
|
|
|
|
|
2015-03-04 11:46:44 -05:00
|
|
|
class CallbackMetricTestCase(unittest.TestCase):
|
|
|
|
|
2015-03-04 12:58:10 -05:00
|
|
|
def test_scalar(self):
|
2015-03-04 11:46:44 -05:00
|
|
|
d = dict()
|
|
|
|
|
|
|
|
metric = CallbackMetric("size", lambda: len(d))
|
|
|
|
|
|
|
|
self.assertEquals(metric.render(), [
|
2015-03-06 13:40:20 -05:00
|
|
|
'size 0',
|
2015-03-04 11:46:44 -05:00
|
|
|
])
|
|
|
|
|
|
|
|
d["key"] = "value"
|
|
|
|
|
|
|
|
self.assertEquals(metric.render(), [
|
2015-03-06 13:40:20 -05:00
|
|
|
'size 1',
|
2015-03-04 11:46:44 -05:00
|
|
|
])
|
|
|
|
|
2015-03-04 12:58:10 -05:00
|
|
|
def test_vector(self):
|
|
|
|
vals = dict()
|
|
|
|
|
2015-03-06 10:28:06 -05:00
|
|
|
metric = CallbackMetric("values", lambda: vals, labels=["type"])
|
2015-03-04 12:58:10 -05:00
|
|
|
|
|
|
|
self.assertEquals(metric.render(), [])
|
|
|
|
|
|
|
|
# Keys have to be tuples, even if they're 1-element
|
|
|
|
vals[("foo",)] = 1
|
|
|
|
vals[("bar",)] = 2
|
|
|
|
|
|
|
|
self.assertEquals(metric.render(), [
|
2015-03-06 13:40:20 -05:00
|
|
|
'values{type="bar"} 2',
|
|
|
|
'values{type="foo"} 1',
|
2015-03-04 12:58:10 -05:00
|
|
|
])
|
|
|
|
|
2015-03-04 11:46:44 -05:00
|
|
|
|
2015-03-10 11:21:03 -04:00
|
|
|
class DistributionMetricTestCase(unittest.TestCase):
|
2015-03-04 14:22:14 -05:00
|
|
|
|
|
|
|
def test_scalar(self):
|
2015-03-10 11:21:03 -04:00
|
|
|
metric = DistributionMetric("thing")
|
2015-03-04 14:22:14 -05:00
|
|
|
|
|
|
|
self.assertEquals(metric.render(), [
|
2015-03-06 13:40:20 -05:00
|
|
|
'thing:count 0',
|
2015-03-10 11:21:03 -04:00
|
|
|
'thing:total 0',
|
2015-03-04 14:22:14 -05:00
|
|
|
])
|
|
|
|
|
2015-03-10 11:21:03 -04:00
|
|
|
metric.inc_by(500)
|
2015-03-04 14:22:14 -05:00
|
|
|
|
|
|
|
self.assertEquals(metric.render(), [
|
2015-03-06 13:40:20 -05:00
|
|
|
'thing:count 1',
|
2015-03-10 11:21:03 -04:00
|
|
|
'thing:total 500',
|
2015-03-04 14:22:14 -05:00
|
|
|
])
|
|
|
|
|
|
|
|
def test_vector(self):
|
2015-03-10 11:21:03 -04:00
|
|
|
metric = DistributionMetric("queries", labels=["verb"])
|
2015-03-04 14:22:14 -05:00
|
|
|
|
|
|
|
self.assertEquals(metric.render(), [])
|
|
|
|
|
2015-03-10 11:21:03 -04:00
|
|
|
metric.inc_by(300, "SELECT")
|
|
|
|
metric.inc_by(200, "SELECT")
|
|
|
|
metric.inc_by(800, "INSERT")
|
2015-03-04 14:22:14 -05:00
|
|
|
|
|
|
|
self.assertEquals(metric.render(), [
|
2015-03-06 13:40:20 -05:00
|
|
|
'queries:count{verb="INSERT"} 1',
|
|
|
|
'queries:count{verb="SELECT"} 2',
|
2015-03-10 11:54:16 -04:00
|
|
|
'queries:total{verb="INSERT"} 800',
|
2015-03-10 11:21:03 -04:00
|
|
|
'queries:total{verb="SELECT"} 500',
|
2015-03-04 14:22:14 -05:00
|
|
|
])
|
|
|
|
|
|
|
|
|
2015-03-04 12:34:23 -05:00
|
|
|
class CacheMetricTestCase(unittest.TestCase):
|
2015-03-04 10:47:23 -05:00
|
|
|
|
2015-03-04 12:34:23 -05:00
|
|
|
def test_cache(self):
|
|
|
|
d = dict()
|
2015-03-04 10:47:23 -05:00
|
|
|
|
2015-03-04 12:34:23 -05:00
|
|
|
metric = CacheMetric("cache", lambda: len(d))
|
|
|
|
|
|
|
|
self.assertEquals(metric.render(), [
|
2015-03-06 13:40:20 -05:00
|
|
|
'cache:hits 0',
|
2015-03-09 16:35:33 -04:00
|
|
|
'cache:total 0',
|
2015-03-06 13:40:20 -05:00
|
|
|
'cache:size 0',
|
2015-03-04 10:47:23 -05:00
|
|
|
])
|
|
|
|
|
2015-03-04 12:34:23 -05:00
|
|
|
metric.inc_misses()
|
|
|
|
d["key"] = "value"
|
2015-03-04 10:47:23 -05:00
|
|
|
|
2015-03-04 12:34:23 -05:00
|
|
|
self.assertEquals(metric.render(), [
|
2015-03-06 13:40:20 -05:00
|
|
|
'cache:hits 0',
|
2015-03-09 16:35:33 -04:00
|
|
|
'cache:total 1',
|
2015-03-06 13:40:20 -05:00
|
|
|
'cache:size 1',
|
2015-03-04 10:47:23 -05:00
|
|
|
])
|
|
|
|
|
2015-03-04 12:34:23 -05:00
|
|
|
metric.inc_hits()
|
2015-03-04 10:47:23 -05:00
|
|
|
|
2015-03-04 12:34:23 -05:00
|
|
|
self.assertEquals(metric.render(), [
|
2015-03-06 13:40:20 -05:00
|
|
|
'cache:hits 1',
|
2015-03-09 16:35:33 -04:00
|
|
|
'cache:total 2',
|
2015-03-06 13:40:20 -05:00
|
|
|
'cache:size 1',
|
2015-03-04 10:47:23 -05:00
|
|
|
])
|