summaryrefslogtreecommitdiffstats
path: root/health/guides/disks/disk_inode_usage.md
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-03-09 13:19:48 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-03-09 13:20:02 +0000
commit58daab21cd043e1dc37024a7f99b396788372918 (patch)
tree96771e43bb69f7c1c2b0b4f7374cb74d7866d0cb /health/guides/disks/disk_inode_usage.md
parentReleasing debian version 1.43.2-1. (diff)
downloadnetdata-58daab21cd043e1dc37024a7f99b396788372918.tar.xz
netdata-58daab21cd043e1dc37024a7f99b396788372918.zip
Merging upstream version 1.44.3.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'health/guides/disks/disk_inode_usage.md')
-rw-r--r--health/guides/disks/disk_inode_usage.md23
1 files changed, 23 insertions, 0 deletions
diff --git a/health/guides/disks/disk_inode_usage.md b/health/guides/disks/disk_inode_usage.md
new file mode 100644
index 000000000..3c9161063
--- /dev/null
+++ b/health/guides/disks/disk_inode_usage.md
@@ -0,0 +1,23 @@
+### Understand the alert
+
+This alarm presents the percentage of used `inodes` storage of a particular disk.
+
+The number of `inodes` indicates the number of files and folders you have. An `inode` is a data structure, containing metadata about a file. All filenames are internally mapped to respective `inode` numbers, so if you have a
+lot of files, it means there are a lot of `inodes`.
+
+If the alarm is raised, it means that your storage device is running out of `inode` space. Each disk has a particular **limitation on the amount of `inodes` it can store**, determined by its size.
+
+Many modern filesystems use dynamically allocated `inodes` instead of a static table. These should not be presented on the charts associated with this alarm, and should not ever trigger it. If such a filesystem **does** trigger this alarm, and it's constantly reporting max `inode` usage, it's probably a bug in the filesystem driver. Some such filesystems incorrectly report having max `inode` count when they should not because they have no max limit, and in turn they trigger a false positive alarm.
+
+### Troubleshoot the alert
+
+Clear cache files or delete unnecessary files and folders
+
+- To reduce the amount of how many `inodes` you store currently, you can clear your cache, trash any unnecessary files and folders in your system.
+
+We strongly suggest that you practice a high degree of caution when cleaning up drives, and removing files, make sure that you are certain that you delete only unnecessary files.
+
+### Useful resources
+
+[Linux Inodes](https://www.javatpoint.com/linux-inodes)
+[Understanding UNIX / Linux filesystem Inodes](https://www.cyberciti.biz/tips/understanding-unixlinux-filesystem-inodes.html) \ No newline at end of file