2016-01-07 04:26:29 +00:00
|
|
|
# Copyright 2015, 2016 OpenMarket Ltd
|
2019-09-07 01:45:51 +10:00
|
|
|
# Copyright 2019 The Matrix.org Foundation C.I.C.
|
2015-02-24 14:30:14 +00: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-07 01:45:51 +10:00
|
|
|
import attr
|
|
|
|
|
2022-04-11 12:07:23 -04:00
|
|
|
from synapse.types import JsonDict
|
2022-03-01 17:44:41 +00:00
|
|
|
from synapse.util.check_dependencies import DependencyException, check_requirements
|
2019-02-12 16:01:41 +00:00
|
|
|
|
2019-09-11 14:00:37 +01:00
|
|
|
from ._base import Config, ConfigError
|
2015-02-24 14:30:14 +00:00
|
|
|
|
|
|
|
|
2019-09-07 01:45:51 +10: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-07 01:45:51 +10:00
|
|
|
|
|
|
|
@classmethod
|
2021-12-09 11:15:46 -05:00
|
|
|
def all_off(cls) -> "MetricsFlags":
|
2019-09-07 01:45:51 +10:00
|
|
|
"""
|
|
|
|
Instantiate the flags with all options set to off.
|
|
|
|
"""
|
|
|
|
return cls(**{x.name: False for x in attr.fields(cls)})
|
|
|
|
|
|
|
|
|
2015-02-24 14:30:14 +00:00
|
|
|
class MetricsConfig(Config):
|
2019-10-10 09:39:35 +01:00
|
|
|
section = "metrics"
|
|
|
|
|
2022-04-11 12:07:23 -04:00
|
|
|
def read_config(self, config: JsonDict, **kwargs: Any) -> None:
|
2019-03-19 10:06:40 +00:00
|
|
|
self.enable_metrics = config.get("enable_metrics", False)
|
2015-09-22 12:57:40 +01: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 17:52:20 +01:00
|
|
|
self.metrics_port = config.get("metrics_port")
|
2015-05-22 14:51:22 +01:00
|
|
|
self.metrics_bind_host = config.get("metrics_bind_host", "127.0.0.1")
|
2015-02-24 14:30:14 +00:00
|
|
|
|
2019-09-07 01:45:51 +10: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 13:55:58 +00:00
|
|
|
self.sentry_enabled = "sentry" in config
|
|
|
|
if self.sentry_enabled:
|
2019-02-12 16:01:41 +00:00
|
|
|
try:
|
2019-09-11 14:00:37 +01:00
|
|
|
check_requirements("sentry")
|
|
|
|
except DependencyException as e:
|
2021-03-16 19:19:27 +01:00
|
|
|
raise ConfigError(
|
|
|
|
e.message # noqa: B306, DependencyException.message is a property
|
|
|
|
)
|
2019-02-12 16:01:41 +00:00
|
|
|
|
2019-02-18 16:53:56 +00:00
|
|
|
self.sentry_dsn = config["sentry"].get("dsn")
|
|
|
|
if not self.sentry_dsn:
|
|
|
|
raise ConfigError(
|
|
|
|
"sentry.dsn field is required when sentry integration is enabled"
|
|
|
|
)
|
2019-02-12 13:55:58 +00:00
|
|
|
|
2022-04-11 12:07:23 -04:00
|
|
|
def generate_config_section(
|
|
|
|
self, report_stats: Optional[bool] = None, **kwargs: Any
|
|
|
|
) -> str:
|
2018-12-21 16:04:57 +01:00
|
|
|
res = """\
|
2015-04-30 04:24:44 +01:00
|
|
|
## Metrics ###
|
|
|
|
|
|
|
|
# Enable collection and rendering of performance metrics
|
2019-02-19 13:54:29 +00:00
|
|
|
#
|
2019-10-23 13:22:54 +01:00
|
|
|
#enable_metrics: false
|
2019-02-12 13:55:58 +00:00
|
|
|
|
2019-02-13 16:14:37 +00:00
|
|
|
# Enable sentry integration
|
|
|
|
# NOTE: While attempts are made to ensure that the logs don't contain
|
|
|
|
# any sensitive information, this cannot be guaranteed. By enabling
|
|
|
|
# this option the sentry server may therefore receive sensitive
|
|
|
|
# information, and it in turn may then diseminate sensitive information
|
|
|
|
# through insecure notification channels if so configured.
|
2019-02-19 13:54:29 +00:00
|
|
|
#
|
2019-02-12 13:55:58 +00:00
|
|
|
#sentry:
|
|
|
|
# dsn: "..."
|
2019-02-20 13:21:44 +00:00
|
|
|
|
2019-09-07 01:45:51 +10:00
|
|
|
# Flags to enable Prometheus metrics which are not suitable to be
|
|
|
|
# enabled by default, either for performance reasons or limited use.
|
|
|
|
#
|
|
|
|
metrics_flags:
|
2020-03-30 17:38:21 +01:00
|
|
|
# Publish synapse_federation_known_servers, a gauge of the number of
|
2019-09-07 01:45:51 +10:00
|
|
|
# servers this homeserver knows about, including itself. May cause
|
|
|
|
# performance problems on large homeservers.
|
|
|
|
#
|
|
|
|
#known_servers: true
|
|
|
|
|
2019-02-20 13:21:44 +00:00
|
|
|
# Whether or not to report anonymized homeserver usage statistics.
|
2020-05-22 10:11:50 +01:00
|
|
|
#
|
2018-12-21 16:04:57 +01:00
|
|
|
"""
|
|
|
|
|
|
|
|
if report_stats is None:
|
2020-05-22 10:11:50 +01:00
|
|
|
res += "#report_stats: true|false\n"
|
2018-12-21 16:04:57 +01:00
|
|
|
else:
|
|
|
|
res += "report_stats: %s\n" % ("true" if report_stats else "false")
|
|
|
|
|
2019-09-12 12:24:57 +02:00
|
|
|
res += """
|
|
|
|
# The endpoint to report the anonymized homeserver usage statistics to.
|
|
|
|
# Defaults to https://matrix.org/report-usage-stats/push
|
|
|
|
#
|
|
|
|
#report_stats_endpoint: https://example.com/report-usage-stats/push
|
|
|
|
"""
|
2018-12-21 16:04:57 +01:00
|
|
|
return res
|