Fix missing parts.
This commit is contained in:
parent
eaef6f106c
commit
225903a92a
|
|
@ -1,3 +1,8 @@
|
|||
type Alarm {
|
||||
items: [AlarmItem!]!
|
||||
count: Int!
|
||||
}
|
||||
|
||||
type AlarmItem {
|
||||
# Typical include: Application Code + cause type. This is a short description.
|
||||
title: String!
|
||||
|
|
@ -21,5 +26,5 @@ enum CauseType {
|
|||
}
|
||||
|
||||
extend type Query {
|
||||
loadAlertList(keyword: String, alertType: AlarmType, duration:Duration!, paging: Pagination!):[AlarmItem!]!
|
||||
loadAlertList(keyword: String, alertType: AlarmType, duration:Duration!, paging: Pagination!): Alarm
|
||||
}
|
||||
|
|
@ -32,8 +32,8 @@ type ConjecturalNode implements Node {
|
|||
|
||||
|
||||
extend type Query {
|
||||
getAllApplication(duration: Duration!): [ApplicationNode]
|
||||
getAllApplication(duration: Duration!): [ApplicationNode!]!
|
||||
getApplicationTopology(applicationId: ID!, duration: Duration!): Topology
|
||||
getSlowService(applicationId: ID!, duration: Duration, top: Int!): [ServiceInfo!]
|
||||
getServerThroughput(applicationId: ID!, duration: Duration!, top: Int!): [AppServerInfo!]
|
||||
getSlowService(applicationId: ID!, duration: Duration!, top: Int!): [ServiceInfo!]!
|
||||
getServerThroughput(applicationId: ID!, duration: Duration!, top: Int!): [AppServerInfo!]!
|
||||
}
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ type TraceItem {
|
|||
}
|
||||
|
||||
extend type Query {
|
||||
searchService(keyword: String!, duration: Duration!): [ServiceNode]
|
||||
searchService(keyword: String!, duration: Duration!, topN: Int!): [ServiceNode!]!
|
||||
getServiceResponseTimeTrend(serviceId: ID!, duration: Duration!): ResponseTimeTrend
|
||||
getServiceTPSTrend(serviceId: ID!, duration: Duration!): ThroughputTrend
|
||||
getServiceSLATrend(serviceId: ID!, duration: Duration!): SLATrend
|
||||
|
|
|
|||
Loading…
Reference in New Issue