I am trying to send x pack watcher alerts to an index using YYYY-MM-dd placeholders similar to the way I do in logstash.
eg. my-index-2018-01-01 , my-index-2018-01-02 etc. as a function of todays date.
Something like this:
.....
"index_payload": {
"transform": {
"script": "return [ 'clientId' : ctx.metadata.clientId ,'clientName':'Matts Testing Locations','docType':'watcher-alert','location_pg':'0,0']"
},
"index": {
"index": "my-index-{{YYYY-MM-DD}}",
"doc_type": "doc",
"execution_time_field": "execution_time"
}
But I can't find the right place holder format to use.
Thanks for any help!