當前位置: 首頁>>代碼示例>>Java>>正文


Java RpcContext.getRemoteHost方法代碼示例

本文整理匯總了Java中com.alibaba.dubbo.rpc.RpcContext.getRemoteHost方法的典型用法代碼示例。如果您正苦於以下問題:Java RpcContext.getRemoteHost方法的具體用法?Java RpcContext.getRemoteHost怎麽用?Java RpcContext.getRemoteHost使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在com.alibaba.dubbo.rpc.RpcContext的用法示例。


在下文中一共展示了RpcContext.getRemoteHost方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: collect

import com.alibaba.dubbo.rpc.RpcContext; //導入方法依賴的package包/類
private void collect(Invoker<?> invoker, Invocation invocation, Result result, RpcContext context, long start, boolean error) {
    try {
        // ---- 服務信息獲取 ----
        long elapsed = System.currentTimeMillis() - start; // 計算調用耗時
        int concurrent = getConcurrent(invoker, invocation).get(); // 當前並發數
        String application = invoker.getUrl().getParameter(Constants.APPLICATION_KEY);
        String service = invoker.getInterface().getName(); // 獲取服務名稱
        String method = RpcUtils.getMethodName(invocation); // 獲取方法名
        URL url = invoker.getUrl().getUrlParameter(Constants.MONITOR_KEY);
        Monitor monitor = monitorFactory.getMonitor(url);
        int localPort;
        String remoteKey;
        String remoteValue;
        if (Constants.CONSUMER_SIDE.equals(invoker.getUrl().getParameter(Constants.SIDE_KEY))) {
            // ---- 服務消費方監控 ----
            context = RpcContext.getContext(); // 消費方必須在invoke()之後獲取context信息
            localPort = 0;
            remoteKey = MonitorService.PROVIDER;
            remoteValue = invoker.getUrl().getAddress();
        } else {
            // ---- 服務提供方監控 ----
            localPort = invoker.getUrl().getPort();
            remoteKey = MonitorService.CONSUMER;
            remoteValue = context.getRemoteHost();
        }
        String input = "", output = "";
        if (invocation.getAttachment(Constants.INPUT_KEY) != null) {
            input = invocation.getAttachment(Constants.INPUT_KEY);
        }
        if (result != null && result.getAttachment(Constants.OUTPUT_KEY) != null) {
            output = result.getAttachment(Constants.OUTPUT_KEY);
        }
        monitor.collect(new URL(Constants.COUNT_PROTOCOL,
                            NetUtils.getLocalHost(), localPort,
                            service + "/" + method,
                            MonitorService.APPLICATION, application,
                            MonitorService.INTERFACE, service,
                            MonitorService.METHOD, method,
                            remoteKey, remoteValue,
                            error ? MonitorService.FAILURE : MonitorService.SUCCESS, "1",
                            MonitorService.ELAPSED, String.valueOf(elapsed),
                            MonitorService.CONCURRENT, String.valueOf(concurrent),
                            Constants.INPUT_KEY, input,
                            Constants.OUTPUT_KEY, output));
    } catch (Throwable t) {
        logger.error("Failed to monitor count service " + invoker.getUrl() + ", cause: " + t.getMessage(), t);
    }
}
 
開發者ID:dachengxi,項目名稱:EatDubbo,代碼行數:49,代碼來源:MonitorFilter.java


注:本文中的com.alibaba.dubbo.rpc.RpcContext.getRemoteHost方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。