From a0f1e4bb8288422d8161601f1c0f0575d9f1135e Mon Sep 17 00:00:00 2001 From: Wes Morgan Date: Fri, 5 Sep 2025 12:42:53 -0600 Subject: [PATCH 1/2] Move a config subheading to the correct level This shouldn't break up the "Configuration Options" section --- docs/deployments/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/deployments/configuration.md b/docs/deployments/configuration.md index 569237e9..6205c49e 100644 --- a/docs/deployments/configuration.md +++ b/docs/deployments/configuration.md @@ -709,7 +709,7 @@ logging: logSuccessful: false ``` -## Defining Separate Logging Configurations +#### Defining Separate Logging Configurations Harper's logger supports defining multiple logging configurations for different components in the system. Each logging configuration can be assigned its own `path` (or `root`), `level`, `tag`, and flag to enable/disable logging to `stdStreams`. All logging defaults to the configuration of the "main" logger as configured above, but when logging is configured for different loggers, they will use their own configuration. Separate loggers can be defined: From c5b4c6c824d9382a9e9e8241314868eb388045db Mon Sep 17 00:00:00 2001 From: Wes Morgan Date: Fri, 5 Sep 2025 12:52:00 -0600 Subject: [PATCH 2/2] Document the analytics config params --- docs/deployments/configuration.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/docs/deployments/configuration.md b/docs/deployments/configuration.md index 6205c49e..fe9eb4b8 100644 --- a/docs/deployments/configuration.md +++ b/docs/deployments/configuration.md @@ -1223,6 +1223,26 @@ Using the API: } ``` +### analytics + +`analytics_aggregatePeriod` - _Type_: number; _Default_: 60 (seconds) + +This defines how often recorded metrics in the `system.hdb_raw_analytics` table are aggregated into the `system.hdb_analytics` table. The analytics operations in the operations API exclusively use the aggregated analytics. + +```yaml +analytics: + aggregatePeriod: 60 +``` + +`analytics_replicate` - _Type_: boolean; _Default_: false + +This defines whether or not the aggregated analytics data in `system.hdb_analytics` should be replicated to the rest of the cluster. + +```yaml +analytics: + replicate: true +``` + --- ### Components