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