telegraf/plugins/system/ps/mem
subhachandrachandra 13ee9ff37b Fixed memory reporting for Linux systems
/proc/meminfo reports memory in KiloBytes and so needs a multiplier of 1024 instead of 1000.
The kernel reports in terms of pages and the proc filesystem is left shifting by 2 for 4KB pages to get KB. Since this is a binary shift, Bytes will need to shift by 10 and so get multiplied by 1024.

From the kernel code. PAGE_SHIFT = 12 for 4KB pages
"MemTotal:       %8lu kB\n", K(i.totalram)
2015-08-21 16:08:54 -07:00
..
mem.go Vendor psutils and remove neko 2015-04-03 17:22:31 -07:00
mem_darwin.go Fixed total memory reporting for Darwin systems. hw.memsize is reported as bytes instead of pages. 2015-08-21 15:15:19 -07:00
mem_freebsd.go Tivan is dead, long live Telegraf. Fixes #3 2015-05-22 16:45:14 -07:00
mem_linux.go Fixed memory reporting for Linux systems 2015-08-21 16:08:54 -07:00
mem_test.go Vendor psutils and remove neko 2015-04-03 17:22:31 -07:00
mem_windows.go Tivan is dead, long live Telegraf. Fixes #3 2015-05-22 16:45:14 -07:00