aboutsummaryrefslogtreecommitdiff
path: root/schema
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2022-03-13 03:08:44 +0100
committerToni Uhlig <matzeton@googlemail.com>2022-03-13 03:08:44 +0100
commitdaaaa615197d8551457ecf926f6df30c6482a70a (patch)
tree643e945b30efe9e64d436febb26d47503e121512 /schema
parented1647b9446f84d81d41e8e28ccf063eff97b2f7 (diff)
Renamed basic event to error event for the sake of the logic.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'schema')
-rw-r--r--schema/error_event_schema.json (renamed from schema/basic_event_schema.json)20
1 files changed, 10 insertions, 10 deletions
diff --git a/schema/basic_event_schema.json b/schema/error_event_schema.json
index 65be964f7..a9080d13f 100644
--- a/schema/basic_event_schema.json
+++ b/schema/error_event_schema.json
@@ -4,14 +4,14 @@
"alias",
"source",
"packet_id",
- "basic_event_id",
- "basic_event_name",
+ "error_event_id",
+ "error_event_name",
"datalink",
"global_ts_msec"
],
"if": {
- "properties": { "basic_event_name": { "enum": [ "Unknown datalink layer packet", "Unknown packet type" ] } }
+ "properties": { "error_event_name": { "enum": [ "Unknown datalink layer packet", "Unknown packet type" ] } }
},
"then": {
"anyOf": [
@@ -21,7 +21,7 @@
},
"if": {
- "properties": { "basic_event_name": { "enum": [ "Unknown L3 protocol" ] } }
+ "properties": { "error_event_name": { "enum": [ "Unknown L3 protocol" ] } }
},
"then": {
"anyOf": [
@@ -31,7 +31,7 @@
},
"if": {
- "properties": { "basic_event_name": { "enum": [ "Packet too short", "IP4 packet too short",
+ "properties": { "error_event_name": { "enum": [ "Packet too short", "IP4 packet too short",
"IP6 packet too short", "TCP packet smaller than expected",
"UDP packet smaller than expected",
"Captured packet size is smaller than expected packet size" ] } }
@@ -44,7 +44,7 @@
},
"if": {
- "properties": { "basic_event_name": { "enum": [ "Packet header invalid" ] } }
+ "properties": { "error_event_name": { "enum": [ "Packet header invalid" ] } }
},
"then": {
"anyOf": [
@@ -54,14 +54,14 @@
},
"if": {
- "properties": { "basic_event_name": { "enum": [ "Flow memory allocation failed" ] } }
+ "properties": { "error_event_name": { "enum": [ "Flow memory allocation failed" ] } }
},
"then": {
"required": [ "thread_id", "size" ]
},
"if": {
- "properties": { "basic_event_name": { "enum": [ "Max flows to track reached" ] } }
+ "properties": { "error_event_name": { "enum": [ "Max flows to track reached" ] } }
},
"then": {
"required": [ "thread_id", "current_active", "current_idle", "max_active", "max_idle" ]
@@ -81,12 +81,12 @@
"type": "number",
"minimum": 0
},
- "basic_event_id": {
+ "error_event_id": {
"type": "number",
"minimum": 0,
"maximum": 16
},
- "basic_event_name": {
+ "error_event_name": {
"type": "string",
"enum": [
"Unknown datalink layer packet",