To retrieve a report subscription via the command line, proceed as follows.
You will need the ID of the report subscription. Unfortunately, this is not currently possible via the web interface. You will need to query the database:
|
Make an note of the returned ID.
The report subscription can be run via the command line, using the URL specified in the following system parameter:
Portal.WebServer.StatisticsServlet.URL |
For example:
To execute the subscription, execute a http GET to the URL, replacing <ID> with the report subscriptions ID:
|
If using linux, curl can be installed using the following command:
|
If using Windows, curl can be installed as part of the cygwin package.
Replace <ID> with the ID of the relevant report subscription:
|
If successful, the output will be XML, which contains the filename of the generated report.
For example:
|
If you are using a programming language or script language which can parse XML, then you can extract the filename of the generated report using the following XPath expression:
|
If you are using curl from cygwin or from linux, you can extract the filename using sed as follows:
|
This will return the extracted filename to stdout.