mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-06 09:12:45 +01:00
only send loss if timestamp on data has changed
This commit is contained in:
@@ -2,9 +2,15 @@
|
||||
# This script returns the average of all the workers average capture loss to telegraf / influxdb in influx format include nanosecond precision timestamp
|
||||
{%- set WORKERS = salt['pillar.get']('sensor:zeek_lbprocs', salt['pillar.get']('sensor:zeek_pins') | length) %}
|
||||
ZEEKLOG=/host/nsm/zeek/spool/logger/capture_loss.log
|
||||
LASTCAPTURELOSSLOG=/script/lastcaptureloss.txt
|
||||
if [ -f "$ZEEKLOG" ]; then
|
||||
CURRENTTS=$(tail -1 $ZEEKLOG | jq .ts | sed 's/"//g')
|
||||
if [ -f "$LASTCAPTURELOSSLOG" ]; then
|
||||
LASTTS=$(cat /script/lastcaptureloss.txt)
|
||||
if [[ "$LASTTS" != "$CURRENTTS" ]]; then
|
||||
LOSS=$(tail -{{WORKERS}} $ZEEKLOG | awk -F, '{print $NF}' | sed 's/}//' | awk -F: '{LOSS += $2 / {{WORKERS}}} END { print LOSS}')
|
||||
TS=$(tail -1 $ZEEKLOG | jq .ts | sed 's/"//g')
|
||||
TSNANO=$(echo "$(date -d "$TS" +"%s.%N") 1000000000 * p" | dc | awk -F. {'print $1'})
|
||||
echo "zeekcaptureloss loss=$LOSS $TSNANO"
|
||||
echo "zeekcaptureloss loss=$LOSS"
|
||||
fi
|
||||
fi
|
||||
echo "$CURRENTS" > "$LASTCAPTURELOSSLOG"
|
||||
fi
|
||||
Reference in New Issue
Block a user