I'm very interested in the answer to another question regarding watchdog timers for Windows services (see here). That answer stated:

I have also used an internal watchdog system running in another thread. That thread looks at the main thread for activity like log output or a toggling event. If the activity is not seen then the service is considered hung and I shutdown the service.

In this case you can configure windows to auto-restart a stopped service and that might clear the problem (as long as it's not an internal logic bug).

Also services I work with have text logs that are written to a log. In addition for services that are about to "sleep for a bit", I log the time for the next wake up. I use MTAIL to watch a log for output."

Could anyone give some sample code how to use an internal watchdog running in another thread, since I currently have a task to develop a windows service which will be able to self restart in case it failed, hung up, etc.

I really appreciate your help.

link|improve this question
Who is John? You don't mean Jon by any chance? – Ashley Henderson Sep 23 '09 at 2:55
That would be right: go straight to the top. Don't bother asking the rest of us dummies. – pavium Sep 23 '09 at 3:16
Actually it was John Dyer - see my update to the question. – paxdiablo Sep 23 '09 at 4:03
Right, now perhaps that the question has been Anglicized a bit, we could stop downvoting it and start answering it :-) – paxdiablo Sep 23 '09 at 4:07
This does not belong on superuser. It's specifically asking how to code a watchdog process. – paxdiablo Sep 23 '09 at 4:08
show 5 more comments
feedback

3 Answers

I'm not a big fan of running a watchdog as a thread in the process you're watching. That means if the whole process hangs for some reason, the watchdog won't work.

Watchdogs are an idea lifted from the hardware world and they had it right. Use an external circuit as simple as possible (so it can be provably correct). Typical watchdogs simply ran an timer and, if the process hadn't done something before the timer expired (like access a memory location the watchdog was watching), the whole thing was reset. When the watchdog was "kicked", it would restart the timer.

The act of the process kicking the watchdog protected that process from summary termination.

My advice would be to write a very simple stand-alone program which just monitored an event (such as file update time being modified). If that event didn't occur within the required time, kill the process being watched (and let Windows restart it).

Then have your watched program periodically rewrite that file.

link|improve this answer
feedback

You can configure from service properties to self restart in case of failure

Services -> right-click your service -> Properties -> First failure : restart the service -> Second failure : restart the service -> Subsequent failure : restart
link|improve this answer
1  
Might work for some services, but what about a service that usually always runs but suddenly gets stuck and stops making progress? – romkyns Apr 20 '10 at 10:27
feedback

Other approaches you might want to consider besides regularly modifying the lastwritetime of a file would be to create a proper performance counter or even a WMI object. We do the later in our build infrastructure, the 'trick' is to find a meaningful work unit in the service being monitored and pulse your 'heartbeat' each time a unit is finished.

The advantage of WMI or Perf Counters over a the file approach is that you then become visible to a whole bunch of professional MIS / management tools. This can add a lot of value.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown