mirror of
https://github.com/wahyd4/pinpoint.git
synced 2026-08-26 05:06:34 +10:00
[강운덕] [LUCYSUS-1744] hbase 저장시의 데이터를 컴팩트하게 함.
git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-web/trunk@808 84d0f5b1-2673-498c-a247-62c4ff18d310
This commit is contained in:
@@ -2,6 +2,8 @@ package com.nhn.hippo.web.controller;
|
||||
|
||||
import java.util.Set;
|
||||
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Controller;
|
||||
import org.springframework.ui.Model;
|
||||
@@ -22,6 +24,8 @@ import com.nhn.hippo.web.vo.TraceId;
|
||||
@Controller
|
||||
public class FlowChartController {
|
||||
|
||||
private final Logger logger = LoggerFactory.getLogger(this.getClass());
|
||||
|
||||
@Autowired
|
||||
private FlowChartService flow;
|
||||
|
||||
@@ -35,7 +39,7 @@ public class FlowChartController {
|
||||
model.addAttribute("nodes", callTree.getNodes());
|
||||
model.addAttribute("links", callTree.getLinks());
|
||||
|
||||
System.out.println(callTree.toString());
|
||||
logger.debug("callTree:{}", callTree);
|
||||
|
||||
return "flow";
|
||||
}
|
||||
@@ -51,7 +55,7 @@ public class FlowChartController {
|
||||
model.addAttribute("links", callTree.getLinks());
|
||||
model.addAttribute("businessTransactions", callTree.getBusinessTransactions().iterator());
|
||||
|
||||
System.out.println(callTree.toString());
|
||||
logger.debug("callTree:{}", callTree);
|
||||
|
||||
return "flowserver";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user