From 05097f46e7e090ba739a166a6f093d17e1388a0f Mon Sep 17 00:00:00 2001 From: Dan Jaglowski Date: Tue, 4 Jan 2022 15:25:37 -0500 Subject: [PATCH] Add documentation for default values. --- CHANGELOG.md | 1 + extension/storage/filestorage/README.md | 2 ++ 2 files changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a54c3f22717..1377fc4a120b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -37,6 +37,7 @@ - `spanmetricproccessor`: use an LRU cache for the cached Dimensions key-value pairs (#2179) - `skywalkingexporter`: add skywalking metrics exporter (#6528) - `deltatorateprocessor`: add int counter support (#6982) +- `filestorageextension`: document default values (#7022) ## v0.41.0 diff --git a/extension/storage/filestorage/README.md b/extension/storage/filestorage/README.md index 429ad6d5f097..ea58336ea32f 100644 --- a/extension/storage/filestorage/README.md +++ b/extension/storage/filestorage/README.md @@ -7,8 +7,10 @@ The File Storage extension can persist state to the local file system. The extension requires read and write access to a directory. A default directory can be used, but it must already exist in order for the extension to operate. `directory` is the relative or absolute path to the dedicated data storage directory. +The default directory is `%ProgramData%\Otelcol\FileStorage` on Windows and `/var/lib/otelcol/file_storage` otherwise. `timeout` is the maximum time to wait for a file lock. This value does not need to be modified in most circumstances. +The default timeout is `1s`. ```