One line for nginx logs with goaccess zcat /var

One line for nginx logs with goaccess

zcat /var/log/nginx/mydomain_access.log.*.gz | goaccess /var/log/nginx/mydomain_access.log /var/log/nginx/mydomain_access.log.1 - --log-format=COMBINED

Vytvořeno 4y | 28. 5. 2020 14:00:30


Chcete-li přidat komentář, přihlaste se

Ostatní příspěvky v této skupině

Download youtube video and extract audio into mp3
./yt-dlp_linux $URL -x --audio-format mp3
4. 3. 2023 19:01:10 | Quick commands
Quick convert from hex to dec

echo $((16#FF))

16 - numerical system FF - number in specified numerical system

19. 11. 2022 13:38:47 | Quick commands
Last 10 files based on last changes

find -ctime -2 -name "*.php" -not -path "./vendor/*" -not -path "./var/*" -not -path "./migrations/*" -printf "%T@ %Tc %p\n" | head -10

19. 11. 2022 13:31:26 | Quick commands
Windows - how to run program with input from file on command line

cmd.exe /c ".\main.exe < .\text.txt"

1. 11. 2020 20:57:35 | Quick commands
Faster way to delete large number of files on linux

rsync -a --delete empty/ x

20. 8. 2020 14:30:21 | Quick commands
Start chrome with insecure (self signed) certificates

chrome.exe --ignore-certificate-errors --unsafely-treat-insecure-origin-as-secure=https://www.devdomain.com/

17. 8. 2020 8:24:33 | Quick commands
Sort folders by their sizes

du -sBM * | sort -n

20. 7. 2020 18:23:43 | Quick commands