@@ -61,81 +61,103 @@ var (
61
61
MustBuild (),
62
62
components .NewMultiPortReceiverBuilder ("skywalking" ).
63
63
AddPortMapping (components .NewProtocolBuilder (components .GrpcProtocol , 11800 ).
64
+ WithDefaultRecAddress ("0.0.0.0" ).
64
65
WithTargetPort (11800 ).
65
66
WithAppProtocol (& components .GrpcProtocol )).
66
67
AddPortMapping (components .NewProtocolBuilder (components .HttpProtocol , 12800 ).
68
+ WithDefaultRecAddress ("0.0.0.0" ).
67
69
WithTargetPort (12800 ).
68
70
WithAppProtocol (& components .HttpProtocol )).
69
71
MustBuild (),
70
72
components .NewMultiPortReceiverBuilder ("jaeger" ).
71
73
AddPortMapping (components .NewProtocolBuilder (components .GrpcProtocol , 14250 ).
74
+ WithDefaultRecAddress ("0.0.0.0" ).
72
75
WithTargetPort (14250 ).
73
76
WithProtocol (corev1 .ProtocolTCP ).
74
77
WithAppProtocol (& components .GrpcProtocol )).
75
78
AddPortMapping (components .NewProtocolBuilder ("thrift_http" , 14268 ).
79
+ WithDefaultRecAddress ("0.0.0.0" ).
76
80
WithTargetPort (14268 ).
77
81
WithProtocol (corev1 .ProtocolTCP ).
78
82
WithAppProtocol (& components .HttpProtocol )).
79
83
AddPortMapping (components .NewProtocolBuilder ("thrift_compact" , 6831 ).
84
+ WithDefaultRecAddress ("0.0.0.0" ).
80
85
WithTargetPort (6831 ).
81
86
WithProtocol (corev1 .ProtocolUDP )).
82
87
AddPortMapping (components .NewProtocolBuilder ("thrift_binary" , 6832 ).
88
+ WithDefaultRecAddress ("0.0.0.0" ).
83
89
WithTargetPort (6832 ).
84
90
WithProtocol (corev1 .ProtocolUDP )).
85
91
MustBuild (),
86
92
components .NewMultiPortReceiverBuilder ("loki" ).
87
93
AddPortMapping (components .NewProtocolBuilder (components .GrpcProtocol , 9095 ).
94
+ WithDefaultRecAddress ("0.0.0.0" ).
88
95
WithTargetPort (9095 ).
89
96
WithAppProtocol (& components .GrpcProtocol )).
90
97
AddPortMapping (components .NewProtocolBuilder (components .HttpProtocol , 3100 ).
98
+ WithDefaultRecAddress ("0.0.0.0" ).
91
99
WithTargetPort (3100 ).
92
100
WithAppProtocol (& components .HttpProtocol )).
93
101
MustBuild (),
94
102
components .NewSinglePortParserBuilder ("awsxray" , 2000 ).
103
+ WithDefaultRecAddress ("0.0.0.0" ).
95
104
WithTargetPort (2000 ).
96
105
WithProtocol (corev1 .ProtocolUDP ).
97
106
MustBuild (),
98
107
components .NewSinglePortParserBuilder ("carbon" , 2003 ).
108
+ WithDefaultRecAddress ("0.0.0.0" ).
99
109
WithTargetPort (2003 ).
100
110
MustBuild (),
101
111
components .NewSinglePortParserBuilder ("collectd" , 8081 ).
112
+ WithDefaultRecAddress ("0.0.0.0" ).
102
113
WithTargetPort (8081 ).
103
114
MustBuild (),
104
115
components .NewSinglePortParserBuilder ("fluentforward" , 8006 ).
116
+ WithDefaultRecAddress ("0.0.0.0" ).
105
117
WithTargetPort (8006 ).
106
118
MustBuild (),
107
119
components .NewSinglePortParserBuilder ("influxdb" , 8086 ).
120
+ WithDefaultRecAddress ("0.0.0.0" ).
108
121
WithTargetPort (8086 ).
109
122
MustBuild (),
110
123
components .NewSinglePortParserBuilder ("opencensus" , 55678 ).
111
124
WithAppProtocol (nil ).
125
+ WithDefaultRecAddress ("0.0.0.0" ).
112
126
WithTargetPort (55678 ).
113
127
MustBuild (),
114
128
components .NewSinglePortParserBuilder ("sapm" , 7276 ).
129
+ WithDefaultRecAddress ("0.0.0.0" ).
115
130
WithTargetPort (7276 ).
116
131
MustBuild (),
117
132
components .NewSinglePortParserBuilder ("signalfx" , 9943 ).
133
+ WithDefaultRecAddress ("0.0.0.0" ).
118
134
WithTargetPort (9943 ).
119
135
MustBuild (),
120
136
components .NewSinglePortParserBuilder ("splunk_hec" , 8088 ).
137
+ WithDefaultRecAddress ("0.0.0.0" ).
121
138
WithTargetPort (8088 ).
122
139
MustBuild (),
123
140
components .NewSinglePortParserBuilder ("statsd" , 8125 ).
141
+ WithDefaultRecAddress ("0.0.0.0" ).
124
142
WithProtocol (corev1 .ProtocolUDP ).
125
143
WithTargetPort (8125 ).
126
144
MustBuild (),
127
145
components .NewSinglePortParserBuilder ("tcplog" , components .UnsetPort ).
146
+ WithDefaultRecAddress ("0.0.0.0" ).
128
147
WithProtocol (corev1 .ProtocolTCP ).
129
148
MustBuild (),
130
149
components .NewSinglePortParserBuilder ("udplog" , components .UnsetPort ).
150
+ WithDefaultRecAddress ("0.0.0.0" ).
131
151
WithProtocol (corev1 .ProtocolUDP ).
132
152
MustBuild (),
133
153
components .NewSinglePortParserBuilder ("wavefront" , 2003 ).
154
+ WithDefaultRecAddress ("0.0.0.0" ).
134
155
WithTargetPort (2003 ).
135
156
MustBuild (),
136
157
components .NewSinglePortParserBuilder ("zipkin" , 9411 ).
137
158
WithAppProtocol (& components .HttpProtocol ).
138
159
WithProtocol (corev1 .ProtocolTCP ).
160
+ WithDefaultRecAddress ("0.0.0.0" ).
139
161
WithTargetPort (3100 ).
140
162
MustBuild (),
141
163
NewScraperParser ("prometheus" ),
0 commit comments