summaryrefslogtreecommitdiffstats
path: root/docs/guides
diff options
context:
space:
mode:
authorIlya Mashchenko <ilya@netdata.cloud>2022-08-11 19:23:38 +0300
committerGitHub <noreply@github.com>2022-08-11 19:23:38 +0300
commit9bd7528dbc3a9462899b1abf4549c31ba541a67f (patch)
tree58976af65c29694134a53165de74ac4d67c1ffe5 /docs/guides
parent80e9a6992f315deb196c9726ed6303aefeac9ebd (diff)
chore(python.d): remove python.d/* announced in v1.36.0 deprecation notice (#13503)
Diffstat (limited to 'docs/guides')
-rw-r--r--docs/guides/python-collector.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/guides/python-collector.md b/docs/guides/python-collector.md
index f93c724bf0..920b9b9eff 100644
--- a/docs/guides/python-collector.md
+++ b/docs/guides/python-collector.md
@@ -424,8 +424,8 @@ configuration in [YAML](https://www.tutorialspoint.com/yaml/yaml_basics.htm) for
run. This enables you to define different "ways" to fetch data from a particular data source so that the collector has
more chances to work out-of-the-box. For example, if the data source supports both `HTTP` and `linux socket`, you can
define 2 jobs named `local`, with each using a different method.
-- Check the `postgresql` collector configuration file on
- [GitHub](https://github.com/netdata/netdata/blob/master/collectors/python.d.plugin/postgres/postgres.conf) to get a
+- Check the `example` collector configuration file on
+ [GitHub](https://github.com/netdata/netdata/blob/master/collectors/python.d.plugin/example/example.conf) to get a
sense of the structure.
```yaml
@@ -455,8 +455,8 @@ function takes 2 arguments, one with the name of the configuration field and one
find the configuration field. This allows you to define sane defaults for your collector.
Moreover, when creating the configuration file, create a large comment section that describes the configuration
-variables and inform the user about the defaults. For example, take a look at the `postgresql` collector on
-[GitHub](https://github.com/netdata/netdata/blob/master/collectors/python.d.plugin/postgres/postgres.conf).
+variables and inform the user about the defaults. For example, take a look at the `example` collector on
+[GitHub](https://github.com/netdata/netdata/blob/master/collectors/python.d.plugin/example/example.conf).
You can read more about the configuration file on the [`python.d.plugin`
documentation](https://learn.netdata.cloud/docs/agent/collectors/python.d.plugin).
@@ -465,7 +465,7 @@ documentation](https://learn.netdata.cloud/docs/agent/collectors/python.d.plugin
Find the source code for the above examples on [GitHub](https://github.com/papajohn-uop/netdata).
-Now we you ready to start developing our Netdata python Collector and share it with the rest of the Netdata community.
+Now you are ready to start developing our Netdata python Collector and share it with the rest of the Netdata community.
- If you need help while developing your collector, join our [Netdata
Community](https://community.netdata.cloud/c/agent-development/9) to chat about it.