All checks were successful
CI / skip-ci-check (pull_request) Successful in 1m23s
CI / lint-and-type-check (pull_request) Successful in 1m47s
CI / test (pull_request) Successful in 1m52s
CI / build (pull_request) Successful in 1m52s
CI / secret-scanning (pull_request) Successful in 1m24s
CI / dependency-scan (pull_request) Successful in 1m28s
CI / sast-scan (pull_request) Successful in 2m23s
CI / workflow-summary (pull_request) Successful in 1m21s
93 lines
3.0 KiB
Bash
Executable File
93 lines
3.0 KiB
Bash
Executable File
#!/bin/bash
|
|
# Watch user activity logs in real-time
|
|
<<<<<<< HEAD
|
|
#
|
|
# This script monitors logs for MirrorMatch activity.
|
|
# It can watch systemd journal logs OR application log files.
|
|
#
|
|
# Usage: ./watch-activity.sh [logfile]
|
|
# - No argument: Try systemd journal (requires systemd service)
|
|
# - With argument: Watch specified log file (e.g., ./watch-activity.sh /tmp/mirrormatch-server.log)
|
|
#
|
|
# For local development:
|
|
# - If running via rebuild.sh: ./watch-activity.sh /tmp/mirrormatch-server.log
|
|
# - If running via npm run dev: ./watch-activity.sh app.log (if you redirect output)
|
|
# - If running as systemd service: ./watch-activity.sh (uses journalctl)
|
|
|
|
LOG_FILE="${1:-}"
|
|
=======
|
|
# Usage: ./watch-activity.sh
|
|
>>>>>>> gitea/main
|
|
|
|
echo "Watching user activity logs..."
|
|
echo "Press Ctrl+C to stop"
|
|
echo ""
|
|
|
|
<<<<<<< HEAD
|
|
if [ -n "$LOG_FILE" ]; then
|
|
# Watch log file
|
|
if [ ! -f "$LOG_FILE" ]; then
|
|
echo "⚠ Warning: Log file '$LOG_FILE' does not exist yet."
|
|
echo " Waiting for it to be created (will wait up to 30 seconds)..."
|
|
echo ""
|
|
# Wait for file to be created
|
|
for i in {1..30}; do
|
|
if [ -f "$LOG_FILE" ]; then
|
|
echo "✓ Log file created"
|
|
break
|
|
fi
|
|
sleep 1
|
|
done
|
|
if [ ! -f "$LOG_FILE" ]; then
|
|
echo "❌ Log file still doesn't exist after 30 seconds"
|
|
echo " Make sure the server is running: ./rebuild.sh prod"
|
|
exit 1
|
|
fi
|
|
fi
|
|
tail -f "$LOG_FILE" 2>/dev/null | grep -E "\[ACTIVITY\]|\[PHOTO_UPLOAD\]|\[GUESS_SUBMIT\]|Activity:|INFO.*Activity:" || {
|
|
echo "⚠ No activity logs found. Make sure:"
|
|
echo " 1. Server is running"
|
|
echo " 2. LOG_LEVEL is set to INFO or DEBUG"
|
|
echo " 3. Users are actually using the site"
|
|
}
|
|
elif systemctl is-active --quiet app-backend 2>/dev/null; then
|
|
# Use systemd journal if service is active
|
|
echo "Using systemd journal (app-backend service)"
|
|
echo ""
|
|
sudo journalctl -u app-backend -f | grep -E "\[ACTIVITY\]|\[PHOTO_UPLOAD\]|\[GUESS_SUBMIT\]|Activity:|INFO.*Activity:"
|
|
else
|
|
# Try common log file locations
|
|
echo "Systemd service not found. Trying common log file locations..."
|
|
echo ""
|
|
|
|
LOG_FILES=(
|
|
"/tmp/mirrormatch-server.log"
|
|
"app.log"
|
|
"./app.log"
|
|
"/var/log/mirrormatch/app.log"
|
|
)
|
|
|
|
FOUND=false
|
|
for log in "${LOG_FILES[@]}"; do
|
|
if [ -f "$log" ]; then
|
|
echo "Found log file: $log"
|
|
echo ""
|
|
tail -f "$log" | grep -E "\[ACTIVITY\]|\[PHOTO_UPLOAD\]|\[GUESS_SUBMIT\]|Activity:|INFO.*Activity:"
|
|
FOUND=true
|
|
break
|
|
fi
|
|
done
|
|
|
|
if [ "$FOUND" = false ]; then
|
|
echo "❌ No log file found. Options:"
|
|
echo " 1. Specify log file: ./watch-activity.sh /path/to/logfile"
|
|
echo " 2. If using rebuild.sh, logs go to: /tmp/mirrormatch-server.log"
|
|
echo " 3. If using systemd, ensure app-backend service is running"
|
|
exit 1
|
|
fi
|
|
fi
|
|
=======
|
|
# Watch for activity logs (ACTIVITY, PHOTO_UPLOAD, GUESS_SUBMIT)
|
|
sudo journalctl -u app-backend -f | grep -E "\[ACTIVITY\]|\[PHOTO_UPLOAD\]|\[GUESS_SUBMIT\]"
|
|
>>>>>>> gitea/main
|