Fixed the startup failure cause by query protocol. (#1623)
This commit is contained in:
parent
b12a4e68fb
commit
73679fc0f0
|
|
@ -19,13 +19,11 @@
|
|||
package org.apache.skywalking.oap.query.graphql.resolver;
|
||||
|
||||
import com.coxautodev.graphql.tools.GraphQLQueryResolver;
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
import org.apache.skywalking.oap.query.graphql.type.TopNCondition;
|
||||
import org.apache.skywalking.oap.query.graphql.type.TopNEntity;
|
||||
import java.util.*;
|
||||
import org.apache.skywalking.oap.query.graphql.type.*;
|
||||
|
||||
public class AggregationQuery implements GraphQLQueryResolver {
|
||||
public List<TopNEntity> getTopN(final TopNCondition condition) {
|
||||
public List<TopNEntity> getTopN(final TopNCondition condition, final Duration duration) {
|
||||
return Collections.emptyList();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,8 +21,6 @@ package org.apache.skywalking.oap.query.graphql.type;
|
|||
public class Call {
|
||||
private String source;
|
||||
private String target;
|
||||
private boolean isAlert;
|
||||
private String callType;
|
||||
private long cpm;
|
||||
private long avgResponseTime;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ package org.apache.skywalking.oap.query.graphql.type;
|
|||
|
||||
public class ClusterBrief {
|
||||
private int numOfService;
|
||||
private int numOfServiceInstance;
|
||||
private int numOfEndpoint;
|
||||
private int numOfDatabase;
|
||||
private int numOfCache;
|
||||
private int numOfMQ;
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit ebbeb721d95bba8ee63bc2e706e877ee3a56433e
|
||||
Subproject commit 149251420c887552df93d5c76f67ccdd47cb71ce
|
||||
|
|
@ -1 +1 @@
|
|||
Subproject commit f9c602936ab4f386576bf16f203efac61962e424
|
||||
Subproject commit ad3ee45dbadfae35d77238bdd7a1df593158f109
|
||||
Loading…
Reference in New Issue