@netlify/agent-runner-cli 1.185.0 → 1.187.0-count-api-reqs.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -7,3 +7,16 @@ Everyone is a developer. `@netlify/agent-runner-cli` powers Netlify users to tur
7
7
  ## Contributing
8
8
 
9
9
  See [CONTRIBUTING.md](CONTRIBUTING.md) for dev setup, testing, and release process.
10
+
11
+ ## Debugging a run
12
+
13
+ Logs are in Humio under `$aro()`, the macro for `agent_runner=true | kvParse(msg)` — every orchestrator line, with the
14
+ logfmt fields of `run.started`, `run.finished` and `api.request` parsed out and queryable.
15
+
16
+ ```
17
+ $aro() | agent_runner_id=<id>
18
+ $aro() | event=run.finished | top(outcome)
19
+ $aro() | severity=error | top(orchestrator_version)
20
+ ```
21
+
22
+ See [Observability](https://app.notion.com/p/3e61da88359a81bcb2d8c9f58dbb32ef) for the rest and what each field means.