mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-06 17:22:49 +01:00
7 lines
190 B
Bash
7 lines
190 B
Bash
#!/bin/bash
|
|
|
|
UNPARSED=$(redis-cli llen logstash:unparsed | awk '{print $1}')
|
|
PARSED=$(redis-cli llen logstash:parsed | awk '{print $1}')
|
|
|
|
echo "redisqueue unparsed=$UNPARSED,parsed=$PARSED"
|