Hi everyone
I have installed Elasticsearch with Kibana and fluentd.
now I want to send my logs to slack and I follow this doc (Watcher Slack Action | Elasticsearch Guide [8.13] | Elastic).
when I add
"actions" : {
"notify-slack" : {
"transform" : { ... },
"throttle_period" : "5m",
"slack" : {
"message" : {
"to" : [ "#admins", "@chief-admin" ],
"text" : "Encountered {{ctx.payload.hits.total}} errors in the last 5 minutes (facepalm)"
}
}
}
}
my container could not run.
the error log is:
unknown setting [actions.notify-slack.slack.message.text] please check that any required plugins are installed, or check the breaking changes documentation for removed settings\n\tat org.elasticsearch.server@8.13.1
Thnks for your help.