# 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
![Screenshot 2025-02-06 at 11.44.44.png](/assets/screenshot-2025-02-06-at-11.44.44.cb1457c7206221a7cba865a1dccd3c1623276090e0fd08ca0257e60b41b2a9fe.8bed52ad.png)
  - There is an error in the configure-api-monitoring.md. Instead of:



```markdown

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:


```markdown

1. To each `trigger`, add:
    * an `event` option with `schedule` as its value
```

- Help needs improvement and more example.