From adba7d5d46a2f74681822de99f5b0d5ffb84ca82 Mon Sep 17 00:00:00 2001 From: PavithraCP Date: Sun, 18 Oct 2020 19:17:53 -0400 Subject: [PATCH] Fix bug in logs UI link --- x-pack/plugins/monitoring/server/lib/ccs_utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugins/monitoring/server/lib/ccs_utils.js b/x-pack/plugins/monitoring/server/lib/ccs_utils.js index 649611742df2c..56a6da8e2d0a3 100644 --- a/x-pack/plugins/monitoring/server/lib/ccs_utils.js +++ b/x-pack/plugins/monitoring/server/lib/ccs_utils.js @@ -40,7 +40,7 @@ export function prefixIndexPattern(config, indexPattern, ccs, monitoringIndicesO if (isFunction(config.get)) { ccsEnabled = config.get('monitoring.ui.ccs.enabled'); } else { - ccsEnabled = get(config, 'monitoring.ui.ccs.enabled'); + ccsEnabled = get(config, 'ui.ccs.enabled'); } if (!ccsEnabled || !ccs) {