Skip to main content

Agent Configuration Options

The following are various additional configurations for the Pulse Agent.

Reporting Index Mappings

By default, the Pulse Agent will report index mappings so we can analyze them and provide recommendations. However, if you choose not to report those to the Pulse platform, you can disable it in the configurations:

clusters:
- type: opensearch
...
report_index_mappings: false

SSL Configuration

To enable SSL authentication with your OpenSearch cluster, use:

clusters:
- type: opensearch
...
ssl.enabled: true

By default, once SSL has been enabled the cluster server certificate will be validated. This is equivalent to:

clusters:
- type: opensearch
...
ssl.enabled: true
ssl.verification_mode: full

To disable that, use:

    ssl.verification_mode: none