Skip to content

Commit

Permalink
Document new stats in _cat/nodes (elastic#60445)
Browse files Browse the repository at this point in the history
  • Loading branch information
danhermann committed Aug 31, 2020
1 parent 5723b92 commit fad6511
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
6 changes: 6 additions & 0 deletions docs/reference/cat/nodes.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,12 @@ Used query cache memory, such as `0b`.
`query_cache.evictions`, `qce`, `queryCacheEvictions`::
Query cache evictions, such as `0`.

`query_cache.hit_count`, `qchc`, `queryCacheHitCount`::
Query cache hit count, such as `0`.

`query_cache.miss_count`, `qcmc`, `queryCacheMissCount`::
Query cache miss count, such as `0`.

`request_cache.memory_size`, `rcm`, `requestCacheMemory`::
Used request cache memory, such as `0b`.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,8 +183,7 @@ protected Table getTableWithHeader(final RestRequest request) {
table.addCell("query_cache.miss_count",
"alias:qcmc,queryCacheMissCount;default:false;text-align:right;desc:query cache miss counts");

table.addCell("request_cache.memory_size",
"alias:rcm,requestCacheMemory;default:false;text-align:right;desc:used request cache");
table.addCell("request_cache.memory_size", "alias:rcm,requestCacheMemory;default:false;text-align:right;desc:used request cache");
table.addCell("request_cache.evictions",
"alias:rce,requestCacheEvictions;default:false;text-align:right;desc:request cache evictions");
table.addCell("request_cache.hit_count",
Expand Down

0 comments on commit fad6511

Please sign in to comment.