Package reactor.netty.resources
Interface ConnectionProvider.MeterRegistrar
- All Known Implementing Classes:
HttpMeterRegistrarAdapter
- Enclosing interface:
- ConnectionProvider
public static interface ConnectionProvider.MeterRegistrar
A strategy to register which metrics are collected in a particular connection pool.
-
Method Summary
Modifier and TypeMethodDescriptiondefault voiddeRegisterMetrics(String poolName, String id, SocketAddress remoteAddress) Invoked when a connection pool is disposed.voidregisterMetrics(String poolName, String id, SocketAddress remoteAddress, ConnectionPoolMetrics metrics) Invoked when a connection pool is created.
-
Method Details
-
registerMetrics
void registerMetrics(String poolName, String id, SocketAddress remoteAddress, ConnectionPoolMetrics metrics) Invoked when a connection pool is created.- Parameters:
poolName- the pool nameid- the pool idremoteAddress- the remote addressmetrics- the pool metrics
-
deRegisterMetrics
Invoked when a connection pool is disposed.- Parameters:
poolName- the pool nameid- the pool idremoteAddress- the remote address- Since:
- 1.0.26
-