Description Usage Arguments Note Examples
View source: R/read-zeek-logs.R
Read zeek logs from a processed PCAP into a list
1 | read_zeek_logs(log_dir)
|
log_dir |
directory of zeek logs |
Logs must be in Parquet or JSON format.
1 2 3 4 5 6 7 8 9 | loc <- tryCatch(
pcap_to_zeek(system.file("pcap/ssh.pcap", package = "zeekr")),
error = function(e) message("No Zeek")
)
if (!is.null(loc)) {
read_zeek_logs(loc)
unlink(loc) # don't do this IRL until you're done working with or saving.
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.