-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathkafka.json
248 lines (248 loc) · 7.73 KB
/
kafka.json
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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"audio_loudness": { "type": "string" },
"base64_image": { "type": "string" },
"bitrate_avg_global": { "type": "number" },
"boot_time": { "type": "number" },
"captions": { "type": "string" },
"cc_errors_global": { "type": "number" },
"core_count": { "type": "number" },
"cpu_count": { "type": "number" },
"cpu_usage": { "type": "number" },
"current_cc_errors_global": { "type": "number" },
"disk_stats": {
"type": "object",
"patternProperties": {
"^\\d+$": {
"type": "object",
"properties": {
"available_space": { "type": "number" },
"is_removable": { "type": "boolean" },
"name": { "type": "string" },
"total_space": { "type": "number" }
},
"required": [
"available_space",
"is_removable",
"name",
"total_space"
],
"additionalProperties": false
}
},
"additionalProperties": false
},
"network": {
"type": "object",
"patternProperties": {
"^[a-zA-Z0-9_]+$": {
"type": "object",
"properties": {
"errors_on_received": { "type": "number" },
"errors_on_transmitted": { "type": "number" },
"packets_received": { "type": "number" },
"packets_transmitted": { "type": "number" },
"received": { "type": "number" },
"transmitted": { "type": "number" }
},
"required": [
"errors_on_received",
"errors_on_transmitted",
"packets_received",
"packets_transmitted",
"received",
"transmitted"
],
"additionalProperties": false
}
},
"additionalProperties": false
},
"host_name": { "type": "string" },
"iat_avg_global": { "type": "number" },
"iat_max_global": { "type": "number" },
"id": { "type": "string" },
"image_pts": { "type": "number" },
"kernel_version": { "type": "string" },
"load_avg_fifteen": { "type": "number" },
"load_avg_five": { "type": "number" },
"load_avg_one": { "type": "number" },
"log_message": { "type": "string" },
"os_version": { "type": "string" },
"pid_map": {
"type": "array",
"items": {
"type": "object",
"properties": {
"ccerrors": { "type": "number" },
"media_type": { "type": "string" },
"pid": { "type": "number" },
"stream_type": { "type": "string" },
"stream_type_number": { "type": "number" }
},
"required": [
"ccerrors",
"media_type",
"pid",
"stream_type",
"stream_type_number"
],
"additionalProperties": false
}
},
"process_count": { "type": "number" },
"processes": { "type": "string" },
"scte35": { "type": "string" },
"source_ip": { "type": "string" },
"source_port": { "type": "number" },
"streams": {
"type": "object",
"patternProperties": {
"^\\d+$": {
"type": "object",
"properties": {
"bitrate": { "type": "number" },
"bitrate_avg": { "type": "number" },
"bitrate_max": { "type": "number" },
"bitrate_min": { "type": "number" },
"capture_iat": { "type": "number" },
"capture_iat_max": { "type": "number" },
"capture_time": { "type": "number" },
"continuity_counter": { "type": "number" },
"count": { "type": "number" },
"current_error_count": { "type": "number" },
"error_count": { "type": "number" },
"iat": { "type": "number" },
"iat_avg": { "type": "number" },
"iat_max": { "type": "number" },
"iat_min": { "type": "number" },
"id": { "type": "string" },
"last_arrival_time": { "type": "number" },
"last_sample_time": { "type": "number" },
"packet_count": { "type": "number" },
"packet_len": { "type": "number" },
"packet_start": { "type": "number" },
"pid": { "type": "number" },
"pmt_pid": { "type": "number" },
"program_number": { "type": "number" },
"start_time": { "type": "number" },
"stream_type": { "type": "string" },
"stream_type_number": { "type": "number" },
"timestamp": { "type": "number" },
"total_bits": { "type": "number" },
"total_bits_sample": { "type": "number" }
},
"required": [
"bitrate",
"bitrate_avg",
"bitrate_max",
"bitrate_min",
"capture_iat",
"capture_iat_max",
"capture_time",
"continuity_counter",
"count",
"current_error_count",
"error_count",
"iat",
"iat_avg",
"iat_max",
"iat_min",
"id",
"last_arrival_time",
"last_sample_time",
"packet_count",
"packet_len",
"packet_start",
"pid",
"pmt_pid",
"program_number",
"start_time",
"stream_type",
"stream_type_number",
"timestamp",
"total_bits",
"total_bits_sample"
],
"additionalProperties": false
}
},
"additionalProperties": false
},
"system_name": { "type": "string" },
"timestamp": { "type": "number" },
"total_memory": { "type": "number" },
"total_swap": { "type": "number" },
"tr101290_cat_errors": { "type": "number" },
"tr101290_continuity_counter_errors": { "type": "number" },
"tr101290_crc_errors": { "type": "number" },
"tr101290_pat_errors": { "type": "number" },
"tr101290_pcr_accuracy_errors": { "type": "number" },
"tr101290_pcr_discontinuity_indicator_errors": { "type": "number" },
"tr101290_pcr_repetition_errors": { "type": "number" },
"tr101290_pid_map_errors": { "type": "number" },
"tr101290_pmt_errors": { "type": "number" },
"tr101290_pts_errors": { "type": "number" },
"tr101290_sync_byte_errors": { "type": "number" },
"tr101290_transport_error_indicator_errors": { "type": "number" },
"tr101290_ts_sync_byte_errors": { "type": "number" },
"uptime": { "type": "number" },
"used_memory": { "type": "number" },
"used_swap": { "type": "number" }
},
"required": [
"audio_loudness",
"base64_image",
"bitrate_avg_global",
"boot_time",
"captions",
"cc_errors_global",
"core_count",
"cpu_count",
"cpu_usage",
"current_cc_errors_global",
"disk_stats",
"network",
"host_name",
"iat_avg_global",
"iat_max_global",
"id",
"image_pts",
"kernel_version",
"load_avg_fifteen",
"load_avg_five",
"load_avg_one",
"log_message",
"os_version",
"pid_map",
"process_count",
"processes",
"scte35",
"source_ip",
"source_port",
"streams",
"system_name",
"timestamp",
"total_memory",
"total_swap",
"tr101290_cat_errors",
"tr101290_continuity_counter_errors",
"tr101290_crc_errors",
"tr101290_pat_errors",
"tr101290_pcr_accuracy_errors",
"tr101290_pcr_discontinuity_indicator_errors",
"tr101290_pcr_repetition_errors",
"tr101290_pid_map_errors",
"tr101290_pmt_errors",
"tr101290_pts_errors",
"tr101290_sync_byte_errors",
"tr101290_transport_error_indicator_errors",
"tr101290_ts_sync_byte_errors",
"uptime",
"used_memory",
"used_swap"
],
"additionalProperties": false
}