summaryrefslogtreecommitdiffstats
path: root/collectors
diff options
context:
space:
mode:
authorOdysseas Lamtzidis <odyslam@gmail.com>2021-03-12 13:00:13 +0200
committerGitHub <noreply@github.com>2021-03-12 13:00:13 +0200
commit85a36d54d5a90c2188c6e546cf0ca3e882358c93 (patch)
tree2be6c7fbaa3d017329ff061f5ce35d99b77f3086 /collectors
parent88fa66957558ccf8b30194d5fee68bdf9a94bcf2 (diff)
comment out memory mode mention in example (#10751)
Diffstat (limited to 'collectors')
-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.