You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MongoDB has no metric for the pages hit, so the exporter doesn't have it either. I am trying to devise a logic to get, at least, a close hit ratio. I am thinking about something like that below, and I would like to have some help from the community, if possible. :)
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi all,
MongoDB has no metric for the pages hit, so the exporter doesn't have it either. I am trying to devise a logic to get, at least, a close hit ratio. I am thinking about something like that below, and I would like to have some help from the community, if possible. :)
(mongodb_mongod_wiredtiger_cache_pages_total{} - mongodb_mongod_wiredtiger_cache_evicted_total{type="unmodified"}) / mongodb_mongod_wiredtiger_cache_pages_total{} * 100
mongodb_mongod_wiredtiger_cache_pages_total{} - mongodb_mongod_wiredtiger_cache_evicted_total{type="unmodified"} would be the hit part.
What do you think?
Thx in advance,
Beta Was this translation helpful? Give feedback.
All reactions