Update Filebeat tutorials to instruct users to enable filesets (#137803) (#137925)

(cherry picked from commit 755fad11be)

Co-authored-by: DeDe Morton <dede.morton@elastic.co>
This commit is contained in:
Kibana Machine 2022-08-02 20:58:27 -04:00 committed by GitHub
parent 00e0f7740c
commit 3eaa727e74
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -399,7 +399,8 @@ export function filebeatEnableInstructions(moduleName: string) {
}),
commands: ['./filebeat modules enable ' + moduleName],
textPost: i18n.translate('home.tutorials.common.filebeatEnableInstructions.osxTextPost', {
defaultMessage: 'Modify the settings in the `modules.d/{moduleName}.yml` file.',
defaultMessage:
'Modify the settings in the `modules.d/{moduleName}.yml` file. You must enable at least one fileset.',
values: { moduleName },
}),
},
@ -411,7 +412,7 @@ export function filebeatEnableInstructions(moduleName: string) {
commands: ['sudo filebeat modules enable ' + moduleName],
textPost: i18n.translate('home.tutorials.common.filebeatEnableInstructions.debTextPost', {
defaultMessage:
'Modify the settings in the `/etc/filebeat/modules.d/{moduleName}.yml` file.',
'Modify the settings in the `/etc/filebeat/modules.d/{moduleName}.yml` file. You must enable at least one fileset.',
values: { moduleName },
}),
},
@ -423,7 +424,7 @@ export function filebeatEnableInstructions(moduleName: string) {
commands: ['sudo filebeat modules enable ' + moduleName],
textPost: i18n.translate('home.tutorials.common.filebeatEnableInstructions.rpmTextPost', {
defaultMessage:
'Modify the settings in the `/etc/filebeat/modules.d/{moduleName}.yml` file.',
'Modify the settings in the `/etc/filebeat/modules.d/{moduleName}.yml` file. You must enable at least one fileset.',
values: { moduleName },
}),
},
@ -438,7 +439,8 @@ export function filebeatEnableInstructions(moduleName: string) {
}),
commands: ['filebeat.exe modules enable ' + moduleName],
textPost: i18n.translate('home.tutorials.common.filebeatEnableInstructions.windowsTextPost', {
defaultMessage: 'Modify the settings in the `modules.d/{moduleName}.yml` file.',
defaultMessage:
'Modify the settings in the `modules.d/{moduleName}.yml` file. You must enable at least one fileset.',
values: { moduleName },
}),
},