Statistics collection tool for C #?

Is there a good tool for collecting statistics from a C # application. Basically, we want to save successful method calls, what parameter values ​​were passed, IP addresses (for web applications), unsuccessful attempts to get data. More or less nothing. Then we need to be able to query the database containing the data to create statistical charts and diagrams.

Now we are doing this with 5 tables. The main table contains a query, then we have a parameter table, a data table, an application table (for tracking various applications), and then a method table. We also provide a web service for other projects (e.g. php and flash). They send their data to the web service and then are saved in the main statistics database.

We would like to know if there is such a tool in this market that can do this, and possibly more? (Should not be open or free to use)

+4
source share
1 answer

A good tool for this would be gibraltar http://www.gibraltarsoftware.com/ . Not only is the software very good, but the people behind it are very friendly and helpful.

+4
source

All Articles