From f45f846b379c491ce1bce16f0a618d5ced12c391 Mon Sep 17 00:00:00 2001 From: Polianin Nikita Date: Tue, 5 Aug 2025 16:38:07 +0300 Subject: [PATCH] fix: add properties --- Endpoint/Controllers/SetupConfiguration/SetupController.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Endpoint/Controllers/SetupConfiguration/SetupController.cs b/Endpoint/Controllers/SetupConfiguration/SetupController.cs index d154504..75d1d04 100644 --- a/Endpoint/Controllers/SetupConfiguration/SetupController.cs +++ b/Endpoint/Controllers/SetupConfiguration/SetupController.cs @@ -483,7 +483,9 @@ public class SetupController( { EnableLogToFile = settings.EnableLogToFile, LogFileName = settings.LogFileName, - LogFilePath = settings.LogFilePath + LogFilePath = settings.LogFilePath, + OpenTelemetryEndpoint = settings.OpenTelemetryEndpoint, + OpenTelemetryServiceName = settings.OpenTelemetryServiceName }); return true;