forked from elastic/kibana
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Multiply edits to the Beats tutorials (#21)
* Updated Nginx module * Updated MySQL logs module * Updated system logs module * Correct the on_prem_cloud enable steps * Updated the Nginx metrics tutorial and added screenshot * Updated the Apache metrics module + screenshot * Updated the MySQL metrics module + screenshot * Updated the system metrics module + screenshot
- Loading branch information
Showing
47 changed files
with
1,096 additions
and
426 deletions.
There are no files selected for viewing
40 changes: 40 additions & 0 deletions
40
src/core_plugins/kibana/common/tutorials/metricbeat_cloud_instructions.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
export const METRICBEAT_CLOUD_INSTRUCTIONS = { | ||
CONFIG: { | ||
OSX: { | ||
title: 'Edit the configuration', | ||
textPre: 'Modify `metricbeat.yml` to set the connection information for Elastic Cloud:', | ||
commands: [ | ||
'cloud.id: "{config.cloud.id}"', | ||
'cloud.auth: "elastic:<password>"' | ||
], | ||
textPost: 'Where `<password>` is the password of the `elastic` user.' | ||
}, | ||
DEB: { | ||
title: 'Edit the configuration', | ||
textPre: 'Modify `/etc/metricbeat/metricbeat.yml` to set the connection information for Elastic Cloud:', | ||
commands: [ | ||
'cloud.id: "{config.cloud.id}"', | ||
'cloud.auth: "elastic:<password>"' | ||
], | ||
textPost: 'Where `<password>` is the password of the `elastic` user.' | ||
}, | ||
RPM: { | ||
title: 'Edit the configuration', | ||
textPre: 'Modify `/etc/metricbeat/metricbeat.yml` to set the connection information for Elastic Cloud:', | ||
commands: [ | ||
'cloud.id: "{config.cloud.id}"', | ||
'cloud.auth: "elastic:<password>"' | ||
], | ||
textPost: 'Where `<password>` is the password of the `elastic` user.' | ||
}, | ||
WINDOWS: { | ||
title: 'Edit the configuration', | ||
textPre: 'Modify `C:\\Program Files\\Filebeat\\metricbeat.yml` to set the connection information for Elastic Cloud:', | ||
commands: [ | ||
'cloud.id: "{config.cloud.id}"', | ||
'cloud.auth: "elastic:<password>"' | ||
], | ||
textPost: 'Where `<password>` is the password of the `elastic` user.' | ||
} | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file added
BIN
+448 KB
...ore_plugins/kibana/public/home/tutorial_resources/apache_metrics/screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+225 KB
src/core_plugins/kibana/public/home/tutorial_resources/mysql_logs/screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+406 KB
...core_plugins/kibana/public/home/tutorial_resources/mysql_metrics/screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+328 KB
src/core_plugins/kibana/public/home/tutorial_resources/nginx_logs/screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+343 KB
...core_plugins/kibana/public/home/tutorial_resources/nginx_metrics/screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+382 KB
src/core_plugins/kibana/public/home/tutorial_resources/system_logs/screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+550 KB
...ore_plugins/kibana/public/home/tutorial_resources/system_metrics/screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
src/core_plugins/kibana/server/tutorials/apache_metrics/enable.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
export const ENABLE_INSTRUCTIONS = { | ||
OSX: { | ||
title: 'Enable and configure the apache module', | ||
textPre: 'From the installation directory, run:', | ||
commands: [ | ||
'./metricbeat modules enable apache', | ||
], | ||
textPost: 'Modify the settings in the `modules.d/apache.yml` file.' | ||
}, | ||
DEB: { | ||
title: 'Enable and configure the apache module', | ||
commands: [ | ||
'sudo metricbeat modules enable apache', | ||
], | ||
textPost: 'Modify the settings in the `/etc/metricbeat/modules.d/apache.yml` file.' | ||
}, | ||
RPM: { | ||
title: 'Enable and configure the apache module', | ||
commands: [ | ||
'sudo metricbeat modules enable apache', | ||
], | ||
textPost: 'Modify the settings in the `/etc/metricbeat/modules.d/apache.yml` file.' | ||
}, | ||
WINDOWS: { | ||
title: 'Enable and configure the apache module', | ||
textPre: 'From the `C:\\Program Files\\Metricbeat` folder, run:', | ||
commands: [ | ||
'PS C:\\Program Files\\Metricbeat> metricbeat.exe modules enable apache', | ||
], | ||
textPost: 'Modify the settings in the `modules.d/apache.yml` file.' | ||
} | ||
}; |
Oops, something went wrong.