1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
|
{
"type": "object",
"required": [
"alias",
"source",
"thread_id",
"packet_id",
"daemon_event_id",
"daemon_event_name",
"global_ts_usec"
],
"if": {
"properties": { "daemon_event_name": { "enum": [ "init", "reconnect" ] } }
},
"then": {
"required": [ "max-flows-per-thread", "max-idle-flows-per-thread", "tick-resolution", "reader-thread-count", "flow-scan-interval", "generic-max-idle-time", "icmp-max-idle-time", "udp-max-idle-time", "tcp-max-idle-time", "max-packets-per-flow-to-send", "max-packets-per-flow-to-process" ]
},
"if": {
"properties": { "daemon_event_name": { "enum": [ "status", "shutdown" ] } }
},
"then": {
"required": [ "packets-captured", "packets-processed", "total-skipped-flows", "total-l4-payload-len", "total-not-detected-flows", "total-guessed-flows", "total-detected-flows", "total-detection-updates", "total-updates", "current-active-flows", "total-active-flows", "total-idle-flows", "total-compressions", "total-compression-diff", "current-compression-diff", "total-events-serialized" ]
},
"properties": {
"alias": {
"type": "string"
},
"source": {
"type": "string"
},
"thread_id": {
"type": "number",
"minimum": 0,
"maximum": 31
},
"packet_id": {
"type": "number",
"minimum": 0
},
"daemon_event_id": {
"type": "number",
"minimum": 0,
"maximum": 4
},
"daemon_event_name": {
"type": "string",
"enum": [
"invalid",
"init",
"reconnect",
"shutdown",
"status"
]
},
"max-flows-per-thread": {
"type": "number"
},
"max-idle-flows-per-thread": {
"type": "number"
},
"tick-resolution": {
"type": "number"
},
"reader-thread-count": {
"type": "number"
},
"flow-scan-interval": {
"type": "number"
},
"generic-max-idle-time": {
"type": "number"
},
"icmp-max-idle-time": {
"type": "number"
},
"udp-max-idle-time": {
"type": "number"
},
"tcp-max-idle-time": {
"type": "number"
},
"max-packets-per-flow-to-process": {
"type": "number"
},
"max-packets-per-flow-to-send": {
"type": "number"
},
"packets-captured": {
"type": "number",
"minimum": 0
},
"packets-processed": {
"type": "number",
"minimum": 0
},
"total-skipped-flows": {
"type": "number",
"minimum": 0
},
"total-l4-payload-len": {
"type": "number",
"minimum": 0
},
"total-not-detected-flows": {
"type": "number",
"minimum": 0
},
"total-guessed-flows": {
"type": "number",
"minimum": 0
},
"total-detected-flows": {
"type": "number",
"minimum": 0
},
"total-detection-updates": {
"type": "number",
"minimum": 0
},
"total-updates": {
"type": "number",
"minimum": 0
},
"current-active-flows": {
"type": "number",
"minimum": 0
},
"total-active-flows": {
"type": "number",
"minimum": 0
},
"total-idle-flows": {
"type": "number",
"minimum": 0
},
"total-compressions": {
"type": "number",
"minimum": 0
},
"total-compression-diff": {
"type": "number",
"minimum": 0
},
"current-compression-diff": {
"type": "number",
"minimum": 0
},
"total-events-serialized": {
"type": "number",
"minimum": 1
},
"global_ts_usec": {
"type": "number",
"if": {
"properties": { "daemon_event_name": { "enum": [ "init" ] } }
},
"then" : true,
"else" : {
"minimum": 1000000
}
}
},
"additionalProperties": false
}
|