No Space left on device

Openhab does not run anymore because of missing space on device.
df -h shows that /dev/root is 100% in use and i dont know why. Also i cant find out, what exactly grew this much.

It runs on Raspberry with openhabian, Openhab 3.5.
any idea?

Something has written to disk until it got full. Are you sure it’s /dev/root? I have a recent openHABian and there is no such file system.

󰐿 huginn  rich  ~   18:47 
 df -h
Filesystem      Size  Used Avail Use% Mounted on
udev            327M     0  327M   0% /dev
tmpfs            93M  2.0M   91M   3% /run
/dev/mmcblk0p2   29G   12G   16G  43% /
tmpfs           461M     0  461M   0% /dev/shm
tmpfs           5.0M   16K  5.0M   1% /run/lock
/dev/mmcblk0p1  510M   95M  416M  19% /boot/firmware
/dev/zram1      336M  2.1M  307M   1% /opt/zram/zram1
/dev/zram2      452M   55M  363M  14% /opt/zram/zram2
tmpfs            93M     0   93M   0% /run/user/1000
overlay2        452M   55M  363M  14% /var/log
overlay1        336M  2.1M  307M   1% /var/lib/openhab/persistence

Notice that the root of the file system appears in the last column. That might give a clue.

The following command will give the top five directories by size in <path>.

du -a <path> | sort -n -r | head -n 5

Replace <path> with the value under “mounted on” in the game returned by df that corresponds to the full file system.