org.apache.cassandra.metrics.ClientMetrics Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cassandra-all Show documentation
Show all versions of cassandra-all Show documentation
The Apache Cassandra Project develops a highly scalable second-generation distributed database, bringing together Dynamo's fully distributed design and Bigtable's ColumnFamily-based data model.
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.cassandra.metrics;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.Comparator;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicInteger;
import com.google.common.annotations.VisibleForTesting;
import com.codahale.metrics.Gauge;
import com.codahale.metrics.Histogram;
import com.codahale.metrics.Meter;
import com.codahale.metrics.Reservoir;
import com.codahale.metrics.Timer;
import org.apache.cassandra.transport.*;
import static org.apache.cassandra.metrics.CassandraMetricsRegistry.Metrics;
public final class ClientMetrics
{
public static final ClientMetrics instance = new ClientMetrics();
private static final MetricNameFactory factory = new DefaultNameFactory("Client");
private volatile boolean initialized = false;
private Collection servers = Collections.emptyList();
private Meter authSuccess;
private Meter authFailure;
private AtomicInteger pausedConnections;
@SuppressWarnings({ "unused", "FieldCanBeLocal" })
private Gauge pausedConnectionsGauge;
private Meter connectionPaused;
private Meter requestDiscarded;
private Meter requestDispatched;
private Meter timedOutBeforeProcessing;
private Meter protocolException;
private Meter unknownException;
private Timer queueTime;
private ClientMetrics()
{
}
public void markAuthSuccess()
{
authSuccess.mark();
}
public void markAuthFailure()
{
authFailure.mark();
}
@VisibleForTesting
public int getNumberOfPausedConnections()
{
return (int) connectionPaused.getCount();
}
public void pauseConnection()
{
connectionPaused.mark();
pausedConnections.incrementAndGet();
}
public void unpauseConnection() { pausedConnections.decrementAndGet(); }
public void markRequestDiscarded() { requestDiscarded.mark(); }
public void markRequestDispatched() { requestDispatched.mark(); }
public List allConnectedClients()
{
List clients = new ArrayList<>();
for (Server server : servers)
clients.addAll(server.getConnectedClients());
return clients;
}
public void markTimedOutBeforeProcessing() { timedOutBeforeProcessing.mark(); }
public void markProtocolException()
{
protocolException.mark();
}
public void markUnknownException()
{
unknownException.mark();
}
public synchronized void init(Collection servers)
{
if (initialized)
return;
this.servers = servers;
// deprecated the lower-cased initial letter metric names in 4.0
registerGauge("ConnectedNativeClients", "connectedNativeClients", this::countConnectedClients);
registerGauge("ConnectedNativeClientsByUser", "connectedNativeClientsByUser", this::countConnectedClientsByUser);
registerGauge("Connections", "connections", this::connectedClients);
registerGauge("ClientsByProtocolVersion", "clientsByProtocolVersion", this::recentClientStats);
registerGauge("RequestsSize", ClientResourceLimits::getCurrentGlobalUsage);
Reservoir ipUsageReservoir = ClientResourceLimits.ipUsageReservoir();
Metrics.register(factory.createMetricName("RequestsSizeByIpDistribution"),
new Histogram(ipUsageReservoir)
{
public long getCount()
{
return ipUsageReservoir.size();
}
});
authSuccess = registerMeter("AuthSuccess");
authFailure = registerMeter("AuthFailure");
pausedConnections = new AtomicInteger();
pausedConnectionsGauge = registerGauge("PausedConnections", pausedConnections::get);
connectionPaused = registerMeter("ConnectionPaused");
requestDiscarded = registerMeter("RequestDiscarded");
requestDispatched = registerMeter("RequestDispatched");
timedOutBeforeProcessing = registerMeter("TimedOutBeforeProcessing");
protocolException = registerMeter("ProtocolException");
unknownException = registerMeter("UnknownException");
queueTime = registerTimer("Queued");
initialized = true;
}
private int countConnectedClients()
{
int count = 0;
for (Server server : servers)
count += server.countConnectedClients();
return count;
}
private Map countConnectedClientsByUser()
{
Map counts = new HashMap<>();
for (Server server : servers)
{
server.countConnectedClientsByUser()
.forEach((username, count) -> counts.put(username, counts.getOrDefault(username, 0) + count));
}
return counts;
}
private List