| Table of Contents |
Being able to monitor how quality evolves is a good start (see Historical Information).
The next step would be to manage your technical debt on your current developments in order to keep it under control.
To deal with that, Sonar offers you the Differential Services feature on measures, violations and coverage by unit tests on new code.
Differential Views
Differential Views on Measures
To activate this service, pick the desired period in the drop down list Time changes...

When a period is selected, the differential values will appear next to the project measures:

Differential Views on Violations
This service will help you focus your effort of quality on current developments:


To determine the creation date of a violation, during each Sonar analysis, Sonar executes the following algorithm:
- For each violation, if there was a violation on the same rule, with the same line number and with the same hash (but not necessarily with the same message) > MATCH
- For each violation, if there was a violation on the same rule, with the same message and with the same hash (but not necessarily with the same line) > MATCH
- For each violation, if there was a violation on the same rule, with the same message and with the same line number (but not necessarily with the same hash) > MATCH
In any other case, the violation is a new one.
Code Coverage on New/Changed Code
When activating the SCM Activity Plugin, you will be able to separate coverage by unit tests of new code from old (based upon a given cut-off date) in order to track the new code which does not have any/enough unit tests.

Git - SonarTo see live examples, you can browse the following projects on Nemo:
- Subversion - Sonar Plugins
Differential Views Settings
Global Configuration
3 periods can be configured globally and will be available and common to all projects. Go to Configuration > General Settings > Differential Views to set these properties.

Project Configuration
2 complementary periods can be configured and be specific to the current project. Select your project and go to Settings > Differential Views to set these properties


