2015-02-24 09:30:14 -05:00
|
|
|
# -*- coding: utf-8 -*-
|
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.
|
|
|
|
|
2019-09-06 11:45:51 -04:00
|
|
|
import attr
|
|
|
|
|
2019-09-11 09:00:37 -04:00
|
|
|
from synapse.python_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:
|
2019-09-06 11:45:51 -04:00
|
|
|
known_servers = attr.ib(default=False, validator=attr.validators.instance_of(bool))
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def all_off(cls):
|
|
|
|
"""
|
|
|
|
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"
|
|
|
|
|
2019-06-24 06:34:45 -04:00
|
|
|
def read_config(self, config, **kwargs):
|
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:
|
|
|
|
raise ConfigError(e.message)
|
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
|
|
|
|
2019-06-21 19:00:20 -04:00
|
|
|
def generate_config_section(self, report_stats=None, **kwargs):
|
2018-12-21 10:04:57 -05:00
|
|
|
res = """\
|
2015-04-29 23:24:44 -04:00
|
|
|
## Metrics ###
|
|
|
|
|
|
|
|
# Enable collection and rendering of performance metrics
|
2019-02-19 08:54:29 -05:00
|
|
|
#
|
2019-10-23 08:22:54 -04:00
|
|
|
#enable_metrics: false
|
2019-02-12 08:55:58 -05:00
|
|
|
|
2019-02-13 11:14:37 -05: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 08:54:29 -05:00
|
|
|
#
|
2019-02-12 08:55:58 -05:00
|
|
|
#sentry:
|
|
|
|
# dsn: "..."
|
2019-02-20 08:21:44 -05:00
|
|
|
|
2019-09-06 11:45:51 -04: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 12:38:21 -04:00
|
|
|
# Publish synapse_federation_known_servers, a gauge of the number of
|
2019-09-06 11:45:51 -04:00
|
|
|
# servers this homeserver knows about, including itself. May cause
|
|
|
|
# performance problems on large homeservers.
|
|
|
|
#
|
|
|
|
#known_servers: true
|
|
|
|
|
2019-02-20 08:21:44 -05:00
|
|
|
# Whether or not to report anonymized homeserver usage statistics.
|
2020-05-22 05:11:50 -04:00
|
|
|
#
|
2018-12-21 10:04:57 -05:00
|
|
|
"""
|
|
|
|
|
|
|
|
if report_stats is None:
|
2020-05-22 05:11:50 -04:00
|
|
|
res += "#report_stats: true|false\n"
|
2018-12-21 10:04:57 -05:00
|
|
|
else:
|
2019-06-20 05:32:02 -04:00
|
|
|
res += "report_stats: %s\n" % ("true" if report_stats else "false")
|
2018-12-21 10:04:57 -05:00
|
|
|
|
2019-09-12 06:24:57 -04: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 10:04:57 -05:00
|
|
|
return res
|