summaryrefslogtreecommitdiffstats
path: root/collectors/plugins.d
diff options
context:
space:
mode:
authorCosta Tsaousis <costa@tsaousis.gr>2018-10-18 19:01:27 +0300
committerGitHub <noreply@github.com>2018-10-18 19:01:27 +0300
commit37dc871a22a44763c5214fc56cae2bc8d59512fe (patch)
tree59e5911ccb14d54a31ee2360ba4090acb5852149 /collectors/plugins.d
parente76aac74e69c7dd03060e800e206eee777661a0c (diff)
fixed README.md links (#4433)
Diffstat (limited to 'collectors/plugins.d')
-rw-r--r--collectors/plugins.d/README.md8
1 files changed, 3 insertions, 5 deletions
diff --git a/collectors/plugins.d/README.md b/collectors/plugins.d/README.md
index eda3abfa65..d3aa5b5b07 100644
--- a/collectors/plugins.d/README.md
+++ b/collectors/plugins.d/README.md
@@ -374,15 +374,15 @@ or do not output the line at all.
## Modular Plugins
-1. **python**, use `python.d.plugin`, there are many examples in the [python.d directory](https://github.com/netdata/netdata/tree/master/python.d)
+1. **python**, use `python.d.plugin`, there are many examples in the [python.d directory](../python.d.plugin)
python is ideal for netdata plugins. It is a simple, yet powerful way to collect data, it has a very small memory footprint, although it is not the most CPU efficient way to do it.
-2. **node.js**, use `node.d.plugin`, there are a few examples in the [node.d directory](https://github.com/netdata/netdata/tree/master/node.d)
+2. **node.js**, use `node.d.plugin`, there are a few examples in the [node.d directory](../node.d.plugin)
node.js is the fastest scripting language for collecting data. If your plugin needs to do a lot of work, compute values, etc, node.js is probably the best choice before moving to compiled code. Keep in mind though that node.js is not memory efficient; it will probably need more RAM compared to python.
-3. **BASH**, use `charts.d.plugin`, there are many examples in the [charts.d directory](https://github.com/netdata/netdata/tree/master/charts.d)
+3. **BASH**, use `charts.d.plugin`, there are many examples in the [charts.d directory](../charts.d.plugin)
BASH is the simplest scripting language for collecting values. It is the less efficient though in terms of CPU resources. You can use it to collect data quickly, but extensive use of it might use a lot of system resources.
@@ -390,8 +390,6 @@ or do not output the line at all.
Of course, C is the most efficient way of collecting data. This is why netdata itself is written in C.
-5. **Nim**, there is an unofficial [nim plugin helper](https://github.com/FedericoCeratto/nim-netdata-plugin)
-
---
## Writing Plugins Properly