From d75180c3411b726292454ccc284eb451868015de Mon Sep 17 00:00:00 2001 From: TwiN Date: Sun, 29 Jan 2023 16:47:25 -0500 Subject: [PATCH] docs: Clarify what the storage is used for Resolves #411 --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index e113e67b..d8b59e0e 100644 --- a/README.md +++ b/README.md @@ -296,6 +296,9 @@ Here are some examples of conditions you can use: | `storage.type` | Type of storage. Valid types: `memory`, `sqlite`, `postgres`. | `"memory"` | | `storage.caching` | Whether to use write-through caching. Improves loading time for large dashboards.
Only supported if `storage.type` is `sqlite` or `postgres` | `false` | +The results for each endpoint health check as well as the data for uptime and the past events must be persisted +so that they can be displayed on the dashboard. These parameters allow you to configure the storage in question. + - If `storage.type` is `memory` (default): ```yaml # Note that this is the default value, and you can omit the storage configuration altogether to achieve the same result.