Change the data type from int to long which attributes named responseTimePerSec and callsPerSec.
This commit is contained in:
parent
3438071374
commit
1510f7059d
|
|
@ -10,7 +10,7 @@ type ApplicationNode implements Node {
|
|||
# The number of incoming calls
|
||||
callsPerSec: Long!
|
||||
# Unit: millisecond
|
||||
responseTimePerSec: Int!
|
||||
responseTimePerSec: Long!
|
||||
# ref: http://www.apdex.org/
|
||||
# Max value is 1
|
||||
# 2 Digits after floating point.
|
||||
|
|
|
|||
|
|
@ -104,7 +104,7 @@ type Call {
|
|||
isAlert: Boolean
|
||||
# The protocol and tech stack used in this distributed call
|
||||
callType: String!
|
||||
callsPerSec: Int!
|
||||
callsPerSec: Long!
|
||||
# Unit: millisecond
|
||||
responseTimePerSec: Int!
|
||||
responseTimePerSec: Long!
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue