Automatic reports - getting only top 20 and how to schedhule monthly

Hi All,

Iam using Xpack for reporting .
Am having a visualisation in kibana and I want to see all the all info in the created datatable, am able to see in kibana but am receiving only top 20 counts in reporting pdf but it has more than that moreover how to schedule it every 1st of the month to generate the previous month data.

Am using this

PUT _xpack/watcher/watch/error_report
{
  "trigger" : {
    "schedule": {
      "interval": "1h"
    }
  },
  "actions" : {
    "email_admin" : { 
      "email": {
        "to": "'Recipient Name <recipient@example.com>'",
        "subject": "Error Monitoring Report",
        "attachments" : {
          "error_report.pdf" : {
            "reporting" : {
              "url": "http://0.0.0.0:5601/api/reporting/generate/dashboard/Error-Monitoring?_g=(time:(from:now-1d%2Fd,mode:quick,to:now))", 
              "retries":6, 
              "interval":"1s", 
              "auth":{ 
                "basic":{
                  "username":"elastic",
                  "password":"changeme"
                }
              }
            }
          }
        }
      }
    }
  }
}

Any help would really helpfull for me.
Thanks i advance ,
Raj

If any one have some ideas please help me

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