From c1b3c99667c743d63317748d6338647eaf213184 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sun, 9 Apr 2023 21:20:35 +0300 Subject: some tracer class fixes / unhardcode jaeger IP --- classes/config.php | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'classes/config.php') diff --git a/classes/config.php b/classes/config.php index dee6caa38..a9c75ae7b 100644 --- a/classes/config.php +++ b/classes/config.php @@ -192,6 +192,9 @@ class Config { /** delay updates for this feed if received HTTP 429 (Too Many Requests) for this amount of seconds (base value, actual delay is base...base*2) */ 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"; + /** default values for all global configuration options */ private const _DEFAULTS = [ Config::DB_TYPE => [ "pgsql", Config::T_STRING ], @@ -249,6 +252,7 @@ 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 ], ]; /** @var Config|null */ -- cgit v1.2.3