Remove old dashboard instructions (#21147) (#21159)

This commit is contained in:
Søren Louv-Jansen 2018-07-24 22:30:54 +02:00 committed by GitHub
parent 20c97e56cb
commit e0546dbda3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 20 deletions

View file

@ -30,23 +30,12 @@ export const EDIT_CONFIG = {
],
};
const IMPORT_DASHBOARD = {
title: 'Import dashboards',
textPre: 'APM Server ships with preconfigured dashboards.',
};
const START_SERVER = {
title: 'Start APM Server',
textPre:
'The server processes and stores application performance metrics in Elasticsearch.',
};
export const IMPORT_DASHBOARD_UNIX = {
title: IMPORT_DASHBOARD.title,
textPre: IMPORT_DASHBOARD.textPre,
commands: ['./apm-server setup'],
};
export const START_SERVER_UNIX = {
title: START_SERVER.title,
textPre: START_SERVER.textPre,
@ -102,11 +91,6 @@ export const WINDOWS_SERVER_INSTRUCTIONS = [
'Note: If script execution is disabled on your system, you need to set the execution policy for the current session' +
' to allow the script to run. For example: `PowerShell.exe -ExecutionPolicy UnRestricted -File .\\install-service-apm-server.ps1`.',
},
{
title: IMPORT_DASHBOARD.title,
textPre: IMPORT_DASHBOARD.textPre,
commands: ['apm-server.exe setup'],
},
EDIT_CONFIG,
{
title: START_SERVER.title,

View file

@ -20,7 +20,6 @@
import { INSTRUCTION_VARIANT } from '../../../common/tutorials/instruction_variant';
import {
WINDOWS_SERVER_INSTRUCTIONS,
IMPORT_DASHBOARD_UNIX,
EDIT_CONFIG,
START_SERVER_UNIX,
DOWNLOAD_SERVER_RPM,
@ -49,7 +48,6 @@ export function onPremInstructions(apmIndexPattern) {
id: INSTRUCTION_VARIANT.OSX,
instructions: [
DOWNLOAD_SERVER_OSX,
IMPORT_DASHBOARD_UNIX,
EDIT_CONFIG,
START_SERVER_UNIX,
],
@ -58,7 +56,6 @@ export function onPremInstructions(apmIndexPattern) {
id: INSTRUCTION_VARIANT.DEB,
instructions: [
DOWNLOAD_SERVER_DEB,
IMPORT_DASHBOARD_UNIX,
EDIT_CONFIG,
START_SERVER_UNIX,
],
@ -67,7 +64,6 @@ export function onPremInstructions(apmIndexPattern) {
id: INSTRUCTION_VARIANT.RPM,
instructions: [
DOWNLOAD_SERVER_RPM,
IMPORT_DASHBOARD_UNIX,
EDIT_CONFIG,
START_SERVER_UNIX,
],