@cryptotaxi247 / netdata-1 / commits / 85a36d54d

comment out memory mode mention in example (#10751)

Odysseas Lamtzidis committed Mar 12, 2021 at 13:00 UTC 85a36d54d5a90c2188c6e546cf0ca3e882358c93
1 file changed +2 -2
collectors/statsd.plugin/README.md
+2 -2
@@ -253,8 +253,8 @@ For example, if you want to monitor the application `myapp` using StatsD and Net
253 metrics = myapp.*
254 private charts = no
255 gaps when not collected = no
256 - memory mode = ram
256 history = 60
257 +# memory mode = ram
258
259 [dictionary]
260 m1 = metric1
@@ -282,7 +282,7 @@ Using the above configuration `myapp` should get its own section on the dashboar
282 - `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`.
283 - `private charts = yes|no`, enables or disables private charts for the metrics matched.
284 - `gaps when not collected = yes|no`, enables or disables gaps on the charts of the application in case that no metrics are collected.
285 -- `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).
285 +- `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.
286
287 - `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.
288