-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpipeline_test.conf
244 lines (216 loc) · 4.18 KB
/
pipeline_test.conf
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
[default]
#
# ID is used to identify pipeline to third parties, e.g. fluentd tag
# and prometheus instance
id = pipeline
metamonitoring_prometheus_resource = /metrics
metamonitoring_prometheus_server = :8888
[myrouters]
type = tcp
encap = st
stage = xport_input
listen = :5556
logdata = on
[myotherrouters]
type = tcp
encap = st
stage = xport_input
listen = :5557
logdata = on
# [mymdtrouter]
# stage = xport_input
# type = grpc
# encap = gpb
# server = 192.168.123.1:56789
# tls = false
# tls_pem = ca.pem
# tls_servername = tlsservername
# subscriptions = genericstats,datarates
# logdata = on
[mykafka]
type = kafka
key = path_and_id
stage = xport_output
brokers = localhost:9092
kafkaversion = 2.1.0
topic = testtopic
datachanneldepth = 1000
logdata = on
[kafkaconsumer]
type = kafka
key = path_and_id
stage = xport_input
brokers = localhost:9092
kafkaversion = 2.1.0
topic = consumertopic3
consumergroup = mycollectors
encoding = json
logdata = on
[mykafka2]
type = kafka
key = path_and_id
stage = xport_output
brokers = localhost:9092
kafkaversion = 2.1.0
topic = consumertopic3
datachanneldepth = 1000
encoding = json
logdata = on
[inspector]
type = tap
stage = xport_output
datachanneldepth = 1000
file = dump.txt
#countonly = true
[inspector1]
type = tap
stage = xport_output
datachanneldepth = 1000
file = dump1.txt
countonly = true
[mymetrics]
stage = xport_output
type = metrics
output = prometheus
file = metrics.json
datachanneldepth = 1000
pushgw = localhost:9091
workers = 1
jobname = telemetry
[mymetricstest]
stage = xport_output
type = metrics
output = test
file = metrics.json
datachanneldepth = 1000
[mygrpcout]
type = grpc
stage = xport_output
encoding = json
listen = localhost:5959
logdata = on
datachanneldepth = 1000
[mygrpcoutnolisten]
type = grpc
stage = xport_output
encoding = json
logdata = on
[mygrpcoutbadencoding]
type = grpc
stage = xport_output
encoding = gibberish
listen = localhost:5959
# logdata = on
[templatetest]
stage = xport_output
type = tap
file = dumpfiltererd.txt
encoding = template
template = filter_test.json
datachanneldepth = 1000
[udpinnolisten]
type = udp
stage = xport_input
rxbuf = 25165824
#logdata = on
[udpinbadlisten]
type = udp
stage = xport_input
listen = localhostuBAD,BAD,BAD:5958
rxbuf = 25165824
#logdata = on
[udpin]
type = udp
stage = xport_input
listen = localhost:5958
rxbuf = 25165824
logdata = on
[replay_bin_archive]
stage = xport_input
type = replay
file = mdt_msg_samples/dump.bin
delayusec = 100000
loop=true
logdata = on
[tap_out_bin_hexdump]
stage = xport_output
type = tap
encoding = gpb
file = mdt_msg_samples/hexdump.bin
datachanneldepth = 1000
[kafkaAout]
type = kafka
key = path_and_id
stage = xport_output
brokers = localhost:9092
kafkaversion = 2.1.0
topic_metadata_template = topic_template_testA.txt
encoding = json
datachanneldepth = 1000
required_acks = none
[kafkaAin]
type = kafka
key = path_and_id
stage = xport_input
brokers = localhost:9092
kafkaversion = 2.1.0
topic = RootOperKafkaTest
consumergroup = mycollectors
encoding = json
[kafkaBout]
type = kafka
key = path_and_id
stage = xport_output
brokers = localhost:9092
kafkaversion = 2.1.0
topic_metadata_template = topic_template_testB.txt
datachanneldepth = 1000
encoding = json
required_acks = local
[kafkaBin]
type = kafka
key = path_and_id
stage = xport_input
brokers = localhost:9092
kafkaversion = 2.1.0
topic = RouterInSpace
consumergroup = mycollectors
encoding = json
[kafkaCout]
type = kafka
key = path_and_id
stage = xport_output
brokers = localhost:9092
kafkaversion = 2.1.0
topic_metadata_template = topic_template_testC.txt
datachanneldepth = 1000
encoding = json
[kafkaCin]
type = kafka
key = path_and_id
stage = xport_input
brokers = localhost:9092
kafkaversion = 2.1.0
topic = RootOperKafkaTest_RouterInSpace
consumergroup = mycollectors
encoding = json
[kafkaDout]
type = kafka
key = path_and_id
stage = xport_output
brokers = localhost:9092
kafkaversion = 2.1.0
topic = fallback_to_topic
topic_metadata_template = topic_template_testBAD.txt
datachanneldepth = 1000
encoding = json
required_acks = commit
[kafkaDin]
type = kafka
key = path_and_id
stage = xport_input
brokers = localhost:9092
kafkaversion = 2.1.0
topic = fallback_to_topic
consumergroup = mycollectors
encoding = json