com.codahale.metrics.httpclient.InstrumentedHttpClientConnectionManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of metrics-httpclient Show documentation
Show all versions of metrics-httpclient Show documentation
An Apache HttpClient wrapper providing Metrics instrumentation of connection pools, request
durations and rates, and other useful information.
The newest version!
package com.codahale.metrics.httpclient;
import com.codahale.metrics.Gauge;
import com.codahale.metrics.MetricRegistry;
import org.apache.http.config.Registry;
import org.apache.http.config.RegistryBuilder;
import org.apache.http.conn.*;
import org.apache.http.conn.routing.HttpRoute;
import org.apache.http.conn.socket.ConnectionSocketFactory;
import org.apache.http.conn.socket.PlainConnectionSocketFactory;
import org.apache.http.conn.ssl.SSLConnectionSocketFactory;
import org.apache.http.impl.conn.PoolingHttpClientConnectionManager;
import org.apache.http.impl.conn.SystemDefaultDnsResolver;
import java.util.concurrent.TimeUnit;
import static com.codahale.metrics.MetricRegistry.name;
/**
* A {@link HttpClientConnectionManager} which monitors the number of open connections.
*/
public class InstrumentedHttpClientConnectionManager extends PoolingHttpClientConnectionManager {
protected static Registry getDefaultRegistry() {
return RegistryBuilder.create()
.register("http", PlainConnectionSocketFactory.getSocketFactory())
.register("https", SSLConnectionSocketFactory.getSocketFactory())
.build();
}
private final MetricRegistry metricsRegistry;
private final String name;
public InstrumentedHttpClientConnectionManager(MetricRegistry metricRegistry) {
this(metricRegistry, getDefaultRegistry());
}
public InstrumentedHttpClientConnectionManager(MetricRegistry metricsRegistry,
Registry socketFactoryRegistry) {
this(metricsRegistry, socketFactoryRegistry, -1, TimeUnit.MILLISECONDS);
}
public InstrumentedHttpClientConnectionManager(MetricRegistry metricsRegistry,
Registry socketFactoryRegistry,
long connTTL,
TimeUnit connTTLTimeUnit) {
this(metricsRegistry, socketFactoryRegistry, null, null, SystemDefaultDnsResolver.INSTANCE, connTTL, connTTLTimeUnit, null);
}
public InstrumentedHttpClientConnectionManager(MetricRegistry metricsRegistry,
Registry socketFactoryRegistry,
HttpConnectionFactory connFactory,
SchemePortResolver schemePortResolver,
DnsResolver dnsResolver,
long connTTL,
TimeUnit connTTLTimeUnit,
String name) {
super(socketFactoryRegistry, connFactory, schemePortResolver, dnsResolver, connTTL, connTTLTimeUnit);
this.metricsRegistry = metricsRegistry;
this.name = name;
metricsRegistry.register(name(HttpClientConnectionManager.class, name, "available-connections"),
new Gauge() {
@Override
public Integer getValue() {
// this acquires a lock on the connection pool; remove if contention sucks
return getTotalStats().getAvailable();
}
});
metricsRegistry.register(name(HttpClientConnectionManager.class, name, "leased-connections"),
new Gauge() {
@Override
public Integer getValue() {
// this acquires a lock on the connection pool; remove if contention sucks
return getTotalStats().getLeased();
}
});
metricsRegistry.register(name(HttpClientConnectionManager.class, name, "max-connections"),
new Gauge() {
@Override
public Integer getValue() {
// this acquires a lock on the connection pool; remove if contention sucks
return getTotalStats().getMax();
}
});
metricsRegistry.register(name(HttpClientConnectionManager.class, name, "pending-connections"),
new Gauge() {
@Override
public Integer getValue() {
// this acquires a lock on the connection pool; remove if contention sucks
return getTotalStats().getPending();
}
});
}
@Override
public void shutdown() {
super.shutdown();
metricsRegistry.remove(name(HttpClientConnectionManager.class, name, "available-connections"));
metricsRegistry.remove(name(HttpClientConnectionManager.class, name, "leased-connections"));
metricsRegistry.remove(name(HttpClientConnectionManager.class, name, "max-connections"));
metricsRegistry.remove(name(HttpClientConnectionManager.class, name, "pending-connections"));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy