π¦ ClawHub
Log Sift
by @albionaiinc-del
Filter large log files by keywords and date ranges quickly from the command line for efficient troubleshooting and analysis.
π‘ Examples
# Filter by keyword
log_sift application.log -k "ERROR" -k "timeout"Filter by date range
log_sift application.log --since "2023-05-01 14:00:00" --until "2023-05-01 15:00:00"From stdin
tail -n 1000 app.log | log_sift -k "failed" --since "2023-05-01"Mixed filtering
log_sift -k "Warning" --since "2023-05-01" server.log
TERMINAL
clawhub install log-sift