PCAP uploaded and processed, but no data in dashboards #778
Replies: 2 comments 1 reply
-
for First let's check your settings. These should all be $ grep _AUTO_ANALYZE_PCAP_FILES config/*.env
config/arkime-offline.env:ARKIME_AUTO_ANALYZE_PCAP_FILES=true
config/suricata-offline.env:SURICATA_AUTO_ANALYZE_PCAP_FILES=true
config/zeek-offline.env:ZEEK_AUTO_ANALYZE_PCAP_FILES=true Next, let's just confirm there's really no data:
If all of those confirm that there's no data, next let's check the file type of the files you've uploaded. Run this, does the file type say $ docker compose exec zeek find /pcap -type f
/pcap/processed/some_uploaded_file.pcap
docker compose exec zeek file /pcap/processed/some_uploaded_file.pcap
/pcap/processed/some_uploaded_file.pcap: pcap capture file, microsecond ts (little-endian) - version 2.4 (Ethernet, capture length 262144) Next let's check logs as well. Run Finally let's check the logstash pipeline and see if any logs are getting in to that: docker compose exec logstash curl -sSL -XGET http://localhost:9600/_node/stats/pipelines | jq -r '.. | .filters? // empty | .[] | objects | select (.events.in > 0) | [.id, .events.in, .events.out, .events.duration_in_millis] | join (";")' | sort -n -t ';' -k2,3 | tail -n 10 Should return something like: ...
|
Beta Was this translation helpful? Give feedback.
-
Step 1
Step 2
Step 3 Step 4 filebeat-1 | 2025-09-17T18:15:43.007Z Harvester started for paths: [/suricata/live/eve*.json]: /suricata/live/eve-20250917_181538.json Step 5 |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I uploaded a PCAP and the file is visible in the pcap/processed/ folder. But no data is shown in the dashboards (set date to 15y back).
When looking at the upload upload readiness check filebeat_tcp has a red cross.
How to fix this?
Beta Was this translation helpful? Give feedback.
All reactions