2018-09-14 10:08:22 -04:00
|
|
|
# Copyright 2018 New Vector Ltd
|
2019-09-09 10:14:58 -04:00
|
|
|
# Copyright 2019 Matrix.org Foundation C.I.C.
|
2018-09-14 10:08:22 -04:00
|
|
|
#
|
|
|
|
# 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.
|
2022-12-28 08:29:35 -05:00
|
|
|
from typing import Dict, Tuple
|
|
|
|
|
2022-10-31 09:02:07 -04:00
|
|
|
from typing_extensions import Protocol
|
|
|
|
|
2022-08-24 07:35:54 -04:00
|
|
|
try:
|
|
|
|
from importlib import metadata
|
|
|
|
except ImportError:
|
|
|
|
import importlib_metadata as metadata # type: ignore[no-redef]
|
2018-09-14 10:08:22 -04:00
|
|
|
|
2022-08-24 07:35:54 -04:00
|
|
|
from unittest.mock import patch
|
|
|
|
|
|
|
|
from pkg_resources import parse_version
|
2022-12-28 08:29:35 -05:00
|
|
|
from prometheus_client.core import Sample
|
2022-08-24 07:35:54 -04:00
|
|
|
|
|
|
|
from synapse.app._base import _set_prometheus_client_use_created_metrics
|
2019-09-09 10:14:58 -04:00
|
|
|
from synapse.metrics import REGISTRY, InFlightGauge, generate_latest
|
2020-10-14 18:25:23 -04:00
|
|
|
from synapse.util.caches.deferred_cache import DeferredCache
|
2018-09-14 10:08:22 -04:00
|
|
|
|
|
|
|
from tests import unittest
|
|
|
|
|
|
|
|
|
2022-12-28 08:29:35 -05:00
|
|
|
def get_sample_labels_value(sample: Sample) -> Tuple[Dict[str, str], float]:
|
2018-12-20 19:24:48 -05:00
|
|
|
"""Extract the labels and values of a sample.
|
|
|
|
|
|
|
|
prometheus_client 0.5 changed the sample type to a named tuple with more
|
|
|
|
members than the plain tuple had in 0.4 and earlier. This function can
|
|
|
|
extract the labels and value from the sample for both sample types.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
sample: The sample to get the labels and value from.
|
|
|
|
Returns:
|
|
|
|
A tuple of (labels, value) from the sample.
|
|
|
|
"""
|
|
|
|
|
|
|
|
# If the sample has a labels and value attribute, use those.
|
|
|
|
if hasattr(sample, "labels") and hasattr(sample, "value"):
|
|
|
|
return sample.labels, sample.value
|
|
|
|
# Otherwise fall back to treating it as a plain 3 tuple.
|
|
|
|
else:
|
2022-12-28 08:29:35 -05:00
|
|
|
# In older versions of prometheus_client Sample was a 3-tuple.
|
|
|
|
labels: Dict[str, str]
|
|
|
|
value: float
|
|
|
|
_, labels, value = sample # type: ignore[misc]
|
2018-12-20 19:24:48 -05:00
|
|
|
return labels, value
|
|
|
|
|
|
|
|
|
2018-09-14 10:08:22 -04:00
|
|
|
class TestMauLimit(unittest.TestCase):
|
2022-12-28 08:29:35 -05:00
|
|
|
def test_basic(self) -> None:
|
2022-10-31 09:02:07 -04:00
|
|
|
class MetricEntry(Protocol):
|
|
|
|
foo: int
|
|
|
|
bar: int
|
|
|
|
|
|
|
|
gauge: InFlightGauge[MetricEntry] = InFlightGauge(
|
2019-05-10 01:12:11 -04:00
|
|
|
"test1", "", labels=["test_label"], sub_metrics=["foo", "bar"]
|
2018-09-14 10:08:22 -04:00
|
|
|
)
|
|
|
|
|
2022-12-28 08:29:35 -05:00
|
|
|
def handle1(metrics: MetricEntry) -> None:
|
2018-09-14 10:08:22 -04:00
|
|
|
metrics.foo += 2
|
|
|
|
metrics.bar = max(metrics.bar, 5)
|
|
|
|
|
2022-12-28 08:29:35 -05:00
|
|
|
def handle2(metrics: MetricEntry) -> None:
|
2018-09-14 10:08:22 -04:00
|
|
|
metrics.foo += 3
|
|
|
|
metrics.bar = max(metrics.bar, 7)
|
|
|
|
|
|
|
|
gauge.register(("key1",), handle1)
|
|
|
|
|
2019-05-10 01:12:11 -04:00
|
|
|
self.assert_dict(
|
|
|
|
{
|
|
|
|
"test1_total": {("key1",): 1},
|
|
|
|
"test1_foo": {("key1",): 2},
|
|
|
|
"test1_bar": {("key1",): 5},
|
|
|
|
},
|
|
|
|
self.get_metrics_from_gauge(gauge),
|
|
|
|
)
|
2018-09-14 10:08:22 -04:00
|
|
|
|
|
|
|
gauge.unregister(("key1",), handle1)
|
|
|
|
|
2019-05-10 01:12:11 -04:00
|
|
|
self.assert_dict(
|
|
|
|
{
|
|
|
|
"test1_total": {("key1",): 0},
|
|
|
|
"test1_foo": {("key1",): 0},
|
|
|
|
"test1_bar": {("key1",): 0},
|
|
|
|
},
|
|
|
|
self.get_metrics_from_gauge(gauge),
|
|
|
|
)
|
2018-09-14 10:08:22 -04:00
|
|
|
|
|
|
|
gauge.register(("key1",), handle1)
|
|
|
|
gauge.register(("key2",), handle2)
|
|
|
|
|
2019-05-10 01:12:11 -04:00
|
|
|
self.assert_dict(
|
|
|
|
{
|
|
|
|
"test1_total": {("key1",): 1, ("key2",): 1},
|
|
|
|
"test1_foo": {("key1",): 2, ("key2",): 3},
|
|
|
|
"test1_bar": {("key1",): 5, ("key2",): 7},
|
|
|
|
},
|
|
|
|
self.get_metrics_from_gauge(gauge),
|
|
|
|
)
|
2018-09-14 10:08:22 -04:00
|
|
|
|
|
|
|
gauge.unregister(("key2",), handle2)
|
|
|
|
gauge.register(("key1",), handle2)
|
|
|
|
|
2019-05-10 01:12:11 -04:00
|
|
|
self.assert_dict(
|
|
|
|
{
|
|
|
|
"test1_total": {("key1",): 2, ("key2",): 0},
|
|
|
|
"test1_foo": {("key1",): 5, ("key2",): 0},
|
|
|
|
"test1_bar": {("key1",): 7, ("key2",): 0},
|
|
|
|
},
|
|
|
|
self.get_metrics_from_gauge(gauge),
|
|
|
|
)
|
2018-09-14 10:08:22 -04:00
|
|
|
|
2022-12-28 08:29:35 -05:00
|
|
|
def get_metrics_from_gauge(
|
|
|
|
self, gauge: InFlightGauge
|
|
|
|
) -> Dict[str, Dict[Tuple[str, ...], float]]:
|
2018-09-14 10:08:22 -04:00
|
|
|
results = {}
|
|
|
|
|
|
|
|
for r in gauge.collect():
|
|
|
|
results[r.name] = {
|
|
|
|
tuple(labels[x] for x in gauge.labels): value
|
2018-12-20 19:24:48 -05:00
|
|
|
for labels, value in map(get_sample_labels_value, r.samples)
|
2018-09-14 10:08:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return results
|
2019-09-09 10:14:58 -04:00
|
|
|
|
|
|
|
|
|
|
|
class BuildInfoTests(unittest.TestCase):
|
2022-12-28 08:29:35 -05:00
|
|
|
def test_get_build(self) -> None:
|
2019-09-09 10:14:58 -04:00
|
|
|
"""
|
|
|
|
The synapse_build_info metric reports the OS version, Python version,
|
|
|
|
and Synapse version.
|
|
|
|
"""
|
|
|
|
items = list(
|
|
|
|
filter(
|
|
|
|
lambda x: b"synapse_build_info{" in x,
|
|
|
|
generate_latest(REGISTRY).split(b"\n"),
|
|
|
|
)
|
|
|
|
)
|
|
|
|
self.assertEqual(len(items), 1)
|
|
|
|
self.assertTrue(b"osversion=" in items[0])
|
|
|
|
self.assertTrue(b"pythonversion=" in items[0])
|
|
|
|
self.assertTrue(b"version=" in items[0])
|
2020-05-11 13:45:23 -04:00
|
|
|
|
|
|
|
|
|
|
|
class CacheMetricsTests(unittest.HomeserverTestCase):
|
2022-12-28 08:29:35 -05:00
|
|
|
def test_cache_metric(self) -> None:
|
2020-05-11 13:45:23 -04:00
|
|
|
"""
|
|
|
|
Caches produce metrics reflecting their state when scraped.
|
|
|
|
"""
|
|
|
|
CACHE_NAME = "cache_metrics_test_fgjkbdfg"
|
2022-10-31 09:02:07 -04:00
|
|
|
cache: DeferredCache[str, str] = DeferredCache(CACHE_NAME, max_entries=777)
|
2020-05-11 13:45:23 -04:00
|
|
|
|
|
|
|
items = {
|
|
|
|
x.split(b"{")[0].decode("ascii"): x.split(b" ")[1].decode("ascii")
|
|
|
|
for x in filter(
|
|
|
|
lambda x: b"cache_metrics_test_fgjkbdfg" in x,
|
|
|
|
generate_latest(REGISTRY).split(b"\n"),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
self.assertEqual(items["synapse_util_caches_cache_size"], "0.0")
|
|
|
|
self.assertEqual(items["synapse_util_caches_cache_max_size"], "777.0")
|
|
|
|
|
|
|
|
cache.prefill("1", "hi")
|
|
|
|
|
|
|
|
items = {
|
|
|
|
x.split(b"{")[0].decode("ascii"): x.split(b" ")[1].decode("ascii")
|
|
|
|
for x in filter(
|
|
|
|
lambda x: b"cache_metrics_test_fgjkbdfg" in x,
|
|
|
|
generate_latest(REGISTRY).split(b"\n"),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
self.assertEqual(items["synapse_util_caches_cache_size"], "1.0")
|
|
|
|
self.assertEqual(items["synapse_util_caches_cache_max_size"], "777.0")
|
2022-08-24 07:35:54 -04:00
|
|
|
|
|
|
|
|
|
|
|
class PrometheusMetricsHackTestCase(unittest.HomeserverTestCase):
|
|
|
|
if parse_version(metadata.version("prometheus_client")) < parse_version("0.14.0"):
|
|
|
|
skip = "prometheus-client too old"
|
|
|
|
|
|
|
|
def test_created_metrics_disabled(self) -> None:
|
|
|
|
"""
|
|
|
|
Tests that a brittle hack, to disable `_created` metrics, works.
|
|
|
|
This involves poking at the internals of prometheus-client.
|
|
|
|
It's not the end of the world if this doesn't work.
|
|
|
|
|
|
|
|
This test gives us a way to notice if prometheus-client changes
|
|
|
|
their internals.
|
|
|
|
"""
|
|
|
|
import prometheus_client.metrics
|
|
|
|
|
|
|
|
PRIVATE_FLAG_NAME = "_use_created"
|
|
|
|
|
|
|
|
# By default, the pesky `_created` metrics are enabled.
|
|
|
|
# Check this assumption is still valid.
|
|
|
|
self.assertTrue(getattr(prometheus_client.metrics, PRIVATE_FLAG_NAME))
|
|
|
|
|
|
|
|
with patch("prometheus_client.metrics") as mock:
|
|
|
|
setattr(mock, PRIVATE_FLAG_NAME, True)
|
|
|
|
_set_prometheus_client_use_created_metrics(False)
|
|
|
|
self.assertFalse(getattr(mock, PRIVATE_FLAG_NAME, False))
|