Nextcloud Logdatei in lesbarem Format
Nextcloud legt seine Logdatei im JSON-Format an. Die ist aber für Menschen schwer lesbar. Dafür gibt es glücklicherweise einige Tools die einem das Leben erleichtern.
jq
Command-line JSON processor
apt install jq
tail -f nextcloud.log | jq
lnav
ncurses-based log file viewer
apt install lnav
lnav nextcloud.log
? see help
g go to top of file
G go to bottom of file
P turn on pretty print, which will show JSON in a structured way
occ
Nextcloud’s command-line interface
occ log
occ log:tail
occ log:watch