Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Add comment WRT inode exhaustion. #83

Merged
merged 2 commits into from
Apr 18, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion docs/protocol/js-ceramic/nodes/running-a-node.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,13 @@ sudo apt install logrotate
```bash
sudo systemctl enable logrotate
sudo systemctl start logrotate
```
```

### Monitoring

It is strongly recommended to use your existing monitoring system to collect and process the [metrics offered by the node](../../../guides/composedb-server/server-configuration.mdx). In addition to those, it is strongly recommended to monitor and avoid exhaustion of:

* the amount of free space available on all relevant filesystems
* the amount of free [inodes](https://en.wikipedia.org/wiki/Inode) on all filesystems containing IPFS files

These can be checked by hand using `df -h` for space and `df -i` for inodes.
Loading