blob: 7c03d63b5bca094bc39c2116c00e63b31fb81b5d [file] [log] [blame]
/*
* 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.drill.exec.rpc.user;
import com.codahale.metrics.Counter;
import org.apache.drill.exec.memory.BufferAllocator;
import org.apache.drill.exec.metrics.DrillMetrics;
import org.apache.drill.exec.rpc.AbstractRpcMetrics;
import org.apache.drill.exec.rpc.RpcMetrics;
/**
* Holds metrics related to bit user rpc layer
*/
public class UserRpcMetrics extends AbstractRpcMetrics {
//private static final org.slf4j.Logger logger = org.slf4j.LoggerFactory.getLogger(UserRpcMetrics.class);
// Total number of user client connection's to a DrillBit.
private static final Counter encryptedConnections = DrillMetrics.getRegistry()
.counter(CONNECTION_COUNTER_PREFIX + "user.encrypted");
private static final Counter unencryptedConnection = DrillMetrics.getRegistry()
.counter(CONNECTION_COUNTER_PREFIX + "user.unencrypted");
private static final RpcMetrics INSTANCE = new UserRpcMetrics();
// prevent instantiation
private UserRpcMetrics() {
}
public static RpcMetrics getInstance() {
return INSTANCE;
}
/**
* Should only be called when first access to getInstance is made. In this case inside {@link UserServer}.
* BitToUserConnection using the singleton instance should not call initialize.
*
* @param useEncryptedCounter
* @param allocator
*/
@Override
public void initialize(boolean useEncryptedCounter, BufferAllocator allocator) {
this.useEncryptedCounter = useEncryptedCounter;
registerAllocatorMetrics(allocator);
}
@Override
public void addConnectionCount() {
if (useEncryptedCounter) {
encryptedConnections.inc();
} else {
unencryptedConnection.inc();
}
}
@Override
public void decConnectionCount() {
if (useEncryptedCounter) {
encryptedConnections.dec();
} else {
unencryptedConnection.dec();
}
}
@Override
public long getEncryptedConnectionCount() {
return encryptedConnections.getCount();
}
@Override
public long getUnEncryptedConnectionCount() {
return unencryptedConnection.getCount();
}
private void registerAllocatorMetrics(final BufferAllocator allocator) {
registerAllocatorMetrics(allocator, ALLOCATOR_METRICS_PREFIX + "bit.user.");
}
}