-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpipeline_test_bad.conf
140 lines (123 loc) · 2.41 KB
/
pipeline_test_bad.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
[myrouters]
type = tcp
encap = st
stage = xport_input
port = 5556
[mykafka]
type = kafka
key = path_and_id
stage = xport_output
topic = telemetry
datachanneldepth = 1000
[kafkaconsumernoconsumergroup]
type = kafka
key = path_and_id
stage = xport_input
brokers = localhost:9092
kafkaversion = 2.1.0
topic = consumertopic
logdata = on
[kafkaconsumerbadkey]
type = kafka
key = BADKEY
stage = xport_input
brokers = localhost:9092
kafkaversion = 2.1.0
topic = consumertopic
consumergroup = mycollectors
logdata = on
[kafkaconsumerbadencoding]
type = kafka
key = path
encoding = BADENCODING
stage = xport_input
brokers = localhost:9092
kafkaversion = 2.1.0
topic = consumertopic
consumergroup = mycollectors
logdata = on
[kafkaconsumernobroker]
type = kafka
key = path
stage = xport_input
topic = consumertopic
consumergroup = mycollectors
kafkaversion = 2.1.0
logdata = on
[kafkaconsumernokafkaversion]
type = kafka
key = path
stage = xport_input
topic = consumertopic
consumergroup = mycollectors
brokers = localhost:9092
logdata = on
[kafkaconsumerbadkafkaversion]
type = kafka
key = path
stage = xport_input
topic = consumertopic
consumergroup = mycollectors
brokers = localhost:9092
kafkaversion = BAD
logdata = on
[myotherkafka]
type = kafka
key = BADKEY
stage = xport_output
brokers = BADlocalhost:9092
kafkaversion = 2.1.0
topic = telemetry
datachanneldepth = 1000
[kafkaBADrequiredAcks]
type = key
kafka = path_and_id
stage = xport_output
brokers = localhost:9092
kafkaversion = 2.1.0
datachanneldepth = 1000
encoding = json
required_acks = commitBAD
[kafkaBADkafkaversion]
type = key
kafka = path_and_id
stage = xport_output
brokers = localhost:9092
kafkaversion = BAD
datachanneldepth = 1000
encoding = json
required_acks = commit
[kafkaBADTopicTemplace]
type = key
kafka = path_and_id
stage = xport_output
brokers = localhost:9092
kafkaversion = 2.1.0
datachanneldepth = 1000
encoding = json
topic_metadata_template = MISSING
[metricsbad_missingfilename]
stage = xport_output
type = metrics
[metricsbad_missingfile]
stage = xport_output
type = metrics
file= nonexistent.json
[metricsbad_badjson]
stage = xport_output
type = metrics
file= pipeline_test_bad.conf
[metricsbad_missingoutput]
stage = xport_output
type = metrics
file= metrics.json
[metricsbad_unsupportedoutput]
stage = xport_output
type = metrics
file= metrics.json
output = unknown
[metricsbad_missingpushgw]
stage = xport_output
type = metrics
file= metrics.json
output = prometheus