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..1c03e7ccbcfe2 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,9 @@ 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 {