summaryrefslogtreecommitdiffstats
path: root/src/collectors/python.d.plugin/am2320/integrations
diff options
context:
space:
mode:
Diffstat (limited to 'src/collectors/python.d.plugin/am2320/integrations')
-rw-r--r--src/collectors/python.d.plugin/am2320/integrations/am2320.md34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/collectors/python.d.plugin/am2320/integrations/am2320.md b/src/collectors/python.d.plugin/am2320/integrations/am2320.md
index f96657624..ea0e505c2 100644
--- a/src/collectors/python.d.plugin/am2320/integrations/am2320.md
+++ b/src/collectors/python.d.plugin/am2320/integrations/am2320.md
@@ -156,6 +156,7 @@ local_sensor:
### Debug Mode
+
To troubleshoot issues with the `am2320` collector, run the `python.d.plugin` with the debug option enabled. The output
should give you clues as to why the collector isn't working.
@@ -178,4 +179,37 @@ should give you clues as to why the collector isn't working.
./python.d.plugin am2320 debug trace
```
+### Getting Logs
+
+If you're encountering problems with the `am2320` collector, follow these steps to retrieve logs and identify potential issues:
+
+- **Run the command** specific to your system (systemd, non-systemd, or Docker container).
+- **Examine the output** for any warnings or error messages that might indicate issues. These messages should provide clues about the root cause of the problem.
+
+#### System with systemd
+
+Use the following command to view logs generated since the last Netdata service restart:
+
+```bash
+journalctl _SYSTEMD_INVOCATION_ID="$(systemctl show --value --property=InvocationID netdata)" --namespace=netdata --grep am2320
+```
+
+#### System without systemd
+
+Locate the collector log file, typically at `/var/log/netdata/collector.log`, and use `grep` to filter for collector's name:
+
+```bash
+grep am2320 /var/log/netdata/collector.log
+```
+
+**Note**: This method shows logs from all restarts. Focus on the **latest entries** for troubleshooting current issues.
+
+#### Docker Container
+
+If your Netdata runs in a Docker container named "netdata" (replace if different), use this command:
+
+```bash
+docker logs netdata 2>&1 | grep am2320
+```
+