Example usage for com.mongodb.event ConnectionRemovedEvent getConnectionId

List of usage examples for com.mongodb.event ConnectionRemovedEvent getConnectionId

Introduction

In this page you can find the example usage for com.mongodb.event ConnectionRemovedEvent getConnectionId.

Prototype

public ConnectionId getConnectionId() 

Source Link

Document

Gets the connection id

Usage

From source file:org.eclipse.ditto.services.utils.persistence.mongo.monitoring.KamonConnectionPoolListener.java

License:Open Source License

@Override
public void connectionRemoved(final ConnectionRemovedEvent event) {
    metrics.compute(event.getConnectionId().getServerId(), (serverId, metric) -> metric.decPoolSize());

}