Skip to content

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
dedemorton committed Aug 21, 2020
1 parent ee345fa commit 726f701
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 10 deletions.
3 changes: 2 additions & 1 deletion src/plugins/home/server/tutorials/cloudwatch_logs/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ export function cloudwatchLogsSpecProvider(context: TutorialContext): TutorialSc
an AWS Lambda function. \
[Learn more]({learnMoreLink}).',
values: {
learnMoreLink: '{config.docs.beats.functionbeat}/functionbeat-installation-configuration.html',
learnMoreLink:
'{config.docs.beats.functionbeat}/functionbeat-installation-configuration.html',
},
}),
euiIconType: 'logoAWS',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ export const createFunctionbeatInstructions = (context?: TutorialContext) => ({
}),
textPre: i18n.translate('home.tutorials.common.functionbeatInstructions.install.osxTextPre', {
defaultMessage: 'First time using Functionbeat? See the [Quick Start]({link}).',
values: { link: '{config.docs.beats.functionbeat}/functionbeat-installation-configuration.html' },
values: {
link: '{config.docs.beats.functionbeat}/functionbeat-installation-configuration.html',
},
}),
commands: [
'curl -L -O https://artifacts.elastic.co/downloads/beats/functionbeat/functionbeat-{config.kibana.version}-darwin-x86_64.tar.gz',
Expand All @@ -48,7 +50,9 @@ export const createFunctionbeatInstructions = (context?: TutorialContext) => ({
'home.tutorials.common.functionbeatInstructions.install.linuxTextPre',
{
defaultMessage: 'First time using Functionbeat? See the [Quick Start]({link}).',
values: { link: '{config.docs.beats.functionbeat}/functionbeat-installation-configuration.html' },
values: {
link: '{config.docs.beats.functionbeat}/functionbeat-installation-configuration.html',
},
}
),
commands: [
Expand All @@ -75,7 +79,8 @@ export const createFunctionbeatInstructions = (context?: TutorialContext) => ({
values: {
directoryName: '`functionbeat-{config.kibana.version}-windows`',
folderPath: '`C:\\Program Files`',
functionbeatLink: '{config.docs.beats.functionbeat}/functionbeat-installation-configuration.html',
functionbeatLink:
'{config.docs.beats.functionbeat}/functionbeat-installation-configuration.html',
elasticLink: 'https://www.elastic.co/downloads/beats/functionbeat',
},
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@ export const createHeartbeatInstructions = (context?: TutorialContext) => ({
values: {
directoryName: '`heartbeat-{config.kibana.version}-windows`',
folderPath: '`C:\\Program Files`',
heartbeatLink: '{config.docs.beats.heartbeat}/heartbeat-installation-configuration.html',
heartbeatLink:
'{config.docs.beats.heartbeat}/heartbeat-installation-configuration.html',
elasticLink: 'https://www.elastic.co/downloads/beats/heartbeat',
},
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ export const createMetricbeatInstructions = (context?: TutorialContext) => ({
}),
textPre: i18n.translate('home.tutorials.common.metricbeatInstructions.install.osxTextPre', {
defaultMessage: 'First time using Metricbeat? See the [Quick Start]({link}).',
values: { link: '{config.docs.beats.metricbeat}/metricbeat-installation-configuration.html' },
values: {
link: '{config.docs.beats.metricbeat}/metricbeat-installation-configuration.html',
},
}),
commands: [
'curl -L -O https://artifacts.elastic.co/downloads/beats/metricbeat/metricbeat-{config.kibana.version}-darwin-x86_64.tar.gz',
Expand All @@ -46,7 +48,9 @@ export const createMetricbeatInstructions = (context?: TutorialContext) => ({
}),
textPre: i18n.translate('home.tutorials.common.metricbeatInstructions.install.debTextPre', {
defaultMessage: 'First time using Metricbeat? See the [Quick Start]({link}).',
values: { link: '{config.docs.beats.metricbeat}/metricbeat-installation-configuration.html' },
values: {
link: '{config.docs.beats.metricbeat}/metricbeat-installation-configuration.html',
},
}),
commands: [
'curl -L -O https://artifacts.elastic.co/downloads/beats/metricbeat/metricbeat-{config.kibana.version}-amd64.deb',
Expand All @@ -63,7 +67,9 @@ export const createMetricbeatInstructions = (context?: TutorialContext) => ({
}),
textPre: i18n.translate('home.tutorials.common.metricbeatInstructions.install.rpmTextPre', {
defaultMessage: 'First time using Metricbeat? See the [Quick Start]({link}).',
values: { link: '{config.docs.beats.metricbeat}/metricbeat-installation-configuration.html' },
values: {
link: '{config.docs.beats.metricbeat}/metricbeat-installation-configuration.html',
},
}),
commands: [
'curl -L -O https://artifacts.elastic.co/downloads/beats/metricbeat/metricbeat-{config.kibana.version}-x86_64.rpm',
Expand Down Expand Up @@ -92,7 +98,8 @@ export const createMetricbeatInstructions = (context?: TutorialContext) => ({
values: {
directoryName: '`metricbeat-{config.kibana.version}-windows`',
folderPath: '`C:\\Program Files`',
metricbeatLink: '{config.docs.beats.metricbeat}/metricbeat-installation-configuration.html',
metricbeatLink:
'{config.docs.beats.metricbeat}/metricbeat-installation-configuration.html',
elasticLink: 'https://www.elastic.co/downloads/beats/metricbeat',
},
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ export const createWinlogbeatInstructions = (context?: TutorialContext) => ({
values: {
directoryName: '`winlogbeat-{config.kibana.version}-windows`',
folderPath: '`C:\\Program Files`',
winlogbeatLink: '{config.docs.beats.winlogbeat}/winlogbeat-installation-configuration.html',
winlogbeatLink:
'{config.docs.beats.winlogbeat}/winlogbeat-installation-configuration.html',
elasticLink: 'https://www.elastic.co/downloads/beats/winlogbeat',
},
}
Expand Down

0 comments on commit 726f701

Please sign in to comment.