Skip to content
This repository was archived by the owner on Aug 16, 2022. It is now read-only.

Commit 4699f09

Browse files
committed
Adds missing statistics
1 parent 74cfba0 commit 4699f09

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

docs/knn/settings.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ GET /_opendistro/_knn/nodeId1,nodeId2/stats/statName1,statName2
5151

5252
Statistic | Description
5353
:--- | :---
54-
totalLoadTime | The time in nanoseconds that KNN has taken to load graphs into the cache.
55-
evictionCount | The number of graphs that have been evicted from the cache due to memory constraints or idle time.
56-
hitCount | The number of cache hits.
57-
cacheCapacityReached | Whether `knn.memory.circuit_breaker.limit` has been reached.
58-
loadSuccessCount | The number of times KNN successfully loaded a graph into the cache.
59-
graphMemoryUsage | Current cache size (total size of all graphs in memory) in kilobytes.
60-
missCount | The number of cache misses.
61-
loadExceptionCount | The number of times an exception occurred when trying to load a graph into the cache.
54+
`totalLoadTime` | The time in nanoseconds that KNN has taken to load graphs into the cache.
55+
`evictionCount` | The number of graphs that have been evicted from the cache due to memory constraints or idle time.
56+
`hitCount` | The number of cache hits. A cache hit occurs when a user queries a graph and it is already loaded into memory.
57+
`cacheCapacityReached` | Whether `knn.memory.circuit_breaker.limit` has been reached.
58+
`loadSuccessCount` | The number of times KNN successfully loaded a graph into the cache.
59+
`graphMemoryUsage` | Current cache size (total size of all graphs in memory) in kilobytes.
60+
`missCount` | The number of cache misses. A cache miss occurs when a user queries a graph and it has not yet been loaded into memory.
61+
`loadExceptionCount` | The number of times an exception occurred when trying to load a graph into the cache.

0 commit comments

Comments
 (0)