Fix typo in mongodb field name (#5299)
This commit is contained in:
parent
e95b88e01b
commit
2b8729e048
|
@ -97,7 +97,7 @@ Error in input [mongodb]: not authorized on admin to execute command { serverSta
|
||||||
- wtcache_app_threads_page_write_count (integer)
|
- wtcache_app_threads_page_write_count (integer)
|
||||||
- wtcache_bytes_read_into (integer)
|
- wtcache_bytes_read_into (integer)
|
||||||
- wtcache_bytes_written_from (integer)
|
- wtcache_bytes_written_from (integer)
|
||||||
- wtcache_pages_read_info (integer)
|
- wtcache_pages_read_into (integer)
|
||||||
- wtcache_pages_requested_from (integer)
|
- wtcache_pages_requested_from (integer)
|
||||||
- wtcache_current_bytes (integer)
|
- wtcache_current_bytes (integer)
|
||||||
- wtcache_max_bytes_configured (integer)
|
- wtcache_max_bytes_configured (integer)
|
||||||
|
|
|
@ -138,7 +138,7 @@ var WiredTigerExtStats = map[string]string{
|
||||||
"wtcache_bytes_read_into": "BytesReadInto",
|
"wtcache_bytes_read_into": "BytesReadInto",
|
||||||
"wtcache_pages_evicted_by_app_thread": "PagesEvictedByAppThread",
|
"wtcache_pages_evicted_by_app_thread": "PagesEvictedByAppThread",
|
||||||
"wtcache_pages_queued_for_eviction": "PagesQueuedForEviction",
|
"wtcache_pages_queued_for_eviction": "PagesQueuedForEviction",
|
||||||
"wtcache_pages_read_info": "PagesReadIntoCache",
|
"wtcache_pages_read_into": "PagesReadIntoCache",
|
||||||
"wtcache_pages_requested_from": "PagesRequestedFromCache",
|
"wtcache_pages_requested_from": "PagesRequestedFromCache",
|
||||||
"wtcache_server_evicting_pages": "ServerEvictingPages",
|
"wtcache_server_evicting_pages": "ServerEvictingPages",
|
||||||
"wtcache_worker_thread_evictingpages": "WorkerThreadEvictingPages",
|
"wtcache_worker_thread_evictingpages": "WorkerThreadEvictingPages",
|
||||||
|
|
Loading…
Reference in New Issue