summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorthiagoftsm <thiagoftsm@gmail.com>2021-04-15 17:11:15 +0000
committerGitHub <noreply@github.com>2021-04-15 17:11:15 +0000
commitf458c64bac54eb89e7a873f7b8d4b9327e238f8d (patch)
tree6b4bdacb50ade32d22da1b339085425ec328140d /web
parent8b744094388019122513eb83c6aaa21f335bfa2c (diff)
Remove condition that was creating gaps on cachestat (#10972)
Diffstat (limited to 'web')
-rw-r--r--web/gui/dashboard_info.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/gui/dashboard_info.js b/web/gui/dashboard_info.js
index 02fe060ecd..3f36e176cd 100644
--- a/web/gui/dashboard_info.js
+++ b/web/gui/dashboard_info.js
@@ -1035,7 +1035,7 @@ netdataDashboard.context = {
},
'mem.cachestat_ratio': {
- info: 'When the processor needs to read or write a location in main memory, it checks for a corresponding entry in the page cache. If the entry is there, a page cache hit has occurred and the read is from the cache. If the entry is not there, a page cache miss has occurred and the kernel allocates a new entry and copies in data from the disk. Netdata calculates the percentage of accessed files that are cached on memory. <a href="https://github.com/iovisor/bcc/blob/master/tools/cachestat.py#L126-L138" target="_blank">The ratio</a> is calculated counting the accessed cached pages (without counting dirty pages and pages added because of read misses) divided by total access without dirty pages. The algorithm will not plot data when ratio is zero and our dashboard will interpolate the plot. '
+ info: 'When the processor needs to read or write a location in main memory, it checks for a corresponding entry in the page cache. If the entry is there, a page cache hit has occurred and the read is from the cache. If the entry is not there, a page cache miss has occurred and the kernel allocates a new entry and copies in data from the disk. Netdata calculates the percentage of accessed files that are cached on memory. <a href="https://github.com/iovisor/bcc/blob/master/tools/cachestat.py#L126-L138" target="_blank">The ratio</a> is calculated counting the accessed cached pages (without counting dirty pages and pages added because of read misses) divided by total access without dirty pages.'
},
'mem.cachestat_dirties': {