rqt/Process Monitor not showing a node
[Ubuntu 13.10, ROS Hydro-Desktop-Full (built from source)]
rosnode list
shows it in a console but not the Process Monitor, even after refreshing.
The messages published by the missing node are included in the Topic Monitor.
I'm creating the node using ros::init( argc, argv, "myNode");
in the main method of my executable.
This is strange. Can anyone explain?
It seems that `rqt` needs to be run after the nodes are up in order have the Process Monitor show them. When nodes are shutdown, the Process Monitor removes them as expected. But they don't come back if the original node is created again. This means you must quit `rqt` and run it again.
Is the node running on the same machine as rqt_top? It will ignore nodes running on remote machines.
Yes, same machine.