Entire data is not coming in watcher's PDF

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"
                }
              }
            }
          }
        }
      }
    }
  }
}

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.