summaryrefslogtreecommitdiff
path: root/classes/config.php
diff options
context:
space:
mode:
Diffstat (limited to 'classes/config.php')
-rw-r--r--classes/config.php8
1 files changed, 4 insertions, 4 deletions
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 */