I would like to be able to measure the features in our application that are being used. For example how much certain windows are opened, certain controls are clicked. I can imagine a tool that measures this and sends a report to a web server, that can further process it to create meaningful data from it
|
|
First question : should you do it ? People don't like when their software phones home without their consent. But assuming they are ok with it then: It's technically possible, with two approaches: automatic or manual. Of course, given your question, I assume that you are using Qt. Automatic:
Manual :
Final :
|
|||
|
I guess, your answer is "No". I don't think there are such libraries. I also think, the best solution here is logging, meaning you should manually introduce some log functions into your main program features and send back the log file. When it comes to logging, you may consider using aspect-oriented programming (and there are such tools for C++), it may simplify your task... |
|||
|
|
|
www.Includeapp.com. They provide the functionality your after with data protection in mind. Very cool stuff. |
|||
|
|