You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: elasticsearch-config.yml.sample
+7-6
Original file line number
Diff line number
Diff line change
@@ -6,15 +6,16 @@ instances:
6
6
arguments:
7
7
config_path: <absolute path to the ElasticSearch configuration .yml file. (default "/etc/elasticsearch/elasticsearch.yml")>
8
8
hostname: <hostname or IP where Elasticsearch Node is running. (default "localhost")>
9
-
local_hostname: <hostname or IP of the Elasticsearch node from which to collect inventory data. (default "localhost")>
9
+
local_hostname: <(Optional) Hostname or IP of the Elasticsearch node from which to collect inventory data. (default "localhost"). Should only be set if you do not wish to collect inventory data against localhost>
10
10
username: <username for accessing Elasticsearch Node>
11
11
password: <password for the given user.>
12
12
port: <port on which Elasticsearch Node is listening. (default 9200)>
13
13
timeout: <timeout in seconds for an API call (default 30)>
14
-
use_ssl <true or false to use SSL. If true Certificate bundle must be supplied>
15
-
ca_bundle_dir: <directory for certificate authority bundle, must be included if use_ssl is true>
16
-
ca_bundle_file: <file for certificate authority bundle, must be included if use_ssl is true>
17
-
collect_indices <true or false to collect indices metrics. If true collect indices, else do not>
18
-
collect_primaries <true or false to collect primaries metrics. If true collect primaries, else do not>
14
+
use_ssl: <(Optional) true or false to use SSL. If true Certificate bundle must be supplied. (default false)>
15
+
ca_bundle_dir: <(Optional) Required if use_ssl is true. Directory for certificate authority bundle, must be included if use_ssl is true>
16
+
ca_bundle_file: <(Optional) Required if use_ssl is true. File for certificate authority bundle, must be included if use_ssl is true>
17
+
indices_regex: <(Optional) Can be used to filter which indicies are collected. If left blank it will be ignored>
18
+
collect_indices: <(Optional) true or false to collect indices metrics. If true collect indices, else do not. (default true)>
19
+
collect_primaries: <(Optional) true or false to collect primaries metrics. If true collect primaries, else do not. (default true)>
0 commit comments