Hi Team,
I have created an Advanced watcher alert in which a dashboard will be shared as pdf to the mentioned email id's.
As my dashboard contains too many visuals and the index pattern used for dashboard holds large volume of data, my dashboard is coming with incompleted visuals in the pdf.
Is there a way that I can schedule the dashboards, to be shared as pdf in watcher. The dashboard should load the visuals completed before going in the mail as pdf.
My code:
"actions":
{
"EMail": {
"email": {
"profile": "standard",
"attachments": {
"test.pdf": {
"reporting": {
"url": "Not shared the URL",
"retries": 40,
"interval": "60s",
"auth": {
"basic": {
"username": "xxxx",
"password": "xxxxx"
}
}
}
}
},
"from": "xxxxxxxxx",
"priority": "high",
"to": [
"xxxxxx"
],
"subject": "xxxxxxxxxxxx",
"body": {
"text": """
Random text
"""
}
}
}
}
}
Thanks in Advance