-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
With this comit we add a config that allows to export monitoring data to a remote cluster (requires Rally 0.9.0) Relates elastic/rally#398
- Loading branch information
1 parent
1b7aa12
commit 7c7be6a
Showing
2 changed files
with
11 additions
and
0 deletions.
There are no files selected for viewing
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,5 @@ | ||
[config] | ||
base=internal_base,monitoring | ||
|
||
[variables] | ||
xpack_monitoring_enabled=true |
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,6 @@ | ||
xpack.monitoring.exporters: | ||
id1: | ||
type: {{monitoring_type}} | ||
host: ["{{monitoring_host}}:{{monitoring_port}}"] | ||
{%- if monitoring_user is defined %}auth.username: {{monitoring_user}}{%- endif %} | ||
{%- if monitoring_password is defined %}auth.password: {{monitoring_password}}{%- endif %} |