我在kibana开发工具中创建了一个观察者,但这不起作用:
我正在尝试使用从elastic.co找到的观察者方法
PUT _xpack/watcher/watch/report
{
"trigger" : {
"schedule": {
"interval": "1d"
}
},
"actions" : {
"email_admin" : {
"email": {
"to": "vk@gmail.com",
"subject": "My Report",
"attachments" : {
"report.csv" : {
"reporting" : {
"url": "http://......"
"retries":6,
"interval":"1s",
"auth":{
"basic":{
"username":"elastic",
"password":"password"
}
}
}
}
}
}
}
}
}
我在kibana的开发工具中运行这个程序,得到以下输出:
{
"_id" : "report",
"_version" : 2,
"_seq_no" : 2985600,
"_primary_term" : 4,
"created" : false
}
它显示http状态为200,但报告未发送到我的电子邮件id。问题是什么?
暂无答案!
目前还没有任何答案,快来回答吧!