summaryrefslogtreecommitdiff
path: root/classes/config.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2023-10-20 17:12:29 +0300
committerAndrew Dolgov <[email protected]>2023-10-20 21:13:39 +0300
commitcdd7ad020e165fe680703b6d3319b908b682fb7a (patch)
treeb51eb09b7b4587e8fbc5624ac8d88d28cfcd0b04 /classes/config.php
parent45a9ff0c88cbd33892ff16ab837e9059937d656e (diff)
jaeger-client -> opentelemetry
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 */