/astyanax-core/src/main/java/com/netflix/astyanax/connectionpool/ConnectionPoolMonitor.java
http://github.com/Netflix/astyanax · Java · 222 lines · 39 code · 37 blank · 146 comment · 0 complexity · 0209fa664ad9ad36f0849ec1ff6da9a6 MD5 · raw file
- /*******************************************************************************
- * Copyright 2011 Netflix
- *
- * 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.netflix.astyanax.connectionpool;
- import java.util.Map;
- /**
- * Monitoring interface to receive notification of pool events. A concrete
- * monitor will make event stats available to a monitoring application and may
- * also log events to a log file.
- *
- * @author elandau
- */
- public interface ConnectionPoolMonitor {
- /**
- * Errors trying to execute an operation.
- *
- * @param reason
- * @param host
- */
- void incOperationFailure(Host host, Exception reason);
- long getOperationFailureCount();
- /**
- * An operation failed but the connection pool will attempt to fail over to
- * another host/connection.
- */
- void incFailover(Host host, Exception reason);
- long getFailoverCount();
- /**
- * Succeeded in executing an operation
- *
- * @param host
- * @param latency
- */
- void incOperationSuccess(Host host, long latency);
- long getOperationSuccessCount();
- /**
- * Created a connection successfully
- */
- void incConnectionCreated(Host host);
- long getConnectionCreatedCount();
- /**
- * Closed a connection
- *
- * @param reason
- * TODO: Make the host available to this
- */
- void incConnectionClosed(Host host, Exception reason);
- long getConnectionClosedCount();
- /**
- * Attempt to create a connection failed
- *
- * @param host
- * @param reason
- */
- void incConnectionCreateFailed(Host host, Exception reason);
- long getConnectionCreateFailedCount();
- /**
- * Incremented for each connection borrowed
- *
- * @param host
- * Host from which the connection was borrowed
- * @param delay
- * Time spent in the connection pool borrowing the connection
- */
- void incConnectionBorrowed(Host host, long delay);
- long getConnectionBorrowedCount();
- /**
- * Incremented for each connection returned.
- *
- * @param host
- * Host to which connection is returned
- */
- void incConnectionReturned(Host host);
- long getConnectionReturnedCount();
- /**
- * Timeout trying to get a connection from the pool
- */
- long getPoolExhaustedTimeoutCount();
- /**
- * Timeout waiting for a response from the cluster
- */
- long getOperationTimeoutCount();
- /**
- * @return Count of socket timeouts trying to execute an operation
- */
- long getSocketTimeoutCount();
-
- /**
- * @return Get number of unknown errors
- */
- long getUnknownErrorCount();
-
- /**
- * @return Get number of invalid requests (i.e. bad argument values)
- */
- long getBadRequestCount();
-
- /**
- * @return Count of times no hosts at all were available to execute an operation.
- */
- long getNoHostCount();
-
- /**
- * @return Tracks the number of column not found error
- */
- long notFoundCount();
- /**
- * @return Number of times operations were cancelled
- */
- long getInterruptedCount();
- /**
- * @return Number of times transport errors occurred
- */
- long getTransportErrorCount();
- /**
- * @return Return the number of hosts in the pool
- */
- long getHostCount();
-
- /**
- * Return the number of times a host was added to the pool. This
- * number will be incremented multiple times if the same hosts is
- * added and removed multiple times.
- * A constantly increating number of host added and host removed
- * may indicate a problem with the host discovery service
- */
- long getHostAddedCount();
-
- /**
- * Return the number of times any host was removed to the pool. This
- * number will be incremented multiple times if the same hosts is
- * added and removed multiple times.
- * A constantly increating number of host added and host removed
- * may indicate a problem with the host discovery service
- */
- long getHostRemovedCount();
-
- /**
- * @return Return the number of times any host was marked as down.
- */
- long getHostDownCount();
- /**
- * @return Return the number of active hosts
- */
- long getHostActiveCount();
- /**
- * A host was added and given the associated pool. The pool is immutable and
- * can be used to get info about the number of open connections
- *
- * @param host
- * @param pool
- */
- void onHostAdded(Host host, HostConnectionPool<?> pool);
- /**
- * A host was removed from the pool. This is usually called when a downed
- * host is removed from the ring.
- *
- * @param host
- */
- void onHostRemoved(Host host);
- /**
- * A host was identified as downed.
- *
- * @param host
- * @param reason
- * Exception that caused the host to be identified as down
- */
- void onHostDown(Host host, Exception reason);
- /**
- * A host was reactivated after being marked down
- *
- * @param host
- * @param pool
- */
- void onHostReactivated(Host host, HostConnectionPool<?> pool);
- /**
- * @return Return a mapping of all hosts and their statistics
- */
- Map<Host, HostStats> getHostStats();
- }