From 0bfb063c78f8b812788d539809dbd95d2ef7c43d Mon Sep 17 00:00:00 2001 From: Agniva De Sarker Date: Mon, 13 Apr 2020 23:38:57 +0530 Subject: [PATCH] MM-24095: Add IdleTimeout to telemetry (#14279) Automatic Merge --- app/diagnostics.go | 1 + 1 file changed, 1 insertion(+) diff --git a/app/diagnostics.go b/app/diagnostics.go index 017013380f..e42a740c2d 100644 --- a/app/diagnostics.go +++ b/app/diagnostics.go @@ -289,6 +289,7 @@ func (a *App) trackConfig() { "isdefault_tls_key_file": isDefault(*cfg.ServiceSettings.TLSKeyFile, model.SERVICE_SETTINGS_DEFAULT_TLS_KEY_FILE), "isdefault_read_timeout": isDefault(*cfg.ServiceSettings.ReadTimeout, model.SERVICE_SETTINGS_DEFAULT_READ_TIMEOUT), "isdefault_write_timeout": isDefault(*cfg.ServiceSettings.WriteTimeout, model.SERVICE_SETTINGS_DEFAULT_WRITE_TIMEOUT), + "isdefault_idle_timeout": isDefault(*cfg.ServiceSettings.IdleTimeout, model.SERVICE_SETTINGS_DEFAULT_IDLE_TIMEOUT), "isdefault_google_developer_key": isDefault(cfg.ServiceSettings.GoogleDeveloperKey, ""), "isdefault_allow_cors_from": isDefault(*cfg.ServiceSettings.AllowCorsFrom, model.SERVICE_SETTINGS_DEFAULT_ALLOW_CORS_FROM), "isdefault_cors_exposed_headers": isDefault(cfg.ServiceSettings.CorsExposedHeaders, ""),