From b486992db1029751546568041d7dc5cda6c3db73 Mon Sep 17 00:00:00 2001 From: Fuyao Zhao Date: Tue, 23 Apr 2019 09:12:26 -0700 Subject: [PATCH] [Code]: Improve code setup guide text --- .../public/components/admin_page/setup_guide.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/x-pack/plugins/code/public/components/admin_page/setup_guide.tsx b/x-pack/plugins/code/public/components/admin_page/setup_guide.tsx index f707f2363c31e..dee813b684e22 100644 --- a/x-pack/plugins/code/public/components/admin_page/setup_guide.tsx +++ b/x-pack/plugins/code/public/components/admin_page/setup_guide.tsx @@ -22,18 +22,18 @@ import { RootState } from '../../reducers'; const steps = [ { - title: 'Configure Kibana Code Instance', + title: 'Configure Kibana Code Instance for Multiple Kibana Nodes', children: (

- You need to configure 1 Kibana instance as Code instance to continue. Please add the - following lines of code into your kibana.yml file for the instance that you want to use as - your Code instance: + If you are using multiple Kibana nodes, then you need to configure 1 Kibana instance as + Code instance. Please add the following line of code into your kibana.yml file for every + instance to indicate your Code instance:

-          xpack.code.codeNode: true
+          xpack.code.codeNodeUrl: 'http://$YourCodeNodeAddress'
         
-

Then, restart that Kibana instance.

+

Then, restart every Kibana instance.

), },