mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
spicy-redis: Cleanup scripts and tests
- Recomputes checksums for pcaps to keep clean - Removes some tests that had big pcaps or weren't necessary - Cleans up scripting names and minor points - Comments out Spicy code that causes a build failure now with a TODO to uncomment it
This commit is contained in:
parent
11777bd6d5
commit
d5b121db14
66 changed files with 368 additions and 1072 deletions
|
@ -597,27 +597,31 @@ connection {
|
|||
Redis::Info {
|
||||
* cmd: record Redis::Command, log=T, optional=F
|
||||
Redis::Command {
|
||||
* command: string, log=T, optional=F
|
||||
* key: string, log=T, optional=T
|
||||
* known: enum Redis::KnownCommand, log=F, optional=T
|
||||
* name: string, log=T, optional=F
|
||||
* raw: vector of string, log=F, optional=F
|
||||
* value: string, log=T, optional=T
|
||||
}
|
||||
* id: record conn_id, log=T, optional=F
|
||||
conn_id { ... }
|
||||
* response: record Redis::ServerData, log=T, optional=T
|
||||
* reply: record Redis::ServerData, log=T, optional=T
|
||||
Redis::ServerData {
|
||||
* data: string, log=T, optional=T
|
||||
* err: bool, log=T, optional=F
|
||||
* success: bool, log=T, optional=F
|
||||
}
|
||||
* ts: time, log=T, optional=F
|
||||
* uid: string, log=T, optional=F
|
||||
}
|
||||
* redis_state: record Redis::State, log=F, optional=T
|
||||
Redis::State {
|
||||
* current_request: count, log=F, optional=T
|
||||
* current_response: count, log=F, optional=T
|
||||
* no_response_ranges: vector of vector of count, log=F, optional=F
|
||||
* current_command: count, log=F, optional=T
|
||||
* current_reply: count, log=F, optional=T
|
||||
* no_reply_ranges: vector of record Redis::NoReplyRange, log=F, optional=F
|
||||
Redis::NoReplyRange {
|
||||
* begin: count, log=F, optional=F
|
||||
* end: count, log=F, optional=T
|
||||
}
|
||||
* pending: table[count] of record Redis::Info, log=F, optional=F
|
||||
Redis::Info { ... }
|
||||
* violation: bool, log=F, optional=T
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue