2016-01-07 05:26:29 +01:00
|
|
|
# Copyright 2015, 2016 OpenMarket Ltd
|
2019-09-06 17:45:51 +02:00
|
|
|
# Copyright 2019 The Matrix.org Foundation C.I.C.
|
2015-02-24 15:30:14 +01: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-04-11 18:07:23 +02:00
|
|
|
from typing import Any, Optional
|
|
|
|
|
2019-09-06 17:45:51 +02:00
|
|
|
import attr
|
|
|
|
|
2022-04-11 18:07:23 +02:00
|
|
|
from synapse.types import JsonDict
|
2022-06-30 19:48:04 +02:00
|
|
|
from synapse.util.check_dependencies import check_requirements
|
2019-02-12 17:01:41 +01:00
|
|
|
|
2019-09-11 15:00:37 +02:00
|
|
|
from ._base import Config, ConfigError
|
2015-02-24 15:30:14 +01:00
|
|
|
|
|
|
|
|
2019-09-06 17:45:51 +02:00
|
|
|
@attr.s
|
2020-09-04 12:54:56 +02:00
|
|
|
class MetricsFlags:
|
2021-12-09 17:15:46 +01:00
|
|
|
known_servers: bool = attr.ib(
|
|
|
|
default=False, validator=attr.validators.instance_of(bool)
|
|
|
|
)
|
2019-09-06 17:45:51 +02:00
|
|
|
|
|
|
|
@classmethod
|
2021-12-09 17:15:46 +01:00
|
|
|
def all_off(cls) -> "MetricsFlags":
|
2019-09-06 17:45:51 +02:00
|
|
|
"""
|
|
|
|
Instantiate the flags with all options set to off.
|
|
|
|
"""
|
|
|
|
return cls(**{x.name: False for x in attr.fields(cls)})
|
|
|
|
|
|
|
|
|
2015-02-24 15:30:14 +01:00
|
|
|
class MetricsConfig(Config):
|
2019-10-10 10:39:35 +02:00
|
|
|
section = "metrics"
|
|
|
|
|
2022-04-11 18:07:23 +02:00
|
|
|
def read_config(self, config: JsonDict, **kwargs: Any) -> None:
|
2019-03-19 11:06:40 +01:00
|
|
|
self.enable_metrics = config.get("enable_metrics", False)
|
2015-09-22 13:57:40 +02:00
|
|
|
self.report_stats = config.get("report_stats", None)
|
2019-09-12 12:24:57 +02:00
|
|
|
self.report_stats_endpoint = config.get(
|
|
|
|
"report_stats_endpoint", "https://matrix.org/report-usage-stats/push"
|
|
|
|
)
|
2015-04-30 18:52:20 +02:00
|
|
|
self.metrics_port = config.get("metrics_port")
|
2015-05-22 15:51:22 +02:00
|
|
|
self.metrics_bind_host = config.get("metrics_bind_host", "127.0.0.1")
|
2015-02-24 15:30:14 +01:00
|
|
|
|
2019-09-06 17:45:51 +02:00
|
|
|
if self.enable_metrics:
|
|
|
|
_metrics_config = config.get("metrics_flags") or {}
|
|
|
|
self.metrics_flags = MetricsFlags(**_metrics_config)
|
|
|
|
else:
|
|
|
|
self.metrics_flags = MetricsFlags.all_off()
|
|
|
|
|
2019-02-12 14:55:58 +01:00
|
|
|
self.sentry_enabled = "sentry" in config
|
|
|
|
if self.sentry_enabled:
|
2022-06-30 19:48:04 +02:00
|
|
|
check_requirements("sentry")
|
2019-02-12 17:01:41 +01:00
|
|
|
|
2019-02-18 17:53:56 +01:00
|
|
|
self.sentry_dsn = config["sentry"].get("dsn")
|
|
|
|
if not self.sentry_dsn:
|
|
|
|
raise ConfigError(
|
2019-06-20 11:32:02 +02:00
|
|
|
"sentry.dsn field is required when sentry integration is enabled"
|
2019-02-18 17:53:56 +01:00
|
|
|
)
|
2019-02-12 14:55:58 +01:00
|
|
|
|
2022-04-11 18:07:23 +02:00
|
|
|
def generate_config_section(
|
|
|
|
self, report_stats: Optional[bool] = None, **kwargs: Any
|
|
|
|
) -> str:
|
2022-06-14 16:53:42 +02:00
|
|
|
if report_stats is not None:
|
|
|
|
res = "report_stats: %s\n" % ("true" if report_stats else "false")
|
2018-12-21 16:04:57 +01:00
|
|
|
else:
|
2022-06-14 16:53:42 +02:00
|
|
|
res = "\n"
|
2018-12-21 16:04:57 +01:00
|
|
|
return res
|