blob: 0ae3fdf73fa7e5eda3baac104dec67f919058672 [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.dubbo.metrics.filter;
import static org.apache.dubbo.common.constants.MetricsConstants.METRIC_FILTER_START_TIME;
import java.util.function.Supplier;
import org.apache.dubbo.common.metrics.collector.DefaultMetricsCollector;
import org.apache.dubbo.rpc.Invocation;
import org.apache.dubbo.rpc.Result;
import org.apache.dubbo.rpc.RpcException;
public class MetricsCollectExecutor {
private final DefaultMetricsCollector collector;
private final Invocation invocation;
private String interfaceName;
private String methodName;
private String group;
private String version;
public MetricsCollectExecutor(DefaultMetricsCollector collector, Invocation invocation) {
init(invocation);
this.collector = collector;
this.invocation = invocation;
}
public void beforeExecute() {
collector.increaseTotalRequests(interfaceName, methodName, group, version);
collector.increaseProcessingRequests(interfaceName, methodName, group, version);
invocation.put(METRIC_FILTER_START_TIME, System.currentTimeMillis());
}
public void postExecute(Result result) {
if (result.hasException()) {
this.throwExecute(result.getException());
return;
}
collector.increaseSucceedRequests(interfaceName, methodName, group, version);
endExecute();
}
public void throwExecute(Throwable throwable){
if (throwable instanceof RpcException) {
RpcException rpcException = (RpcException)throwable;
if (rpcException.isBiz()) {
collector.businessFailedRequests(interfaceName, methodName, group, version);
}else{
collector.increaseFailedRequests(interfaceName, methodName, group, version);
}
}
endExecute(()-> throwable instanceof RpcException && ((RpcException) throwable).isBiz());
}
private void endExecute(){
this.endExecute(() -> true);
}
private void endExecute(Supplier<Boolean> rtStat){
if (rtStat.get()) {
Long endTime = System.currentTimeMillis();
Long beginTime = (Long) invocation.get(METRIC_FILTER_START_TIME);
Long rt = endTime - beginTime;
collector.addRT(interfaceName, methodName, group, version, rt);
}
collector.decreaseProcessingRequests(interfaceName, methodName, group, version);
}
private void init(Invocation invocation) {
String serviceUniqueName = invocation.getTargetServiceUniqueName();
String methodName = invocation.getMethodName();
String group = null;
String interfaceAndVersion;
String[] arr = serviceUniqueName.split("/");
if (arr.length == 2) {
group = arr[0];
interfaceAndVersion = arr[1];
} else {
interfaceAndVersion = arr[0];
}
String[] ivArr = interfaceAndVersion.split(":");
String interfaceName = ivArr[0];
String version = ivArr.length == 2 ? ivArr[1] : null;
this.interfaceName = interfaceName;
this.methodName = methodName;
this.group = group;
this.version = version;
}
}