I need to know how many requests I received through odata protocol. Is there any way I can keep track of this ? I need it for analytics purpose. (using a custom tool is not allowed, but nevertheless it could be great if you can point me to some).
Thanks, Ritwik
A few options you could consider:
If you need to capture the data into your own custom format/DB hook into the WCF Data Services ProcessingPipeline (there are general events there for pre and post processing queries and data change events) – CodeProject Example
If you need your own format but for specific entities, check out the Query and Change Interceptors – MSDN
If you can use another framework and need a quick, ready to go dashboard (built into IIS) check out AppFabric Monitoring (requires some install/setup on the server) WCF Data Service and AppFabric