aboutsummaryrefslogtreecommitdiff
path: root/schema/daemon_event_schema.json
blob: c268e7b133dca0c964d96655815bc0662db7c94a (plain)
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
{
    "type": "object",
    "required": [
        "alias",
        "source",
        "thread_id",
        "packet_id",
        "daemon_event_id",
        "daemon_event_name",
        "global_ts_usec",
        "version",
        "ndpi_version",
        "ndpi_api_version",
        "size_per_flow"
    ],
    "if": {
        "properties": { "daemon_event_name": { "enum": [ "init", "reconnect" ] } }
    },
    "then": {
        "required": [ "max-flows-per-thread", "max-idle-flows-per-thread", "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", "max-packets-per-flow-to-analyse" ]
    },
    "if": {
        "properties": { "daemon_event_name": { "enum": [ "status", "shutdown" ] } }
    },
    "then": {
        "required": [ "packets-captured", "packets-processed", "pfring_active", "pfring_recv", "pfring_drop", "pfring_shunt", "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", "global-alloc-bytes", "global-alloc-count", "global-free-bytes", "global-free-count", "total-events-serialized" ]
    },
    "properties": {
        "alias": {
            "type": "string"
        },
        "uuid": {
            "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"
            ]
        },
        "version": {
            "type": "string"
        },
        "ndpi_version": {
            "type": "string"
        },
        "ndpi_api_version": {
            "type": "number",
            "minimum": 11500
        },
        "size_per_flow": {
            "type": "number",
            "minimum": 1400,
            "maximum": 1500
        },

        "max-flows-per-thread": {
            "type": "number"
        },
        "max-idle-flows-per-thread": {
            "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"
        },
        "max-packets-per-flow-to-analyse": {
            "type": "number"
        },

        "packets-captured": {
            "type": "number",
            "minimum": 0
        },
        "packets-processed": {
            "type": "number",
            "minimum": 0
        },
        "pfring_active": {
            "type": "boolean"
        },
        "pfring_recv": {
            "type": "number",
            "minimum": 0
        },
        "pfring_drop": {
            "type": "number",
            "minimum": 0
        },
        "pfring_shunt": {
            "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
        },
        "global-alloc-bytes": {
            "type": "number",
            "minimum": 0
        },
        "global-alloc-count": {
            "type": "number",
            "minimum": 0
        },
        "global-free-bytes": {
            "type": "number",
            "minimum": 0
        },
        "global-free-count": {
            "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
}