monitoring-settings.asciidoc 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  1. [role="xpack"]
  2. [[monitoring-settings]]
  3. === Monitoring settings in Elasticsearch
  4. ++++
  5. <titleabbrev>Monitoring settings</titleabbrev>
  6. ++++
  7. By default, monitoring is enabled but data collection is disabled. To enable
  8. data collection, use the `xpack.monitoring.collection.enabled` setting.
  9. You can configure these monitoring settings in the `elasticsearch.yml` file. You
  10. can also dynamically set some of these settings using the
  11. <<cluster-update-settings,cluster update settings API>>.
  12. TIP: Cluster settings take precedence over settings in the `elasticsearch.yml`
  13. file.
  14. To adjust how monitoring data is displayed in the monitoring UI, configure
  15. {kibana-ref}/monitoring-settings-kb.html[`xpack.monitoring` settings] in
  16. `kibana.yml`. To control how monitoring data is collected from Logstash,
  17. configure monitoring settings in `logstash.yml`.
  18. For more information, see <<monitor-elasticsearch-cluster>>.
  19. [float]
  20. [[general-monitoring-settings]]
  21. ==== General Monitoring Settings
  22. `xpack.monitoring.enabled`::
  23. Set to `true` (default) to enable {es} {monitoring} for {es} on the node.
  24. +
  25. --
  26. NOTE: To enable data collection, you must also set `xpack.monitoring.collection.enabled`
  27. to `true`. Its default value is `false`.
  28. --
  29. [float]
  30. [[monitoring-collection-settings]]
  31. ==== Monitoring Collection Settings
  32. The `xpack.monitoring.collection` settings control how data is collected from
  33. your Elasticsearch nodes. You can dynamically change all monitoring collection
  34. settings using the <<cluster-update-settings,cluster update settings API>>.
  35. `xpack.monitoring.collection.enabled` (<<cluster-update-settings,Dynamic>>)::
  36. added[6.3.0] Set to `true` to enable the collection of monitoring data. When
  37. this setting is `false` (default), {es} monitoring data is not collected and
  38. all monitoring data from other sources such as {kib}, Beats, and Logstash is
  39. ignored.
  40. `xpack.monitoring.collection.interval` (<<cluster-update-settings,Dynamic>>)::
  41. Setting to `-1` to disable data collection is no longer supported beginning with
  42. 7.0.0. deprecated[6.3.0, Use `xpack.monitoring.collection.enabled` set to `false` instead.]
  43. +
  44. Controls how often data samples are collected. Defaults to `10s`. If you
  45. modify the collection interval, set the `xpack.monitoring.min_interval_seconds`
  46. option in `kibana.yml` to the same value.
  47. `xpack.monitoring.elasticsearch.collection.enabled` (<<cluster-update-settings,Dynamic>>)::
  48. Controls whether statistics about your {es} cluster should be collected. Defaults to `true`.
  49. This is different from xpack.monitoring.collection.enabled, which allows you to enable or disable
  50. all monitoring collection. However, this setting simply disables the collection of Elasticsearch
  51. data while still allowing other data (e.g., Kibana, Logstash, Beats, or APM Server monitoring data)
  52. to pass through this cluster.
  53. `xpack.monitoring.collection.cluster.stats.timeout` (<<cluster-update-settings,Dynamic>>)::
  54. (<<time-units,time value>>) Timeout for collecting the cluster statistics. Defaults to `10s`.
  55. `xpack.monitoring.collection.node.stats.timeout` (<<cluster-update-settings,Dynamic>>)::
  56. (<<time-units,time value>>) Timeout for collecting the node statistics. Defaults to `10s`.
  57. `xpack.monitoring.collection.indices` (<<cluster-update-settings,Dynamic>>)::
  58. Controls which indices Monitoring collects data from. Defaults to all indices. Specify the index names
  59. as a comma-separated list, for example `test1,test2,test3`. Names can include wildcards, for
  60. example `test*`. You can explicitly exclude indices by prepending `-`. For example `test*,-test3` will
  61. monitor all indexes that start with `test` except for `test3`. System indices like .security* or .kibana*
  62. always start with a `.`, and generally should be monitored. Consider adding `.*` to the list of indices
  63. ensure monitoring of system indices. For example `.*,test*,-test3`
  64. `xpack.monitoring.collection.index.stats.timeout` (<<cluster-update-settings,Dynamic>>)::
  65. (<<time-units,time value>>) Timeout for collecting index statistics. Defaults to `10s`.
  66. `xpack.monitoring.collection.index.recovery.active_only` (<<cluster-update-settings,Dynamic>>)::
  67. Controls whether or not all recoveries are collected. Set to `true` to
  68. collect only active recoveries. Defaults to `false`.
  69. `xpack.monitoring.collection.index.recovery.timeout` (<<cluster-update-settings,Dynamic>>)::
  70. (<<time-units,time value>>) Timeout for collecting the recovery information. Defaults to `10s`.
  71. `xpack.monitoring.history.duration` (<<cluster-update-settings,Dynamic>>)::
  72. (<<time-units,time value>>) Retention duration beyond which the indices created by a Monitoring
  73. exporter are automatically deleted. Defaults to `7d` (7 days).
  74. +
  75. --
  76. This setting has a minimum value of `1d` (1 day) to ensure that something is
  77. being monitored, and it cannot be disabled.
  78. IMPORTANT: This setting currently only impacts `local`-type exporters. Indices created using
  79. the `http` exporter will not be deleted automatically.
  80. --
  81. `xpack.monitoring.exporters`::
  82. Configures where the agent stores monitoring data. By default, the agent uses a
  83. local exporter that indexes monitoring data on the cluster where it is installed.
  84. Use an HTTP exporter to send data to a separate monitoring cluster. For more
  85. information, see <<local-exporter-settings,Local exporter settings>>,
  86. <<http-exporter-settings,HTTP exporter settings>>, and
  87. <<how-monitoring-works>>.
  88. [float]
  89. [[local-exporter-settings]]
  90. ==== Local Exporter Settings
  91. The `local` exporter is the default exporter used by Monitoring. As the name is
  92. meant to imply, it exports data to the _local_ cluster, which means that there
  93. is not much needed to be configured.
  94. If you do not supply _any_ exporters, then Monitoring will automatically create
  95. one for you. If any exporter is provided, then no default is added.
  96. [source,yaml]
  97. ----------------------------------
  98. xpack.monitoring.exporters.my_local:
  99. type: local
  100. ----------------------------------
  101. `type`::
  102. The value for a Local exporter must always be `local` and it is required.
  103. `use_ingest`::
  104. Whether to supply a placeholder pipeline to the cluster and a pipeline processor with
  105. every bulk request. The default value is `true`. If disabled, then it means that it will not
  106. use pipelines, which means that a future release cannot automatically upgrade bulk requests
  107. to future-proof them.
  108. `cluster_alerts.management.enabled`::
  109. Whether to create cluster alerts for this cluster. The default value is `true`.
  110. To use this feature, {watcher} must be enabled. If you have a basic license,
  111. cluster alerts are not displayed.
  112. [float]
  113. [[http-exporter-settings]]
  114. ==== HTTP Exporter Settings
  115. The following lists settings that can be supplied with the `http` exporter.
  116. All settings are shown as what follows the name you select for your exporter:
  117. [source,yaml]
  118. ----------------------------------
  119. xpack.monitoring.exporters.my_remote:
  120. type: http
  121. host: ["host:port", ...]
  122. ----------------------------------
  123. `type`::
  124. The value for an HTTP exporter must always be `http` and it is required.
  125. `host`::
  126. Host supports multiple formats, both as an array or as a single value. Supported formats include
  127. `hostname`, `hostname:port`, `http://hostname` `http://hostname:port`, `https://hostname`, and
  128. `https://hostname:port`. Hosts cannot be assumed. The default scheme is always `http` and the default
  129. port is always `9200` if not supplied as part of the `host` string.
  130. +
  131. [source,yaml]
  132. ----------------------------------
  133. xpack.monitoring.exporters:
  134. example1:
  135. type: http
  136. host: "10.1.2.3"
  137. example2:
  138. type: http
  139. host: ["http://10.1.2.4"]
  140. example3:
  141. type: http
  142. host: ["10.1.2.5", "10.1.2.6"]
  143. example4:
  144. type: http
  145. host: ["https://10.1.2.3:9200"]
  146. ----------------------------------
  147. `auth.username`::
  148. The username is required if `auth.secure_password` or `auth.password` is supplied.
  149. `auth.secure_password` (<<secure-settings,Secure>>, <<reloadable-secure-settings,reloadable>>)::
  150. The password for the `auth.username`. Takes precedence over `auth.password` if it is also specified.
  151. `auth.password`::
  152. The password for the `auth.username`. If `auth.secure_password` is also specified, this setting is ignored.
  153. deprecated[7.7.0, Use `auth.secure_password` instead.]
  154. `connection.timeout`::
  155. (<<time-units,time value>>) Amount of time that the HTTP connection is supposed to wait for a socket to open for the
  156. request. The default value is `6s`.
  157. `connection.read_timeout`::
  158. (<<time-units,time value>>) Amount of time that the HTTP connection is supposed to wait for a socket to
  159. send back a response. The default value is `10 * connection.timeout` (`60s` if neither are set).
  160. `ssl`::
  161. Each HTTP exporter can define its own TLS / SSL settings or inherit them. See the
  162. <<ssl-monitoring-settings, TLS / SSL section below>>.
  163. `proxy.base_path`::
  164. The base path to prefix any outgoing request, such as `/base/path` (e.g., bulk requests would
  165. then be sent as `/base/path/_bulk`). There is no default value.
  166. `headers`::
  167. Optional headers that are added to every request, which can assist with routing requests through
  168. proxies.
  169. +
  170. [source,yaml]
  171. ----------------------------------
  172. xpack.monitoring.exporters.my_remote:
  173. headers:
  174. X-My-Array: [abc, def, xyz]
  175. X-My-Header: abc123
  176. ----------------------------------
  177. +
  178. Array-based headers are sent `n` times where `n` is the size of the array. `Content-Type`
  179. and `Content-Length` cannot be set. Any headers created by the Monitoring agent will override
  180. anything defined here.
  181. `index.name.time_format`::
  182. A mechanism for changing the default date suffix for the, by default, daily Monitoring indices.
  183. The default value is `YYYY.MM.DD`, which is why the indices are created daily.
  184. `use_ingest`::
  185. Whether to supply a placeholder pipeline to the monitoring cluster and a pipeline processor with
  186. every bulk request. The default value is `true`. If disabled, then it means that it will not
  187. use pipelines, which means that a future release cannot automatically upgrade bulk requests
  188. to future-proof them.
  189. `cluster_alerts.management.enabled`::
  190. Whether to create cluster alerts for this cluster. The default value is `true`.
  191. To use this feature, {watcher} must be enabled. If you have a basic license,
  192. cluster alerts are not displayed.
  193. `cluster_alerts.management.blacklist`::
  194. Prevents the creation of specific cluster alerts. It also removes any applicable
  195. watches that already exist in the current cluster. +
  196. +
  197. --
  198. You can add any of the following watch identifiers to the blacklist:
  199. * `elasticsearch_cluster_status`
  200. * `elasticsearch_version_mismatch`
  201. * `elasticsearch_nodes`
  202. * `kibana_version_mismatch`
  203. * `logstash_version_mismatch`
  204. * `xpack_license_expiration`
  205. For example: `["elasticsearch_version_mismatch","xpack_license_expiration"]`.
  206. --
  207. [[ssl-monitoring-settings]]
  208. :ssl-prefix: xpack.monitoring.exporters.$NAME
  209. :component: {monitoring}
  210. :verifies:
  211. :server!:
  212. :ssl-context: monitoring
  213. include::ssl-settings.asciidoc[]