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 7532c205cde38..224b6282f9ca6 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 = 'apache'; - 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 88c7fe85b094a..afae04736beea 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 314ec06a5cf05..51b067b35c095 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 {