workbookreport

<workbookReportConfiguration
>
required

Configuration for workbook report module.

Choice: Choose only ONE of the following
<localWebDriver
>
required
<webDriverExecutable
>
required
string

The path to the web driver executable (e.g.ChromeDriver for Chrome).

</webDriverExecutable>
<webDriverBrowserExecutable
>
required
string

The path to the browser executable (e.g. chrome.exe on Windows for Chrome).

</webDriverBrowserExecutable>
<webDriverPort
>
optional
int

Override the default web driver port allocation, which uses any free port, with a fixed port.

The web driver port is only used internally by Cadenza and bound to localhost, so there should be no external communication with the web driver. Setting a fixed port may be necessary in environments with security policies that require open ports to be listed explicitly, such as SELinux configured restrictively.

When in doubt, do not specify.

</webDriverPort>
</localWebDriver>
<remoteWebDriverUrl
>
required
string

URL of remote web driver. This should point to load balancer or kubernetes service, if multiple web driver instances are part of the deployment.

</remoteWebDriverUrl>
Choice End
<webDriverWaitTimeout
>
optional
duration

The maximum time Cadenza will wait for a report to finish loading. Loading may take some time, especially when complex data queries are involved. That's why the default timeout is PT5M. If you know that your reports only use faster queries, then you may want to decrease the timeout to avoid unnecessary waiting in case of an error.

</webDriverWaitTimeout>
<threadCount
>
optional
int

The maximum number of reports that may be generated in parallel.

Default: 1

</threadCount>
<cadenzaUrl
>
optional
string

Address of cadenza server. Should be used in multi-node environments. This enables Cadenza to delegate compute-intensive report generation to other instances in the cluster. This can be official domain under which Cadenza is deployed, Cadenza reverse proxy url, or kubernetes service url.

</cadenzaUrl>
</workbookReportConfiguration>