Change the data type from int to long which attributes named responseTimePerSec and callsPerSec.

This commit is contained in:
peng-yongsheng 2018-01-26 08:55:55 +08:00
parent 3438071374
commit 1510f7059d
2 changed files with 3 additions and 3 deletions

View File

@ -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.

View File

@ -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!
}