我正在尝试使用从elastic.co找到的观察者方法
PUT _xpack/watcher/watch/my_report
{
"trigger" : {
"schedule": {
"interval": "1d"
}
},
"actions" : {
"email_admin" : {
"email": {
"to": "rav_k15@gmail.com",
"subject": "My Report",
"attachments" : {
"my_report.pdf" : {
"reporting" : {
"url": "http://......"
"retries":6,
"interval":"1s",
"auth":{
"basic":{
"username":"elastic",
"password":"password"
}
}
}
}
}
}
}
}
}
我在kibana的开发工具中运行这个程序,得到以下输出:
{
"_id" : "my_report",
"_version" : 2,
"_seq_no" : 1986000,
"_primary_term" : 4,
"created" : false
}
但是报告没有发送到我的邮箱。这里可能有什么问题?
暂无答案!
目前还没有任何答案,快来回答吧!