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