@@ -256,7 +256,7 @@ func (app *App) Start() (err error) {
256256 receiver .DropPast (uint32 (conf .Tcp .DropPast .Value ().Seconds ())),
257257 receiver .DropLongerThan (conf .Tcp .DropLongerThan ),
258258 receiver .ReadTimeout (uint32 (conf .Tcp .ReadTimeout .Value ().Seconds ())),
259- receiver .ValidationRegex (conf .Common .ValidationRegex ),
259+ receiver .BlacklistRegex (conf .Common .BlacklistRegex ),
260260 )
261261
262262 if err != nil {
@@ -275,7 +275,7 @@ func (app *App) Start() (err error) {
275275 receiver .DropFuture (uint32 (conf .Udp .DropFuture .Value ().Seconds ())),
276276 receiver .DropPast (uint32 (conf .Udp .DropPast .Value ().Seconds ())),
277277 receiver .DropLongerThan (conf .Udp .DropLongerThan ),
278- receiver .ValidationRegex (conf .Common .ValidationRegex ),
278+ receiver .BlacklistRegex (conf .Common .BlacklistRegex ),
279279 )
280280
281281 if err != nil {
@@ -294,7 +294,7 @@ func (app *App) Start() (err error) {
294294 receiver .DropFuture (uint32 (conf .Pickle .DropFuture .Value ().Seconds ())),
295295 receiver .DropPast (uint32 (conf .Pickle .DropPast .Value ().Seconds ())),
296296 receiver .DropLongerThan (conf .Pickle .DropLongerThan ),
297- receiver .ValidationRegex (conf .Common .ValidationRegex ),
297+ receiver .BlacklistRegex (conf .Common .BlacklistRegex ),
298298 )
299299
300300 if err != nil {
@@ -312,7 +312,7 @@ func (app *App) Start() (err error) {
312312 receiver .DropFuture (uint32 (conf .Grpc .DropFuture .Value ().Seconds ())),
313313 receiver .DropPast (uint32 (conf .Grpc .DropPast .Value ().Seconds ())),
314314 receiver .DropLongerThan (conf .Grpc .DropLongerThan ),
315- receiver .ValidationRegex (conf .Common .ValidationRegex ),
315+ receiver .BlacklistRegex (conf .Common .BlacklistRegex ),
316316 )
317317
318318 if err != nil {
@@ -330,7 +330,7 @@ func (app *App) Start() (err error) {
330330 receiver .DropFuture (uint32 (conf .Prometheus .DropFuture .Value ().Seconds ())),
331331 receiver .DropPast (uint32 (conf .Prometheus .DropPast .Value ().Seconds ())),
332332 receiver .DropLongerThan (conf .Prometheus .DropLongerThan ),
333- receiver .ValidationRegex (conf .Common .ValidationRegex ),
333+ receiver .BlacklistRegex (conf .Common .BlacklistRegex ),
334334 )
335335
336336 if err != nil {
@@ -349,7 +349,7 @@ func (app *App) Start() (err error) {
349349 receiver .DropPast (uint32 (conf .TelegrafHttpJson .DropPast .Value ().Seconds ())),
350350 receiver .DropLongerThan (conf .TelegrafHttpJson .DropLongerThan ),
351351 receiver .ConcatChar (conf .TelegrafHttpJson .Concat ),
352- receiver .ValidationRegex (conf .Common .ValidationRegex ),
352+ receiver .BlacklistRegex (conf .Common .BlacklistRegex ),
353353 )
354354
355355 if err != nil {
0 commit comments