From cdd7ad020e165fe680703b6d3319b908b682fb7a Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 20 Oct 2023 17:12:29 +0300 Subject: jaeger-client -> opentelemetry --- classes/config.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'classes/config.php') diff --git a/classes/config.php b/classes/config.php index a8fc97124..302a5763e 100644 --- a/classes/config.php +++ b/classes/config.php @@ -193,10 +193,10 @@ class Config { const HTTP_429_THROTTLE_INTERVAL = "HTTP_429_THROTTLE_INTERVAL"; /** host running Jaeger collector to receive traces (disabled if empty) */ - const JAEGER_REPORTING_HOST = "JAEGER_REPORTING_HOST"; + const OPENTELEMETRY_HOST = "OPENTELEMETRY_HOST"; /** Jaeger service name */ - const JAEGER_SERVICE_NAME = "JAEGER_SERVICE_NAME"; + const OPENTELEMETRY_SERVICE = "OPENTELEMETRY_SERVICE"; /** default values for all global configuration options */ private const _DEFAULTS = [ @@ -255,8 +255,8 @@ class Config { Config::HTTP_USER_AGENT => [ 'Tiny Tiny RSS/%s (https://tt-rss.org/)', Config::T_STRING ], Config::HTTP_429_THROTTLE_INTERVAL => [ 3600, Config::T_INT ], - Config::JAEGER_REPORTING_HOST => [ "", Config::T_STRING ], - Config::JAEGER_SERVICE_NAME => [ "tt-rss", Config::T_STRING ], + Config::OPENTELEMETRY_HOST => [ "", Config::T_STRING ], + Config::OPENTELEMETRY_SERVICE => [ "tt-rss", Config::T_STRING ], ]; /** @var Config|null */ -- cgit v1.2.3