| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 | [role="xpack"][testenv="basic"][[pause-export]]== Pausing Data CollectionTo stop generating {monitoring} data in {es}, disable data collection:[source,yaml]---------------------------------------------------xpack.monitoring.collection.enabled: false---------------------------------------------------When this setting is `false`, {es} monitoring data is not collected and all monitoring data from other sources such as {kib}, Beats, and Logstash is ignored.You can update this setting by using the {ref}/cluster-update-settings.html[Cluster Update Settings API].If you want to collect data from sources such as {kib}, Beats, and Logstash butnot collect data about your {es} cluster, you can disable data collectionjust for {es}:[source,yaml]---------------------------------------------------xpack.monitoring.collection.enabled: truexpack.monitoring.elasticsearch.collection.enabled: false---------------------------------------------------If you want to separately disable a specific exporter, you can specify the `enabled` setting (which defaults to `true`) per exporter. For example:[source,yaml]---------------------------------------------------xpack.monitoring.exporters.my_http_exporter:  type: http  host: ["10.1.2.3:9200", "10.1.2.4:9200"]  enabled: false <1>---------------------------------------------------<1> Disable the named exporter. If the same name as an existing exporter is not    used, then this will create a completely new exporter that is completely    ignored. This value can be set dynamically by using cluster settings.NOTE: Defining a disabled exporter prevents the default exporter from being      created.To re-start data collection, re-enable these settings. 
 |