Skip to content

Commit

Permalink
schema: Add stats.capture and in_iface properties
Browse files Browse the repository at this point in the history
New suricata-verify test listens on loopback interface, resulting
in the capture and in_iface fields in the stats and event objects.
  • Loading branch information
awelzel authored and victorjulien committed Mar 7, 2024
1 parent f172041 commit f9cf87a
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions etc/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@
"icmp_type": {
"type": "integer"
},
"in_iface": {
"type": "string"
},
"log_level": {
"type": "string"
},
Expand Down Expand Up @@ -3715,6 +3718,20 @@
"description": "Suricata engine's uptime",
"type": "integer"
},
"capture": {
"type": "object",
"properties": {
"kernel_packets": {
"type": "integer"
},
"kernel_drops": {
"type": "integer"
},
"kernel_ifdrops": {
"type": "integer"
}
}
},
"memcap_pressure": {
"description": "Percentage of memcaps used by flow, stream, stream-reassembly and app-layer-http",
"type": "integer"
Expand Down

0 comments on commit f9cf87a

Please sign in to comment.