Hello,
I have set up a basic watcher which will generate a PDF every 10min, but when I get a PDF on my mail it is like only a screenshot of that dashboard, the entire data is not coming.
In the dashboard, I have a table but the entire values in the table are not coming.
Here is a watcher snippet:
PUT _watcher/watch/new_watch
{
"trigger" : {
"schedule": {
"interval": "10m"
}
},
"actions" : {
"email_admin" : {
"email": {
"to": "demo@mail.com",
"subject": "dashboard PDF",
"attachments" : {
"dashboard.pdf" : {
"reporting" : {
"url": "dashboard Post Url",
"retries":40,
"interval":"15s",
"auth":{
"basic":{
"username":"elastic",
"password":"password"
}
}
}
}
}
}
}
}
}