docs(go.d): add example how to debug a specific job (#20399)
Ilya Mashchenko committed
Jun 5, 2025 at 21:40 UTC
1d5ff51c1064abbe393b63585efd532afe97f3e5
1 file changed
+6
integrations/templates/troubleshooting.md
+6
@@ -31,6 +31,12 @@ should give you clues as to why the collector isn't working.
31
./go.d.plugin -d -m [[ entry.meta.module_name ]]
32
```
33
34
+ To debug a specific job:
35
+
36
+ ```bash
37
+ ./go.d.plugin -d -m [[ entry.meta.module_name ]] -j jobName
38
+ ```
39
+
40
[% elif entry.meta.plugin_name == 'python.d.plugin' %]
41
- Run the `python.d.plugin` to debug the collector:
42