Start implementing [optional] metrics for HikariCP.
parent
4b0cca092c
commit
eeec5415c6
@ -0,0 +1,66 @@
|
||||
/*
|
||||
* Copyright (C) 2013,2014 Brett Wooldridge
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package com.zaxxer.hikari.metrics;
|
||||
|
||||
import com.codahale.metrics.Histogram;
|
||||
import com.codahale.metrics.MetricRegistry;
|
||||
import com.codahale.metrics.Timer;
|
||||
import com.zaxxer.hikari.HikariPool;
|
||||
|
||||
public final class CodaHaleMetricsTracker extends MetricsTracker
|
||||
{
|
||||
private MetricRegistry registry;
|
||||
private Timer connectionObtainTimer;
|
||||
private Histogram connectionUsage;
|
||||
|
||||
public CodaHaleMetricsTracker(String poolName)
|
||||
{
|
||||
registry = new MetricRegistry();
|
||||
connectionObtainTimer = registry.timer(MetricRegistry.name(HikariPool.class, "connection", "wait"));
|
||||
connectionUsage = registry.histogram(MetricRegistry.name(HikariPool.class, "connection", "usage"));
|
||||
}
|
||||
|
||||
@Override
|
||||
public Context recordConnectionRequest(long requestTime)
|
||||
{
|
||||
return new Context(connectionObtainTimer);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void recordConnectionUsage(long usageMilleseconds)
|
||||
{
|
||||
connectionUsage.update(usageMilleseconds);
|
||||
}
|
||||
|
||||
public static final class Context extends MetricsTracker.Context
|
||||
{
|
||||
Timer.Context innerContext;
|
||||
|
||||
Context(Timer timer)
|
||||
{
|
||||
innerContext = timer.time();
|
||||
}
|
||||
|
||||
public void stop()
|
||||
{
|
||||
if (innerContext != null)
|
||||
{
|
||||
innerContext.stop();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,44 @@
|
||||
/*
|
||||
* Copyright (C) 2013,2014 Brett Wooldridge
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package com.zaxxer.hikari.metrics;
|
||||
|
||||
|
||||
/**
|
||||
* This class does absolutely nothing.
|
||||
*
|
||||
* @author Brett Wooldridge
|
||||
*/
|
||||
public class MetricsTracker
|
||||
{
|
||||
private static final Context NO_CONTEXT = new Context();
|
||||
|
||||
public static class Context
|
||||
{
|
||||
public void stop()
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
public Context recordConnectionRequest(long start)
|
||||
{
|
||||
return NO_CONTEXT;
|
||||
}
|
||||
|
||||
public void recordConnectionUsage(long usageMilleseconds)
|
||||
{
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue