Merge pull request #819 from peng-yongsheng/feature/graphql_protocol

Change the data type of sla and apdex attributes from Float to Int.
This commit is contained in:
Gao Hongtao 2018-02-14 09:29:07 +08:00 committed by GitHub
commit 787f26244b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 6 deletions

View File

@ -4,17 +4,17 @@ type ApplicationNode implements Node {
name: String!
type: String
# Success rate of all incoming requests.
# Max value is 100.
# 2 Digits after floating point.
sla: Float!
# Max value is 10000.
# 2 Digits after floating point in UI, need to division by 100. 10000 -> 100.00
sla: Int!
# The number of incoming calls
callsPerSec: Long!
# Unit: millisecond
responseTimePerSec: Long!
# ref: http://www.apdex.org/
# Max value is 1
# 2 Digits after floating point.
apdex: Float!
# Max value is 100
# 2 Digits after floating point in UI, need to division by 100. 100 -> 1.00
apdex: Int!
# Whether the application alerts?
# Default value is false.
isAlarm: Boolean!