Example usage for com.mongodb.event ConnectionAddedEvent getConnectionId

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

Introduction

In this page you can find the example usage for com.mongodb.event ConnectionAddedEvent 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 connectionAdded(final ConnectionAddedEvent event) {
    metrics.compute(event.getConnectionId().getServerId(), (serverId, metric) -> metric.incPoolSize());
}