Am using the codahale Metrics API for Java.
We are using Timers all over our system to collect latencies.
During perf testing we are connecting to our system via JMX to collect stats, such as Mean latencies, 75th Percentile latencies etc.
Problem is, short of deleting all Metrics objects and re-creating them (which appears as if it will take much refactoring), is there a way to clear historical data so that when we start a new test, we don't need to restart out systems?
Any help would be appreciated.