summaryrefslogtreecommitdiffstats
path: root/docs/guides
diff options
context:
space:
mode:
authorJoel Hans <joel@netdata.cloud>2021-01-21 14:01:54 -0700
committerGitHub <noreply@github.com>2021-01-21 14:01:54 -0700
commitf8e05ca21197f878feddc867e77af4f7ebe26a12 (patch)
tree1c27e9d55cc4d7d669ce66ad55345625c0ffd132 /docs/guides
parented6d34338a6ac7311e0a3e5f756b7d212a85eedd (diff)
Make some tweaks/improvements to conf docs (#10528)
Diffstat (limited to 'docs/guides')
-rw-r--r--docs/guides/configure/performance.md21
1 files changed, 11 insertions, 10 deletions
diff --git a/docs/guides/configure/performance.md b/docs/guides/configure/performance.md
index e542736a1d..5f93a8cd42 100644
--- a/docs/guides/configure/performance.md
+++ b/docs/guides/configure/performance.md
@@ -66,7 +66,7 @@ seconds, respectively.
```conf
[global]
- update every: 5
+ update every = 5
```
### Specific plugin or collector
@@ -128,6 +128,7 @@ sudo ./edit-config charts.d.conf
For example, to disable a few Python collectors:
```conf
+modules:
apache: no
dockerd: no
fail2ban: no
@@ -149,9 +150,9 @@ All the settings are found in the `[global]` section of `netdata.conf`:
```conf
[global]
- memory mode = dbengine
- page cache size = 32
- dbengine multihost disk space = 256
+ memory mode = dbengine
+ page cache size = 32
+ dbengine multihost disk space = 256
```
## Run Netdata behind Nginx
@@ -194,15 +195,15 @@ To disable gzip compression, open `netdata.conf` and find the `[web]` section:
```conf
[web]
- enable gzip compression = no
+ enable gzip compression = no
```
Or to lower the default compression level:
```conf
[web]
- enable gzip compression = yes
- gzip compression level = 1
+ enable gzip compression = yes
+ gzip compression level = 1
```
## Disable logs
@@ -212,9 +213,9 @@ If you installation is working correctly, and you're not actively auditing Netda
```conf
[global]
- debug log = none
- error log = none
- access log = none
+ debug log = none
+ error log = none
+ access log = none
```
## What's next?