File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed
moss-service/src/main/java/org/xujin/moss/service/impl Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -128,12 +128,8 @@ public void update(AppModel appModel) {
128
128
@ Override
129
129
public ResultData getTraceTopology (String appName ) {
130
130
ResultData resultData = ResultData .builder ().build ();
131
- List <MenuModel > menuModels = menuService .getMenuByKey ("trace" );
132
- if (CollectionUtils .isEmpty (menuModels )) {
133
- log .info ("trace key is not exist" );
134
- resultData = ResultData .builder ().code (200 ).msgCode ("500" ).msgContent ("trace key is not exist" ).build ();
135
- }
136
- String traceBaseUrl = menuModels .get (0 ).getUrl ();
131
+ //Skywalking的URL
132
+ String traceBaseUrl = "" ;
137
133
//查询出SkyWalking中的所有应用信息
138
134
List <Application > applications = findAllApplications (traceBaseUrl );
139
135
String targetApplicationId = null ;
You can’t perform that action at this time.
0 commit comments