summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOdysseas Lamtzidis <odyslam@gmail.com>2021-03-11 14:53:24 +0200
committerGitHub <noreply@github.com>2021-03-11 14:53:24 +0200
commit3cd33a6ca7d2850e28189d08bedb312793793501 (patch)
treeb84c26a996bffb9446a35e2dbb50823bafece664
parent68b1e3d56b554cfa92e894863ee98e74f5e16e0c (diff)
comment out memory mode mention in exampleOdysLam-patch-4
-rw-r--r--collectors/statsd.plugin/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/collectors/statsd.plugin/README.md b/collectors/statsd.plugin/README.md
index 3de4f05224..0e9c954fc9 100644
--- a/collectors/statsd.plugin/README.md
+++ b/collectors/statsd.plugin/README.md
@@ -253,8 +253,8 @@ For example, if you want to monitor the application `myapp` using StatsD and Net
metrics = myapp.*
private charts = no
gaps when not collected = no
- memory mode = ram
history = 60
+# memory mode = ram
[dictionary]
m1 = metric1
@@ -282,7 +282,7 @@ Using the above configuration `myapp` should get its own section on the dashboar
- `metrics` is a Netdata [simple pattern](/libnetdata/simple_pattern/README.md). This pattern should match all the possible StatsD metrics that will be participating in the application `myapp`.
- `private charts = yes|no`, enables or disables private charts for the metrics matched.
- `gaps when not collected = yes|no`, enables or disables gaps on the charts of the application in case that no metrics are collected.
-- `memory mode` sets the memory mode for all charts of the application. The default is the global default for Netdata (not the global default for StatsD private charts).
+- `memory mode` sets the memory mode for all charts of the application. The default is the global default for Netdata (not the global default for StatsD private charts). We suggest not to use this (we have commented it out in the example) and let your app use the global default for Netdata, which is our dbengine.
- `history` sets the size of the round robin database for this application. The default is the global default for Netdata (not the global default for StatsD private charts). This is only relevant if you use `memory mode = save`. Read more on our [metrics storage(]/docs/store/change-metrics-storage.md) doc.