WCF service health monitoring

前端 未结 1 1173
抹茶落季
抹茶落季 2021-02-04 16:55

I just implemented a WCF service and I am currently looking at service monitoring options. Our server team that currently hosts only java services wants us to have instances run

相关标签:
1条回答
  • 2021-02-04 17:03

    My company very recently agreed to open-source (under the GPL License) the tool that we use internally to monitor our live web services and for producing availability and response time reports. It's called ServiceMon and it may meet your needs.

    It runs on Windows as a standalone application and works by following a simple script of operations that dictate the services to be monitored. For example, to check a web page contains a particular value, in a similar manner to webmon, you'd use this line:

    http-get "http://www.google.com" must-contain "I'm Feeling Lucky"
    

    The frequency at which it executes the script operations can be easily configured as can the order which it processes them.

    In addition to monitoring web pages and web services we use ServiceMon to track availability statistics of each service and to produce response time statistics.

    Screenshot of ServiceMon's statistics view

    ServiceMon is written using a plugin architecture so you can use .NET to add new types of monitoring operations. So, for example, if your web service uses funky authentication you can fairly easily plug this in to the utility.

    Full documentation and download instructions here

    I hope you find it useful and I'd love to hear your thoughts

    Disclaimer: I developed ServiceMon so I may be a little bit biased :)

    0 讨论(0)
提交回复
热议问题