HI Team,
I want to configure watcher in my ES 6.4 version.
Before that i have few question and i need answer for it and really appreciate if i can able to rectify my questions.
1. I have 3 master and 3 data node,do i need to configure watcher in both the ES Config YAML file.
2. I already below setup using Xpack security setting FYI,
xpack.security.enabled: true
xpack.security.transport.ssl.enabled: true
xpack.security.transport.ssl.verification_mode: full
xpack.security.transport.ssl.key: certs/hostname.net.key.pem
xpack.security.transport.ssl.certificate: certs/hostname.net.crt.pem
xpack.security.transport.ssl.certificate_authorities: [ "certs/trust_chain.pem" ]
xpack.security.http.ssl.enabled: true
xpack.security.http.ssl.key: certs/hostname.net.key.pem
xpack.security.http.ssl.certificate: certs/hostname.net.crt.pem
xpack.security.http.ssl.certificate_authorities: [ "certs/trust_chain.pem" ]
xpack.monitoring.exporters:
id1:
type: http
host: ["https://hostname.net:9263"]
auth:
username: remote_monitor
password: changeme
ssl:
certificate_authorities: [ "certs/trust_chain.pem" ]
- If i'm adding Xpack watcher setting in my configuration and below setting is enough to trigger mail,
xpack.notification.email.account:
exchange_account:
profile: outlook
email_defaults:
from: elasticsearch@xxx.com
smtp:
auth: true
starttls.enable: true
host: xxx.xxx.com
port: 25
user: elastic
password: xxxxx
I need your opinion on my approach which im making correct or missing anything in config setting.