summaryrefslogtreecommitdiffstats
path: root/collectors/slabinfo.plugin
AgeCommit message (Collapse)Author
2021-01-07Docs housekeeping for SEO and syntax, part 1 (#10388)Joel Hans
* First pass to get the script working right * Finish adding analytics tags
2020-10-22Fix platform dependent printf format (#10120)Adrien Mahieux
2020-03-10Bulk add frontmatter to all documentation (#8354)Joel Hans
* Bulk add frontmatter * A few extra edge cases
2019-10-11Disable slabinfo plugin by default (#7056)Vladimir Kobal
2019-09-20[collector/slabinfo] Fix pagesize not defined in non-x86 arches (#6897)Adrien Mahieux
* [collector/slabinfo] Fix pagesize not defined in non-x86 arches Fixes #6896 : Fail to build on raspberry pi Some arches does not export PAGE_SIZE in sys/user.h Changed constant to static var fetched from POSIX sysconf(_SC_PAGESIZE)
2019-09-18Collector slabinfo (#6800)Adrien Mahieux
### Summary Provide new collector parsing `/proc/slabinfo` to provide details on kernel slab structures. Asked by issue #13 (very happy for the oldest issue in backlog) ##### Component Name collectors/slabinfo.plugin ##### Additional Information This slabinfo details allows to have clues on actions done on your system. In the following screenshot, you can clearly see a `find` done on a ext4 filesystem (the number of `ext4_inode_cache` & `dentry` are rising fast), and a few seconds later, an admin issued a `echo 3 > /proc/sys/vm/drop_cached` as their count dropped.