I have a labview application(2013 32bit) that will run for long periods of time, and sometimes the entire labview app crashes for unknown reasons. What I'd like to do is write an external python script which would act as the watchdog to this labview application.
So the labview app would periodically send a bit to the python script, and if the python script doesn't receive that then it will send me an alert.
The question is how I would most easily achieve this one-way communication. It looks like I could use dynamic data exchange, but that seems like overkill. A dumb way to do it would just be reading and writing to a text file. Neither side would actually have a direct form of communication. But that doesn't seem completely reliable.
Are there any better and simpler alternatives?