Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"unit": "Nanoseconds"
},
"index_cache_hits": {
"help": "The number of times the required index page for both scan and mutations is found in memory, for this index",
"help": "The number of times the required index page for both scan and mutations is found in memory, for this index. It is normal to see activity in `index_cache_hits` even when no index scans are occurring. This is because the metric track memory access for both scans and mutations. When an index is updated, the system checks if the relevant record is in memory; a successful find is recorded as a hit.",
"labels": [
"bucket",
"scope",
Expand All @@ -65,7 +65,7 @@
"type": "counter"
},
"index_cache_misses": {
"help": "The number of times the required index page for both scan and mutations is NOT found in memory, for this index",
"help": "The number of times the required index page for both scan and mutations is NOT found in memory, for this index. It is normal to see activity in `index_cache_misses` even when no index scans are occurring. This is because the metric tracks memory access for both scans and mutations. When an index is updated, the system checks if the relevant record is in memory; if a disk fetch is required, it is recorded as a miss.",
"labels": [
"bucket",
"scope",
Expand Down
2 changes: 1 addition & 1 deletion modules/metrics-reference/partials/metrics.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
[TIP.key]
====
* The [.edition]#x.y.z# badge shows the Couchbase Server version the metric was added in.
* The [.status]#type / unit# badge shows shows the Prometheus
* The [.status]#type / unit# badge shows the Prometheus
https://prometheus.io/docs/tutorials/understanding_metric_types/[type] and
https://prometheus.io/docs/practices/naming/#base-units[unit] (if present).
====
Expand Down