Hello everyone,
I’m running Node-RED v3.x with the official InfluxDB Out node (InfluxDB 2.x). I’ve added a Status node and configured it to monitor any status change on my InfluxDB Out node, but I’m not seeing any status messages (neither “green/dot” nor “red/ring”) in the debug panel when I inject data.
Here’s what I’ve tried so far:
- Confirmed that the InfluxDB Out node is actually being triggered and writes data successfully (I can see the points in the bucket).
- Configured the Status node to target that exact InfluxDB Out node, with Status Type = Any, and connected its output to a Debug node set to show the complete
msg
object. - Verified that other nodes (e.g. MQTT In) emit status events and appear in the debug console without issue.
Despite this, I never see any messages coming from the Status node after a successful write or on error.
Has anyone encountered this behavior? Is there a known limitation with the InfluxDB Out node’s use of node.status()
? Or am I missing a configuration step? Any pointers on how to debug or work around this would be appreciated.
Thank you!