| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- [#save-logs]
- = Saving logs
- By default, OliveTin only keeps logs in memory, meaning that if you restart OliveTin your logs will be lost. For some use cases this is acceptable, but you can configure OliveTin to save logs for you.
- When `saveLogs` is enabled, OliveTin writes a file for each configured directory when an execution finishes — a results YAML when `resultsDirectory` is set, and an output log when `outputDirectory` is set. If only one directory is configured, only that file type is written. This includes blocked runs (for example when concurrency or rate limits prevent the action from starting).
- You can configure the global setting for saving logs, or override it on a per-action basis;
- [source,yaml]
- .`config.yaml`
- ----
- saveLogs:
- resultsDirectory: /var/log/OliveTin/results/
- outputDirectory: /var/log/OliveTin/output/
- actions:
- # This will use the default `saveLogs` setting.
- - title: date
- shell: date
- # This will override the default `saveLogs` setting.
- - title: date2
- shell: date
- saveLogs:
- resultsDirectory: /logs/
- outputDirectory: /logs/
- ----
- From the above example, you can see there There are two types of logs - **results (.yaml)** and **output (.log)**
- Filenames are built from the action title, a unix timestamp, and the execution tracking ID. Characters that are unsafe in filenames (for example `/` and `\`) are replaced with `_` so titles like `Create/update Monthly Report` still write a single file. The original title is unchanged inside the results YAML.
- * **Results (.yaml)** - this captures almost everything that OliveTin knows about the action and looks like this.
- +
- [source,yaml]
- .Example results - date.1714333384.5e2dc9e5-b6b3-445b-bff9-c2082b0bbbb2.yaml
- ----
- datetimestarted: 2024-04-28T20:43:04.426754136+01:00
- datetimefinished: 2024-04-28T20:43:04.436596926+01:00
- stdout: |
- Sun 28 Apr 20:43:04 BST 2024
- stderr: ""
- timedout: false
- blocked: false
- exitcode: 0
- tags: []
- executionstarted: true
- executionfinished: true
- executiontrackingid: 5e2dc9e5-b6b3-445b-bff9-c2082b0bbbb2
- process:
- pid: 4168638
- actiontitle: date
- actionicon: '😀'
- actionid: d3cf6e25-8bab-432d-b4f9-e6f531b2b67b
- ----
- * **output (.log)** - this just captures the output - stdout, stderr from an execution,
- +
- [source]
- .Example output - date.1714333384.5e2dc9e5-b6b3-445b-bff9-c2082b0bbbb2.log
- ----
- Sun 28 Apr 20:43:04 BST 2024
- ----
|