com.codahale.metrics.jdbi.strategies.NaiveNameStrategy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of metrics-jdbi Show documentation
Show all versions of metrics-jdbi Show documentation
A JDBI wrapper providing Metrics instrumentation of query durations and rates.
The newest version!
package com.codahale.metrics.jdbi.strategies;
/**
* Very simple strategy, can be used with any JDBI loader to build basic statistics.
*/
public class NaiveNameStrategy extends DelegatingStatementNameStrategy {
public NaiveNameStrategy() {
super(NameStrategies.CHECK_EMPTY,
NameStrategies.CHECK_RAW,
NameStrategies.NAIVE_NAME);
}
}