From 6b8b7e12a87d09fb8930da0dbf1d07fe74e1c4e5 Mon Sep 17 00:00:00 2001 From: kaiyan-sheng Date: Tue, 12 Feb 2019 11:01:20 -0700 Subject: [PATCH] Remove requirements for geoip and user-agent plugins --- .../core_plugins/kibana/server/tutorials/apache_logs/index.js | 4 ++-- .../core_plugins/kibana/server/tutorials/nginx_logs/index.js | 4 ++-- .../core_plugins/kibana/server/tutorials/system_logs/index.js | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/legacy/core_plugins/kibana/server/tutorials/apache_logs/index.js b/src/legacy/core_plugins/kibana/server/tutorials/apache_logs/index.js index cce2343500d02..acf34756b0b64 100644 --- a/src/legacy/core_plugins/kibana/server/tutorials/apache_logs/index.js +++ b/src/legacy/core_plugins/kibana/server/tutorials/apache_logs/index.js @@ -23,8 +23,8 @@ import { onPremInstructions, cloudInstructions, onPremCloudInstructions } from ' export function apacheLogsSpecProvider(server, context) { const moduleName = 'apache2'; - const geoipRequired = true; - const uaRequired = true; + const geoipRequired = false; + const uaRequired = false; const platforms = ['OSX', 'DEB', 'RPM', 'WINDOWS']; return { id: 'apacheLogs', diff --git a/src/legacy/core_plugins/kibana/server/tutorials/nginx_logs/index.js b/src/legacy/core_plugins/kibana/server/tutorials/nginx_logs/index.js index 03e7454b60b8c..9d8ce6a6b6a64 100644 --- a/src/legacy/core_plugins/kibana/server/tutorials/nginx_logs/index.js +++ b/src/legacy/core_plugins/kibana/server/tutorials/nginx_logs/index.js @@ -23,8 +23,8 @@ import { onPremInstructions, cloudInstructions, onPremCloudInstructions } from ' export function nginxLogsSpecProvider(server, context) { const moduleName = 'nginx'; - const geoipRequired = true; - const uaRequired = true; + const geoipRequired = false; + const uaRequired = false; const platforms = ['OSX', 'DEB', 'RPM', 'WINDOWS']; return { id: 'nginxLogs', diff --git a/src/legacy/core_plugins/kibana/server/tutorials/system_logs/index.js b/src/legacy/core_plugins/kibana/server/tutorials/system_logs/index.js index 54f295ecb44f8..7ae9cbe22c463 100644 --- a/src/legacy/core_plugins/kibana/server/tutorials/system_logs/index.js +++ b/src/legacy/core_plugins/kibana/server/tutorials/system_logs/index.js @@ -23,7 +23,7 @@ import { onPremInstructions, cloudInstructions, onPremCloudInstructions } from ' export function systemLogsSpecProvider(server, context) { const moduleName = 'system'; - const geoipRequired = true; + const geoipRequired = false; const uaRequired = false; const platforms = ['OSX', 'DEB', 'RPM']; return {