Fix distinct in Service/Instance/Endpoint query is not working. (#7482)
This commit is contained in:
parent
09cc0f96a7
commit
c04b4e0e51
|
|
@ -43,6 +43,7 @@ Release Notes.
|
|||
* Remove the duplicated tags to reduce the storage payload.
|
||||
* Add a new API to test log analysis language.
|
||||
* Harden the security of Groovy-based DSL, MAL and LAL.
|
||||
* Fix distinct in Service/Instance/Endpoint query is not working.
|
||||
|
||||
#### UI
|
||||
|
||||
|
|
|
|||
|
|
@ -18,14 +18,13 @@
|
|||
|
||||
package org.apache.skywalking.oap.server.core.query.type;
|
||||
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
/**
|
||||
*
|
||||
**/
|
||||
@Getter
|
||||
@Setter
|
||||
@EqualsAndHashCode
|
||||
public class Database {
|
||||
private String id;
|
||||
private String name;
|
||||
|
|
|
|||
|
|
@ -18,11 +18,13 @@
|
|||
|
||||
package org.apache.skywalking.oap.server.core.query.type;
|
||||
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
@EqualsAndHashCode
|
||||
public class Endpoint {
|
||||
private String id;
|
||||
private String name;
|
||||
|
|
|
|||
|
|
@ -18,11 +18,13 @@
|
|||
|
||||
package org.apache.skywalking.oap.server.core.query.type;
|
||||
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
@EqualsAndHashCode
|
||||
public class Service {
|
||||
private String id;
|
||||
private String name;
|
||||
|
|
|
|||
|
|
@ -20,11 +20,13 @@ package org.apache.skywalking.oap.server.core.query.type;
|
|||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
import org.apache.skywalking.oap.server.core.query.enumeration.Language;
|
||||
|
||||
@Getter
|
||||
@EqualsAndHashCode
|
||||
public class ServiceInstance {
|
||||
@Setter
|
||||
private String id;
|
||||
|
|
|
|||
Loading…
Reference in New Issue