Watcher settings in Elasticsearchedit

You configure Watcher settings to set up Watcher and send notifications via email, Slack, and PagerDuty.

All of these settings can be added to the elasticsearch.yml configuration file, with the exception of the secure settings, which you add to the Elasticsearch keystore. For more information about creating and updating the Elasticsearch keystore, see Secure settings. Dynamic settings can also be updated across a cluster with the cluster update settings API.

General Watcher Settingsedit

xpack.watcher.enabled
(Static) Set to false to disable Watcher on the node.
xpack.watcher.encrypt_sensitive_data logo cloud
(Static) Set to true to encrypt sensitive data. If this setting is enabled, you must also specify the xpack.watcher.encryption_key setting. For more information, see Encrypting sensitive data in Watcher.
xpack.watcher.encryption_key
(Secure) Specifies the path to a file that contains a key for encrypting sensitive data. If xpack.watcher.encrypt_sensitive_data is set to true, this setting is required. For more information, see Encrypting sensitive data in Watcher.
xpack.watcher.history.cleaner_service.enabled logo cloud

(Dynamic) [6.3.0] Added in 6.3.0. Default changed to true. [7.0.0] Deprecated in 7.0.0. Watcher history indices are now managed by the watch-history-ilm-policy ILM policy

Set to true (default) to enable the cleaner service. The cleaner service removes previous versions of Watcher indices (for example, .watcher-history*) when it determines that they are old. The duration of Watcher indices is determined by the xpack.monitoring.history.duration setting, which defaults to 7 days. For more information about that setting, see Monitoring settings.

xpack.http.proxy.host
(Static) Specifies the address of the proxy server to use to connect to HTTP services.
xpack.http.proxy.port
(Static) Specifies the port number to use to connect to the proxy server.
xpack.http.proxy.scheme
(Static) Protocol used to communicate with the proxy server. Valid values are http and https. Defaults to the protocol used in the request.
xpack.http.default_connection_timeout
(Static) The maximum period to wait until abortion of the request, when a connection is being initiated.
xpack.http.default_read_timeout
(Static) The maximum period of inactivity between two data packets, before the request is aborted.
xpack.http.tcp.keep_alive
(Static) Whether to enable TCP keepalives on HTTP connections. Defaults to true.
xpack.http.connection_pool_ttl
(Static) The time-to-live of connections in the connection pool. If a connection is not re-used within this timeout, it is closed. By default, the time-to-live is infinite meaning that connections never expire.
xpack.http.max_response_size
(Static) Specifies the maximum size an HTTP response is allowed to have, defaults to 10mb, the maximum configurable value is 50mb.
xpack.http.whitelist
(Dynamic) A list of URLs, that the internal HTTP client is allowed to connect to. This client is used in the HTTP input, the webhook, the slack, pagerduty, and jira actions. This setting can be updated dynamically. It defaults to * allowing everything. Note: If you configure this setting and you are using one of the slack/pagerduty actions, you have to ensure that the corresponding endpoints are explicitly allowed as well.

Watcher HTTP TLS/SSL settingsedit

You can configure the following TLS/SSL settings.

xpack.http.ssl.supported_protocols

(Static) Supported protocols with versions. Valid protocols: SSLv2Hello, SSLv3, TLSv1, TLSv1.1, TLSv1.2, TLSv1.3. If the JVM’s SSL provider supports TLSv1.3, the default is TLSv1.3,TLSv1.2,TLSv1.1. Otherwise, the default is TLSv1.2,TLSv1.1.

Elasticsearch relies on your JDK’s implementation of SSL and TLS. View Supported SSL/TLS versions by JDK version for more information.

If xpack.security.fips_mode.enabled is true, you cannot use SSLv2Hello or SSLv3. See FIPS 140-2.

xpack.http.ssl.verification_mode

(Static) Controls the verification of certificates. Controls the verification of certificates.

Valid values are:

  • full, which verifies that the provided certificate is signed by a trusted authority (CA) and also verifies that the server’s hostname (or IP address) matches the names identified within the certificate.
  • certificate, which verifies that the provided certificate is signed by a trusted authority (CA), but does not perform any hostname verification.
  • none, which performs no verification of the server’s certificate. This mode disables many of the security benefits of SSL/TLS and should only be used after very careful consideration. It is primarily intended as a temporary diagnostic mechanism when attempting to resolve TLS errors; its use on production clusters is strongly discouraged.

    The default value is full.

xpack.http.ssl.cipher_suites

(Static) Supported cipher suites vary depending on which version of Java you use. For example, for version 12 the default value is TLS_AES_256_GCM_SHA384, TLS_AES_128_GCM_SHA256, TLS_CHACHA20_POLY1305_SHA256, TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384, TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384, TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256, TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256, TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384, TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256, TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA, TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, TLS_RSA_WITH_AES_256_GCM_SHA384, TLS_RSA_WITH_AES_128_GCM_SHA256, TLS_RSA_WITH_AES_256_CBC_SHA256, TLS_RSA_WITH_AES_128_CBC_SHA256, TLS_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_AES_128_CBC_SHA.

For more information, see Oracle’s Java Cryptography Architecture documentation.

Watcher HTTP TLS/SSL key and trusted certificate settingsedit

The following settings are used to specify a private key, certificate, and the trusted certificates that should be used when communicating over an SSL/TLS connection. A private key and certificate are optional and would be used if the server requires client authentication for PKI authentication.

PEM encoded filesedit

When using PEM encoded files, use the following settings:

xpack.http.ssl.key

(Static) Path to a PEM encoded file containing the private key.

If HTTP client authentication is required, it uses this file. You cannot use this setting and ssl.keystore.path at the same time.

xpack.http.ssl.key_passphrase

(Static) The passphrase that is used to decrypt the private key. Since the key might not be encrypted, this value is optional.

You cannot use this setting and ssl.secure_key_passphrase at the same time.

xpack.http.ssl.secure_key_passphrase
(Secure) The passphrase that is used to decrypt the private key. Since the key might not be encrypted, this value is optional.
xpack.http.ssl.certificate

(Static) Specifies the path for the PEM encoded certificate (or certificate chain) that is associated with the key.

This setting can be used only if ssl.key is set.

xpack.http.ssl.certificate_authorities

(Static) List of paths to PEM encoded certificate files that should be trusted.

This setting and ssl.truststore.path cannot be used at the same time.

Java keystore filesedit

When using Java keystore files (JKS), which contain the private key, certificate and certificates that should be trusted, use the following settings:

xpack.http.ssl.keystore.path

(Static) The path for the keystore file that contains a private key and certificate.

It must be either a Java keystore (jks) or a PKCS#12 file. You cannot use this setting and ssl.key at the same time.

xpack.http.ssl.keystore.password
(Static) The password for the keystore.
xpack.http.ssl.keystore.secure_password
(Secure) The password for the keystore.
xpack.http.ssl.keystore.key_password

(Static) The password for the key in the keystore. The default is the keystore password.

You cannot use this setting and ssl.keystore.secure_password at the same time.

xpack.http.ssl.keystore.secure_key_password
(Secure) The password for the key in the keystore. The default is the keystore password.
xpack.http.ssl.truststore.path

(Static) The path for the keystore that contains the certificates to trust. It must be either a Java keystore (jks) or a PKCS#12 file.

You cannot use this setting and ssl.certificate_authorities at the same time.

xpack.http.ssl.truststore.password

(Static) The password for the truststore.

You cannot use this setting and ssl.truststore.secure_password at the same time.

xpack.http.ssl.truststore.secure_password
(Secure) Password for the truststore.

PKCS#12 filesedit

Elasticsearch can be configured to use PKCS#12 container files (.p12 or .pfx files) that contain the private key, certificate and certificates that should be trusted.

PKCS#12 files are configured in the same way as Java keystore files:

xpack.http.ssl.keystore.path

(Static) The path for the keystore file that contains a private key and certificate.

It must be either a Java keystore (jks) or a PKCS#12 file. You cannot use this setting and ssl.key at the same time.

xpack.http.ssl.keystore.type
(Static) The format of the keystore file. It must be either jks or PKCS12. If the keystore path ends in ".p12", ".pfx", or ".pkcs12", this setting defaults to PKCS12. Otherwise, it defaults to jks.
xpack.http.ssl.keystore.password
(Static) The password for the keystore.
xpack.http.ssl.keystore.secure_password
(Secure) The password for the keystore.
xpack.http.ssl.keystore.key_password

(Static) The password for the key in the keystore. The default is the keystore password.

You cannot use this setting and ssl.keystore.secure_password at the same time.

xpack.http.ssl.keystore.secure_key_password
(Secure) The password for the key in the keystore. The default is the keystore password.
xpack.http.ssl.truststore.path

(Static) The path for the keystore that contains the certificates to trust. It must be either a Java keystore (jks) or a PKCS#12 file.

You cannot use this setting and ssl.certificate_authorities at the same time.

xpack.http.ssl.truststore.type
(Static) Set this to PKCS12 to indicate that the truststore is a PKCS#12 file.
xpack.http.ssl.truststore.password

(Static) The password for the truststore.

You cannot use this setting and ssl.truststore.secure_password at the same time.

xpack.http.ssl.truststore.secure_password
(Secure) Password for the truststore.

PKCS#11 tokensedit

Elasticsearch can be configured to use a PKCS#11 token that contains the private key, certificate and certificates that should be trusted.

PKCS#11 token require additional configuration on the JVM level and can be enabled via the following settings:

xpack.http.keystore.type
(Static) Set this to PKCS11 to indicate that the PKCS#11 token should be used as a keystore.
xpack.http.truststore.type
(Static) The format of the truststore file. For the Java keystore format, use jks. For PKCS#12 files, use PKCS12. For a PKCS#11 token, use PKCS11. The default is jks.

When configuring the PKCS#11 token that your JVM is configured to use as a keystore or a truststore for Elasticsearch, the PIN for the token can be configured by setting the appropriate value to ssl.truststore.password or ssl.truststore.secure_password in the context that you are configuring. Since there can only be one PKCS#11 token configured, only one keystore and truststore will be usable for configuration in Elasticsearch. This in turn means that only one certificate can be used for TLS both in the transport and the http layer.

Email Notification Settingsedit

You can configure the following email notification settings in elasticsearch.yml. For more information about sending notifications via email, see Configuring email actions.

xpack.notification.email.default_account

(Dynamic) Default email account to use.

If you configure multiple email accounts, you must either configure this setting or specify the email account to use in the email action. See Configuring email accounts.

xpack.notification.email.account

Specifies account information for sending notifications via email. You can specify the following email account attributes:

profile
(Dynamic) The email profile to use to build the MIME messages that are sent from the account. Valid values: standard, gmail and outlook. Defaults to standard.
email_defaults.*
(Dynamic) An optional set of email attributes to use as defaults for the emails sent from the account. See Email action attributes for the supported attributes.
smtp.auth
(Dynamic) Set to true to attempt to authenticate the user using the AUTH command. Defaults to false.
smtp.host
(Dynamic) The SMTP server to connect to. Required.
smtp.port
(Dynamic) The SMTP server port to connect to. Defaults to 25.
smtp.user
(Dynamic) The user name for SMTP. Required.
smtp.secure_password
(Secure, reloadable) The password for the specified SMTP user.
smtp.starttls.enable
(Dynamic) Set to true to enable the use of the STARTTLS command (if supported by the server) to switch the connection to a TLS-protected connection before issuing any login commands. Note that an appropriate trust store must be configured so that the client will trust the server’s certificate. Defaults to false.
smtp.starttls.required
(Dynamic) If true, then STARTTLS will be required. If that command fails, the connection will fail. Defaults to false.
smtp.ssl.trust
(Dynamic) A list of SMTP server hosts that are assumed trusted and for which certificate verification is disabled. If set to "*", all hosts are trusted. If set to a whitespace separated list of hosts, those hosts are trusted. Otherwise, trust depends on the certificate the server presents.
smtp.timeout
(Dynamic) The socket read timeout. Default is two minutes.
smtp.connection_timeout
(Dynamic) The socket connection timeout. Default is two minutes.
smtp.write_timeout
(Dynamic) The socket write timeout. Default is two minutes.
smtp.local_address
(Dynamic) A configurable local address when sending emails. Not configured by default.
smtp.local_port
(Dynamic) A configurable local port when sending emails. Not configured by default.
smtp.send_partial
(Dynamic) Send an email, despite one of the receiver addresses being invalid.
smtp.wait_on_quit
(Dynamic) If set to false the QUIT command is sent and the connection closed. If set to true, the QUIT command is sent and a reply is waited for. True by default.
xpack.notification.email.html.sanitization.allow

Specifies the HTML elements that are allowed in email notifications. For more information, see Configuring HTML sanitization options. You can specify individual HTML elements and the following HTML feature groups:

_tables
(Static) All table related elements: <table>, <th>, <tr>, <td>, <caption>, <col>, <colgroup>, <thead>, <tbody>, and <tfoot>.
_blocks
(Static) The following block elements: <p>, <div>, <h1>, <h2>, <h3>, <h4>, <h5>, <h6>, <ul>, <ol>, <li>, and <blockquote>.
_formatting
(Static) The following inline formatting elements: <b>, <i>, <s>, <u>, <o>, <sup>, <sub>, <ins>, <del>, <strong>, <strike>, <tt>, <code>, <big>, <small>, <hr>, <br>, <span>, and <em>.
_links
(Static) The <a> element with an href attribute that points to a URL using the following protocols: http, https and mailto.
_styles
(Static) The style attribute on all elements. Note that CSS attributes are also sanitized to prevent XSS attacks.
img
img:all
(Static) All images (external and embedded).
img:embedded
(Static) Only embedded images. Embedded images can only use the cid: URL protocol in their src attribute.
xpack.notification.email.html.sanitization.disallow
(Static) Specifies the HTML elements that are NOT allowed in email notifications. You can specify individual HTML elements and HTML feature groups.
xpack.notification.email.html.sanitization.enabled
(Static) Set to false to completely disable HTML sanitation. Not recommended. Defaults to true.
xpack.notification.reporting.warning.kbn-csv-contains-formulas.text
(Dynamic) Specifies a custom message, which is sent if the formula verification criteria for CSV files from Kibana’s xpack.reporting.csv.checkForFormulas is true. Use %s in the message as a placeholder for the filename. Defaults to Warning: The attachment [%s] contains characters which spreadsheet applications may interpret as formulas. Please ensure that the attachment is safe prior to opening.

Watcher Email TLS/SSL settingsedit

You can configure the following TLS/SSL settings.

xpack.notification.email.ssl.supported_protocols

(Static) Supported protocols with versions. Valid protocols: SSLv2Hello, SSLv3, TLSv1, TLSv1.1, TLSv1.2, TLSv1.3. If the JVM’s SSL provider supports TLSv1.3, the default is TLSv1.3,TLSv1.2,TLSv1.1. Otherwise, the default is TLSv1.2,TLSv1.1.

Elasticsearch relies on your JDK’s implementation of SSL and TLS. View Supported SSL/TLS versions by JDK version for more information.

If xpack.security.fips_mode.enabled is true, you cannot use SSLv2Hello or SSLv3. See FIPS 140-2.

xpack.notification.email.ssl.verification_mode

(Static) Controls the verification of certificates. Controls the verification of certificates.

Valid values are:

  • full, which verifies that the provided certificate is signed by a trusted authority (CA) and also verifies that the server’s hostname (or IP address) matches the names identified within the certificate.
  • certificate, which verifies that the provided certificate is signed by a trusted authority (CA), but does not perform any hostname verification.
  • none, which performs no verification of the server’s certificate. This mode disables many of the security benefits of SSL/TLS and should only be used after very careful consideration. It is primarily intended as a temporary diagnostic mechanism when attempting to resolve TLS errors; its use on production clusters is strongly discouraged.

    The default value is full.

xpack.notification.email.ssl.cipher_suites

(Static) Supported cipher suites vary depending on which version of Java you use. For example, for version 12 the default value is TLS_AES_256_GCM_SHA384, TLS_AES_128_GCM_SHA256, TLS_CHACHA20_POLY1305_SHA256, TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384, TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384, TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256, TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256, TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384, TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256, TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA, TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, TLS_RSA_WITH_AES_256_GCM_SHA384, TLS_RSA_WITH_AES_128_GCM_SHA256, TLS_RSA_WITH_AES_256_CBC_SHA256, TLS_RSA_WITH_AES_128_CBC_SHA256, TLS_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_AES_128_CBC_SHA.

For more information, see Oracle’s Java Cryptography Architecture documentation.

Watcher Email TLS/SSL key and trusted certificate settingsedit

The following settings are used to specify a private key, certificate, and the trusted certificates that should be used when communicating over an SSL/TLS connection. A private key and certificate are optional and would be used if the server requires client authentication for PKI authentication.

PEM encoded filesedit

When using PEM encoded files, use the following settings:

xpack.notification.email.ssl.key

(Static) Path to a PEM encoded file containing the private key.

If HTTP client authentication is required, it uses this file. You cannot use this setting and ssl.keystore.path at the same time.

xpack.notification.email.ssl.key_passphrase

(Static) The passphrase that is used to decrypt the private key. Since the key might not be encrypted, this value is optional.

You cannot use this setting and ssl.secure_key_passphrase at the same time.

xpack.notification.email.ssl.secure_key_passphrase
(Secure) The passphrase that is used to decrypt the private key. Since the key might not be encrypted, this value is optional.
xpack.notification.email.ssl.certificate

(Static) Specifies the path for the PEM encoded certificate (or certificate chain) that is associated with the key.

This setting can be used only if ssl.key is set.

xpack.notification.email.ssl.certificate_authorities

(Static) List of paths to PEM encoded certificate files that should be trusted.

This setting and ssl.truststore.path cannot be used at the same time.

Java keystore filesedit

When using Java keystore files (JKS), which contain the private key, certificate and certificates that should be trusted, use the following settings:

xpack.notification.email.ssl.keystore.path

(Static) The path for the keystore file that contains a private key and certificate.

It must be either a Java keystore (jks) or a PKCS#12 file. You cannot use this setting and ssl.key at the same time.

xpack.notification.email.ssl.keystore.password
(Static) The password for the keystore.
xpack.notification.email.ssl.keystore.secure_password
(Secure) The password for the keystore.
xpack.notification.email.ssl.keystore.key_password

(Static) The password for the key in the keystore. The default is the keystore password.

You cannot use this setting and ssl.keystore.secure_password at the same time.

xpack.notification.email.ssl.keystore.secure_key_password
(Secure) The password for the key in the keystore. The default is the keystore password.
xpack.notification.email.ssl.truststore.path

(Static) The path for the keystore that contains the certificates to trust. It must be either a Java keystore (jks) or a PKCS#12 file.

You cannot use this setting and ssl.certificate_authorities at the same time.

xpack.notification.email.ssl.truststore.password

(Static) The password for the truststore.

You cannot use this setting and ssl.truststore.secure_password at the same time.

xpack.notification.email.ssl.truststore.secure_password
(Secure) Password for the truststore.

PKCS#12 filesedit

Elasticsearch can be configured to use PKCS#12 container files (.p12 or .pfx files) that contain the private key, certificate and certificates that should be trusted.

PKCS#12 files are configured in the same way as Java keystore files:

xpack.notification.email.ssl.keystore.path

(Static) The path for the keystore file that contains a private key and certificate.

It must be either a Java keystore (jks) or a PKCS#12 file. You cannot use this setting and ssl.key at the same time.

xpack.notification.email.ssl.keystore.type
(Static) The format of the keystore file. It must be either jks or PKCS12. If the keystore path ends in ".p12", ".pfx", or ".pkcs12", this setting defaults to PKCS12. Otherwise, it defaults to jks.
xpack.notification.email.ssl.keystore.password
(Static) The password for the keystore.
xpack.notification.email.ssl.keystore.secure_password
(Secure) The password for the keystore.
xpack.notification.email.ssl.keystore.key_password

(Static) The password for the key in the keystore. The default is the keystore password.

You cannot use this setting and ssl.keystore.secure_password at the same time.

xpack.notification.email.ssl.keystore.secure_key_password
(Secure) The password for the key in the keystore. The default is the keystore password.
xpack.notification.email.ssl.truststore.path

(Static) The path for the keystore that contains the certificates to trust. It must be either a Java keystore (jks) or a PKCS#12 file.

You cannot use this setting and ssl.certificate_authorities at the same time.

xpack.notification.email.ssl.truststore.type
(Static) Set this to PKCS12 to indicate that the truststore is a PKCS#12 file.
xpack.notification.email.ssl.truststore.password

(Static) The password for the truststore.

You cannot use this setting and ssl.truststore.secure_password at the same time.

xpack.notification.email.ssl.truststore.secure_password
(Secure) Password for the truststore.

PKCS#11 tokensedit

Elasticsearch can be configured to use a PKCS#11 token that contains the private key, certificate and certificates that should be trusted.

PKCS#11 token require additional configuration on the JVM level and can be enabled via the following settings:

xpack.notification.email.keystore.type
(Static) Set this to PKCS11 to indicate that the PKCS#11 token should be used as a keystore.
xpack.notification.email.truststore.type
(Static) The format of the truststore file. For the Java keystore format, use jks. For PKCS#12 files, use PKCS12. For a PKCS#11 token, use PKCS11. The default is jks.

When configuring the PKCS#11 token that your JVM is configured to use as a keystore or a truststore for Elasticsearch, the PIN for the token can be configured by setting the appropriate value to ssl.truststore.password or ssl.truststore.secure_password in the context that you are configuring. Since there can only be one PKCS#11 token configured, only one keystore and truststore will be usable for configuration in Elasticsearch. This in turn means that only one certificate can be used for TLS both in the transport and the http layer.

Slack Notification Settingsedit

You can configure the following Slack notification settings in elasticsearch.yml. For more information about sending notifications via Slack, see Configuring Slack actions.

xpack.notification.slack.default_account

(Dynamic) Default Slack account to use.

If you configure multiple Slack accounts, you must either configure this setting or specify the Slack account to use in the slack action. See Configuring Slack Accounts.

xpack.notification.slack.account

Specifies account information for sending notifications via Slack. You can specify the following Slack account attributes:

secure_url
(Secure, reloadable) The Incoming Webhook URL to use to post messages to Slack. Required.
message_defaults

Default values for Slack message attributes.

from
(Dynamic) The sender name to display in the Slack message. Defaults to the watch ID.
to
(Dynamic) The default Slack channels or groups you want to send messages to.
icon
(Dynamic) The icon to display in the Slack messages. Overrides the incoming webhook’s configured icon. Accepts a public URL to an image.
text
(Dynamic) The default message content.
attachment
(Dynamic) Default message attachments. Slack message attachments enable you to create more richly-formatted messages. Specified as an array as defined in the Slack attachments documentation.

Jira Notification Settingsedit

You can configure the following Jira notification settings in elasticsearch.yml. For more information about using notifications to create issues in Jira, see Configuring Jira actions.

xpack.notification.jira.default_account

(Dynamic) Default Jira account to use.

If you configure multiple Jira accounts, you must either configure this setting or specify the Jira account to use in the jira action. See Configuring Jira accounts.

xpack.notification.jira.account

Specifies account information for using notifications to create issues in Jira. You can specify the following Jira account attributes:

allow_http
(Dynamic) If false, Watcher rejects URL settings that use a HTTP protocol. Defaults to false.
secure_url
(Secure, reloadable) The URL of the Jira Software server. Required.
secure_user
(Secure, reloadable) The name of the user to connect to the Jira Software server. Required.
secure_password
(Secure, reloadable) The password of the user to connect to the Jira Software server. Required.
issue_defaults
(Dynamic) Default fields values for the issue created in Jira. See Jira action attributes for more information. Optional.

PagerDuty Notification Settingsedit

You can configure the following PagerDuty notification settings in elasticsearch.yml. For more information about sending notifications via PagerDuty, see Configuring PagerDuty actions.

xpack.notification.pagerduty.default_account

(Dynamic) Default PagerDuty account to use.

If you configure multiple PagerDuty accounts, you must either configure this setting or specify the PagerDuty account to use in the pagerduty action. See Configuring PagerDuty accounts.

xpack.notification.pagerduty.account

Specifies account information for sending notifications via PagerDuty. You can specify the following PagerDuty account attributes:

name
(Static) A name for the PagerDuty account associated with the API key you are using to access PagerDuty. Required.
secure_service_api_key
(Secure, reloadable) The PagerDuty API key to use to access PagerDuty. Required.
event_defaults

Default values for PagerDuty event attributes. Optional.

description
(Dynamic) A string that contains the default description for PagerDuty events. If no default is configured, each PagerDuty action must specify a description.
incident_key
(Dynamic) A string that contains the default incident key to use when sending PagerDuty events.
client
(Dynamic) A string that specifies the default monitoring client.
client_url
(Dynamic) The URL of the default monitoring client.
event_type
(Dynamic) The default event type. Valid values: trigger,resolve, acknowledge.
attach_payload
(Dynamic) Whether or not to provide the watch payload as context for the event by default. Valid values: true, false.