I am a newbie to node-red and working on some of the node red flows which involves connecting and processing data from MQTT, MongoDB etc. Is there any reporting page that displays information about flow executions and their related logs?
2
votes
1 Answers
1
votes
Not really.
The best you could possibly do is ensure that all debug nodes are set to write to the the console as well as the sidebar, then tail the Node-RED log.
Nodes should log errors (such as MQTT/MongoDB disconnect/reconnect) to the log as well or you can use the status node and wire that to a debug node in order to capture the state changes that way as well. (Note as thrashed out in the comments, status nodes messages do not have payload key, so make sure you set the debug node properly)