FeedBaG++ provides the infrastructure to compose several generators to capture the enriched event stream of development actions.
The idea is that a generator takes care of instrumenting a specific part of Visual Studio and captures a specific kind of event. For example, we were interested in how people are using the code completion tool IntelliSense, so we created a generator that captures CodeCompletionEvents. In addition to the basic information (e.g., trigger time, duration), the generator takes a snapshot of the editor content at trigger time and also captures the selected proposals in the IntelliSense popup.
To capture a new kind of event, you will only have to implement a new generator. FeedBaG++ provides the remaining infrastructure automatically.
It is quite easy to provide new generators, please refer to the existing generators and existing events in the repository.
Once you have implemented your generator and you new event type, you are done and can capture the new data. This is only half of the story and you should think about providing some optional components.