summary refs log tree commit diff
path: root/pyproject.toml
diff options
context:
space:
mode:
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml12
1 files changed, 6 insertions, 6 deletions
diff --git a/pyproject.toml b/pyproject.toml

index 7695ebc252..690e3c07de 100644 --- a/pyproject.toml +++ b/pyproject.toml
@@ -200,13 +200,14 @@ authlib = { version = ">=0.15.1", optional = true } systemd-python = { version = ">=231", optional = true } lxml = { version = ">=4.2.0", optional = true } sentry-sdk = { version = ">=0.7.2", optional = true } -opentracing = { version = ">=2.2.0", optional = true } -jaeger-client = { version = ">=4.0.0", optional = true } txredisapi = { version = ">=1.4.7", optional = true } hiredis = { version = "*", optional = true } Pympler = { version = "*", optional = true } parameterized = { version = ">=0.7.4", optional = true } idna = { version = ">=2.5", optional = true } +opentelemetry-api = {version = "^1.12.0", optional = true} +opentelemetry-sdk = {version = "^1.12.0", optional = true} +opentelemetry-exporter-jaeger = {version = "^1.12.0", optional = true} [tool.poetry.extras] # NB: Packages that should be part of `pip install matrix-synapse[all]` need to be specified @@ -221,7 +222,7 @@ oidc = ["authlib"] systemd = ["systemd-python"] url-preview = ["lxml"] sentry = ["sentry-sdk"] -opentracing = ["jaeger-client", "opentracing"] +opentelemetry = ["opentelemetry-api", "opentelemetry-sdk", "opentelemetry-exporter-jaeger"] jwt = ["authlib"] # hiredis is not a *strict* dependency, but it makes things much faster. # (if it is not installed, we fall back to slow code.) @@ -254,8 +255,8 @@ all = [ "lxml", # sentry "sentry-sdk", - # opentracing - "jaeger-client", "opentracing", + # opentelemetry + "opentelemetry-api", "opentelemetry-sdk", "opentelemetry-exporter-jaeger", # redis "txredisapi", "hiredis", # cache-memory @@ -279,7 +280,6 @@ mypy-zope = "*" types-bleach = ">=4.1.0" types-commonmark = ">=0.9.2" types-jsonschema = ">=3.2.0" -types-opentracing = ">=2.4.2" types-Pillow = ">=8.3.4" types-psycopg2 = ">=2.9.9" types-pyOpenSSL = ">=20.0.7"