Merge pull request #3689 from sfc-gh-xwang/tag-report

add throttle objects into Schemas.cpp
This commit is contained in:
Trevor Clinkenbeard 2020-08-24 17:23:00 -07:00 committed by GitHub
commit 3e39f01496
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 5 deletions

View File

@ -319,7 +319,7 @@
"count" : 0
},
"manual" : {
"count" : 1
"count" : 0
},
"recommend" : {
"busy_read" : 0,

View File

@ -341,11 +341,18 @@ const KeyRef JSONSchemas::statusSchema = LiteralStringRef(R"statusSchema(
"batch_released_transactions_per_second":0,
"released_transactions_per_second":0,
"throttled_tags":{
"auto":{
"count":0
"auto" : {
"busy_read" : 0,
"busy_write" : 0,
"count" : 0
},
"manual":{
"count":0
"manual" : {
"count" : 0
},
"recommend" : {
"busy_read" : 0,
"busy_write" : 0,
"count" : 0
}
},
"limiting_queue_bytes_storage_server":0,