summaryrefslogtreecommitdiffstats
path: root/docs/guides/step-by-step/step-06.md
diff options
context:
space:
mode:
authorSuraj Neupane <suraj@netdata.cloud>2022-05-03 09:16:21 +0300
committerGitHub <noreply@github.com>2022-05-03 09:16:21 +0300
commit22863c42b9ccf59d340f39c7719b6ef19b455a16 (patch)
tree1d019f827ef49ccf2e174735280373e153ece236 /docs/guides/step-by-step/step-06.md
parent4c88988ed3e142ca7dbe15c7487d3762d1c1acf1 (diff)
Remove node.d.plugin and relevant files (#12769)
* Remove node.d.plugin and relevant files * fix build packages * remove node.d related words/phrases from docs and tests
Diffstat (limited to 'docs/guides/step-by-step/step-06.md')
-rw-r--r--docs/guides/step-by-step/step-06.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/guides/step-by-step/step-06.md b/docs/guides/step-by-step/step-06.md
index 89a8cb7329..f04098fc14 100644
--- a/docs/guides/step-by-step/step-06.md
+++ b/docs/guides/step-by-step/step-06.md
@@ -39,7 +39,7 @@ they were built in.
These modules are primarily written in [Go](https://learn.netdata.cloud/docs/agent/collectors/go.d.plugin/) (`go.d`) and
[Python](/collectors/python.d.plugin/README.md), although some use [Bash](/collectors/charts.d.plugin/README.md)
-(`charts.d`) or [Node.js](/collectors/node.d.plugin/README.md) (`node.d`).
+(`charts.d`).
## Enable and disable plugins
@@ -58,14 +58,14 @@ Enabled:
```conf
[plugins]
- # node.d = yes
+ # python.d = yes
```
Disabled:
```conf
[plugins]
- node.d = no
+ python.d = no
```
When you explicitly disable a plugin this way, it won't auto-collect metrics using its collectors.