-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathzilla.yml
210 lines (200 loc) · 4.57 KB
/
zilla.yml
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
name: zilla-mndwrk
telemetry:
metrics:
- http.request.size
- http.response.size
- stream.opens.sent
- stream.closes.sent
exporters:
stdout_logs_exporter:
type: stdout
prometheus_metric_exporter:
type: prometheus
options:
endpoints:
- scheme: http
path: /metrics
port: 7190
catalogs:
schema-registry:
type: karapace
options:
url: ${{env.SCHEMA_REGISTRY_URL}}
context: default
bindings:
mndwrk_tcp_server:
type: tcp
kind: server
options:
host: 0.0.0.0
port:
- 8080
- 61616
routes:
- when:
- port: 8080
exit: mndwrk_http_server
- when:
- port: 61616
exit: mndwrk_mqtt_server
telemetry:
metrics:
- http.*
- stream.*
mndwrk_http_server:
type: http
kind: server
routes:
- when:
- headers:
:scheme: http
:authority: localhost:8080
exit: mndwrk_sensor_service
telemetry:
metrics:
- http.*
mndwrk_sensor_service:
type: http-kafka
kind: proxy
telemetry:
metrics:
- http.*
routes:
- when:
- method: POST
path: /api/v1/sensor-data
exit: mndwrk_kafka_cache_client
with:
capability: produce
topic: mndwrk-zilla-request
key: ${idempotencyKey}
reply-to: mndwrk-zilla-response
- when:
- method: GET
path: /api/v1/sensor-data
exit: mndwrk_kafka_cache_client
with:
capability: fetch
topic: mndwrk-zilla-response
merge:
content-type: application/json
- when:
- method: GET
path: /api/v1/sensor-data/{id}
exit: mndwrk_kafka_cache_client
with:
capability: fetch
topic: mndwrk-zilla-response
filters:
- key: ${params.id}
merge:
content-type: application/json
mndwrk_mqtt_server:
type: mqtt
kind: server
telemetry:
metrics:
- stream.*
exit: mndwrk_mqtt_kafka_mapping
# MQTT messages to Kafka topics
mndwrk_mqtt_kafka_mapping:
type: mqtt-kafka
kind: proxy
options:
topics:
sessions: mqtt-sessions
messages: mqtt-messages
retained: mqtt-retained
clients:
- /api/v1/sensor-data/{identity}
routes:
- when:
- publish:
- topic: /api/v1/sensor-data/+
exit: mndwrk_kafka_cache_client
with:
messages: mndwrk-zilla-request
- when:
- subscribe:
- topic: /api/v1/sensor-data/+
exit: mndwrk_kafka_cache_client
with:
messages: mndwrk-zilla-response
exit: mndwrk_kafka_cache_client
telemetry:
metrics:
- stream.*
mndwrk_kafka_cache_client:
type: kafka
kind: cache_client
options:
topics:
- name: mndwrk-zilla-request
value:
model: avro
view: json
catalog:
schema-registry:
- strategy: topic
version: latest
- name: mndwrk-zilla-response
value:
model: avro
view: json
catalog:
schema-registry:
- strategy: topic
version: latest
exit: mndwrk_kafka_cache_server
mndwrk_kafka_cache_server:
type: kafka
kind: cache_server
telemetry:
metrics:
- http.*
- stream.*
options:
bootstrap:
- mqtt-sessions
- mqtt-messages
- mqtt-retained
- mndwrk-zilla-response
topics:
- name: mndwrk-zilla-request
value:
model: avro
view: json
catalog:
schema-registry:
- strategy: topic
version: latest
- name: mndwrk-zilla-response
value:
model: avro
view: json
catalog:
schema-registry:
- strategy: topic
version: latest
exit: mndwrk_kafka_client
mndwrk_kafka_client:
type: kafka
kind: client
telemetry:
metrics:
- http.*
- stream.*
options:
servers:
- ${{env.KAFKA_BOOTSTRAP_SERVER}}
exit: mndwrk_kafka_tcp_client
mndwrk_kafka_tcp_client:
type: tcp
kind: client
telemetry:
metrics:
- http.*
- stream.*
routes:
- when:
- cidr: 0.0.0.0/0