mirror of
https://github.com/wahyd4/pinpoint.git
synced 2026-08-17 08:46:22 +10:00
[강운덕] [WEB-102] 코드 정리.
git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-web/trunk@3601 84d0f5b1-2673-498c-a247-62c4ff18d310
This commit is contained in:
@@ -33,9 +33,9 @@ public class MainController {
|
||||
@ResponseBody
|
||||
public ApplicationGroup getApplicationGroup() {
|
||||
List<Application> applicationList = commonService.selectAllApplicationNames();
|
||||
logger.debug("/applications, {}", applicationList);
|
||||
logger.debug("/applications {}", applicationList);
|
||||
|
||||
return new ApplicationGroup(applicationList);
|
||||
return new ApplicationGroup(applicationList);
|
||||
}
|
||||
|
||||
@RequestMapping(value = "/serverTime", method = RequestMethod.GET)
|
||||
|
||||
@@ -82,6 +82,7 @@ public class FilteredMapServiceImpl implements FilteredMapService {
|
||||
}
|
||||
|
||||
@Override
|
||||
@Deprecated
|
||||
public LoadFactor linkStatistics(Range range, List<TransactionId> traceIdSet, Application sourceApplication, Application destinationApplication, Filter filter) {
|
||||
if (sourceApplication == null) {
|
||||
throw new NullPointerException("sourceApplication must not be null");
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
package com.nhn.pinpoint.web.view;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
|
||||
/**
|
||||
* @author emeroad
|
||||
*/
|
||||
@@ -11,6 +13,7 @@ public class ServerTime {
|
||||
this.currentServerTime = System.currentTimeMillis();
|
||||
}
|
||||
|
||||
@JsonProperty("currentServerTime")
|
||||
public long getCurrentServerTime() {
|
||||
return currentServerTime;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user