Project 33
Uptime: 83.4%
What made you smile?
- Configuration was not overly complicated
What did you find confusing?
The link does not lead to proper documentation page: https://redocly.com/docs/realm/setup/how-to/ It should be https://redocly.com/docs/realm/setup/how-to/configure-monitoring
- There is an error in the configure-api-monitoring.md. Instead of:
1. To each `trigger`, add:
* an `agent` option with `spot` as its value
* (Optional) an `interval` option with a [specified period](../../config/reunite.md#trigger-object) as its value; if you don't define an interval, the job runs every hour by default
See the following example:
```yaml {% title="redocly.yaml" %}
reunite:
jobs:
- path: '/arazzo-jobs/reports/weekly.yaml'
agent: spot
trigger:
event: schedule
interval: 7d
- path: '/arazzo-jobs/cleanup/monthly.yaml'
agent: spot
trigger:
event: schedule
interval: 30d
it should be:
1. To each `trigger`, add:
* an `event` option with `schedule` as its value
- Help needs improvement and more example.