mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-06 09:12:45 +01:00
6 lines
199 B
Bash
6 lines
199 B
Bash
#!/bin/bash
|
|
|
|
# Gzip the eve logs
|
|
find /nsm/suricata/eve*.json -type f -printf '%T@\t%p\n' | sort -t $'\t' -g | head -n -1 | cut -d $'\t' -f 2 | xargs nice gzip >/dev/null 2>&1
|
|
|
|
# TODO Add stats log |