workbookreport
This configuration is required when using the plugin WorkbookReport.
-
Documentation
-
YAML Format
-
XML Format
| Fill relevant inputs (blue boxes) and click the blue bars on the left to copy XML configuration snippets. |
Configuration for workbook report module.
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.
ISO 8601 Duration Format
Format: P[n]Y[n]M[n]DT[n]H[n]M[n]S
- P is the duration designator (period) placed at the start of the duration representation
- Y is the number of years
- M is the number of months
- D is the number of days
- T is the time designator that precedes the time components
- H is the number of hours
- M is the number of minutes
- S is the number of seconds
Examples:
PT5M- 5 minutesPT1H30M- 1 hour and 30 minutesP1D- 1 dayP1Y2M3DT4H5M6S- 1 year, 2 months, 3 days, 4 hours, 5 minutes, and 6 seconds
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.
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.
| This is a generated sample file with fake data and all the possible options shown, refer to the Documentation tab for what combinations are valid and what is required or not. |
cadenzaconfig:
settings:
workbookreport:
localWebDriver:
webDriverExecutable: "text"
webDriverBrowserExecutable: "text"
webDriverPort: 15
remoteWebDriverUrl: "text"
webDriverWaitTimeout: "P2DT3M"
threadCount: 15
cadenzaUrl: "text"
Filename: workbookreport-config.xml
| This is a generated sample file with fake data and all the possible options shown, refer to the Documentation tab for what combinations are valid and what is required or not. |
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<workbookReportConfiguration>
<localWebDriver>
<webDriverExecutable>text</webDriverExecutable>
<webDriverBrowserExecutable>text</webDriverBrowserExecutable>
<webDriverPort>15</webDriverPort>
</localWebDriver>
<remoteWebDriverUrl>text</remoteWebDriverUrl>
<webDriverWaitTimeout>P2DT3M</webDriverWaitTimeout>
<threadCount>15</threadCount>
<cadenzaUrl>text</cadenzaUrl>
</workbookReportConfiguration>