Software usage analytics in C#

Posted by TiernanO on Stack Overflow See other posts from Stack Overflow or by TiernanO
Published on 2011-01-25T21:27:37Z Indexed on 2011/02/03 23:25 UTC
Read the original article Hit count: 182

Filed under:
|
|
|

I have a project i am working on currently and would like to implement some sort of software tracking in the code. ideally, stuff like how often its launched. how long it runs for, feature tracking, etc. I already use Exceptioneer for unhandled exceptions, but would like something similar for usage tracking.

this data should all be anonymous and ideally run as a service by someone else. and i would like to give the users the option to turn it off, if they so wish to... So, is this something i should implement myself, or are there third parties out there that do this sort of things? i know it might be a sticky area, but i have seen stats about iPhone app usage. they do it, so why cant we? (if the user agrees, of course)

[Update] Based on the comments, i should have been more clear. this is a Winforms .NET 4. application, though i am thinking of updating it later with WCF. i would only be tracking my own application, though i would also want to know minor information about environment (Windows OS Version, SP, maybe proc and ram...)

© Stack Overflow or respective owner

Related posts about c#

Related posts about Services