I'd like to know what is the up-time of WCF service using Performance Counters. Is there a specific counter for that? Or is there a way to get this information from other counters?

link|improve this question
feedback

1 Answer

up vote 2 down vote accepted

As far as I know there is no WCF performance counter that will give you the uptime.

However,

  • if you host it in IIS, you can use the 'Service Uptime' in 'Web Service', or
  • if you host it differently (e.g. Windows Service, Console Application), you can use the 'Elapsed Time' in 'Process' (unless you don't start/stop the WCF host when the process starts/stops).
link|improve this answer
Thanks, Josef. But the service is hosted in Windows Service. – Boris Modylevsky Jan 29 at 9:36
I see. I added the non-IIS-hosted case to my answer. – Josef Jan 29 at 10:05
Great answer! That's exactly what I was looking for. – Boris Modylevsky Jan 29 at 10:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.