-
Notifications
You must be signed in to change notification settings - Fork 0
/
fluent-bit-1.8.2.cleaned.log
4290 lines (3859 loc) · 283 KB
/
fluent-bit-1.8.2.cleaned.log
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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Attaching to producer, prometheus, grafana, fluent-bit
[1mFluent Bit v1.8.2[0m
* [1m[93mCopyright (C) 2019-2021 The Fluent Bit Authors[0m
* [1m[93mCopyright (C) 2015-2018 Treasure Data[0m
* Fluent Bit is a CNCF sub-project under the umbrella of Fluentd
* https://fluentbit.io
[2021/07/30 14:40:48] [ info] Configuration:
[2021/07/30 14:40:48] [ info] flush time | 1.000000 seconds
[2021/07/30 14:40:48] [ info] grace | 0 seconds
[2021/07/30 14:40:48] [ info] daemon | 0
[2021/07/30 14:40:48] [ info] ___________
[2021/07/30 14:40:48] [ info] inputs:
[2021/07/30 14:40:48] [ info] tail
[2021/07/30 14:40:48] [ info] ___________
[2021/07/30 14:40:48] [ info] filters:
[2021/07/30 14:40:48] [ info] record_modifier.0
[2021/07/30 14:40:48] [ info] ___________
[2021/07/30 14:40:48] [ info] outputs:
[2021/07/30 14:40:48] [ info] kinesis_firehose.0
[2021/07/30 14:40:48] [ info] ___________
[2021/07/30 14:40:48] [ info] collectors:
[2021/07/30 14:40:48] [ info] [engine] started (pid=1)
[2021/07/30 14:40:48] [debug] [engine] coroutine stack size: 24576 bytes (24.0K)
[2021/07/30 14:40:48] [debug] [storage] [cio stream] new stream registered: tail.0
[2021/07/30 14:40:48] [ info] [storage] version=1.1.1, initializing...
[2021/07/30 14:40:48] [ info] [storage] in-memory
[2021/07/30 14:40:48] [ info] [storage] normal synchronization mode, checksum disabled, max_chunks_up=128
[2021/07/30 14:40:48] [ info] [cmetrics] version=0.1.5
[2021/07/30 14:40:48] [debug] [input:tail:tail.0] flb_tail_fs_inotify_init() initializing inotify tail input
[2021/07/30 14:40:48] [debug] [input:tail:tail.0] inotify watch fd=23
[2021/07/30 14:40:48] [debug] [input:tail:tail.0] scanning path /var/log/haproxy/access.log
[2021/07/30 14:40:48] [debug] [input:tail:tail.0] inode=3675717 with offset=218964250 appended as /var/log/haproxy/access.log
[2021/07/30 14:40:48] [debug] [input:tail:tail.0] scan_glob add(): /var/log/haproxy/access.log, inode 3675717
[2021/07/30 14:40:48] [debug] [input:tail:tail.0] 1 new files found on path '/var/log/haproxy/access.log'
[2021/07/30 14:40:48] [debug] [kinesis_firehose:kinesis_firehose.0] created event channels: read=25 write=26
[2021/07/30 14:40:48] [debug] [aws_credentials] Initialized Env Provider in standard chain
[2021/07/30 14:40:48] [debug] [aws_credentials] Initialized AWS Profile Provider in standard chain
[2021/07/30 14:40:48] [debug] [aws_credentials] Not initializing EKS provider because AWS_ROLE_ARN was not set
[2021/07/30 14:40:48] [debug] [aws_credentials] Not initializing ECS Provider because AWS_CONTAINER_CREDENTIALS_RELATIVE_URI is not set
[2021/07/30 14:40:48] [debug] [aws_credentials] Initialized EC2 Provider in standard chain
[2021/07/30 14:40:48] [debug] [aws_credentials] Sync called on the EC2 provider
[2021/07/30 14:40:48] [debug] [aws_credentials] Init called on the env provider
[2021/07/30 14:40:48] [debug] [aws_credentials] upstream_set called on the EC2 provider
[2021/07/30 14:40:48] [debug] [router] match rule tail.0:kinesis_firehose.0
[2021/07/30 14:40:48] [ info] [http_server] listen iface=0.0.0.0 tcp_port=24242
[2021/07/30 14:40:48] [ info] [sp] stream processor started
[2021/07/30 14:40:48] [debug] [input:tail:tail.0] inode=3675717 file=/var/log/haproxy/access.log promote to TAIL_EVENT
[2021/07/30 14:40:48] [ info] [input:tail:tail.0] inotify_fs_add(): inode=3675717 watch_fd=1 name=/var/log/haproxy/access.log
[2021/07/30 14:40:48] [debug] [input:tail:tail.0] inode=3675717 events: IN_MODIFY
[2021/07/30 14:40:48] [debug] [input:tail:tail.0] inode=3675717 events: IN_MODIFY
[2021/07/30 14:40:48] [debug] [input:tail:tail.0] inode=3675717 events: IN_MODIFY
[2021/07/30 14:40:49] [debug] [task] created task=0x7f6fda8375a0 id=0 OK
[2021/07/30 14:40:49] [debug] [task] created task=0x7f6fda8376e0 id=1 OK
[2021/07/30 14:40:49] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:40:49] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:40:50] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:40:50] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:40:50] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:40:50] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:40:50] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 415839
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144050Z
Authorization: (redacted)
[2021/07/30 14:40:50] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:40:50] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:40:50] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 412459
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144050Z
Authorization: (redacted)
[2021/07/30 14:40:50] [debug] [input:tail:tail.0] inode=3675717 events: IN_MODIFY
[2021/07/30 14:40:50] [debug] [input:tail:tail.0] inode=3675717 events: IN_MODIFY
[2021/07/30 14:40:50] [debug] [input:tail:tail.0] inode=3675717 events: IN_MODIFY
[2021/07/30 14:40:51] [ warn] [http_client] cannot increase buffer: current=4096 requested=36864 max=4096
[2021/07/30 14:40:51] [debug] [output:kinesis_firehose:kinesis_firehose.0] PutRecordBatch http status=200
[2021/07/30 14:40:51] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sent events to test-alexh-haproxy-access-logs
[2021/07/30 14:40:51] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:40:51] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:40:51] [ warn] [http_client] cannot increase buffer: current=4096 requested=36864 max=4096
[2021/07/30 14:40:51] [debug] [output:kinesis_firehose:kinesis_firehose.0] PutRecordBatch http status=200
[2021/07/30 14:40:51] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sent events to test-alexh-haproxy-access-logs
[2021/07/30 14:40:51] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:40:51] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:40:51] [debug] [task] created task=0x7f6fda837820 id=2 OK
[2021/07/30 14:40:51] [debug] [task] created task=0x7f6fda837b40 id=3 OK
[2021/07/30 14:40:52] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:40:52] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:40:52] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:40:52] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:40:52] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:40:52] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:40:52] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 415839
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144052Z
Authorization: (redacted)
[2021/07/30 14:40:52] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:40:52] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:40:52] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 413467
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144052Z
Authorization: (redacted)
[2021/07/30 14:40:52] [debug] [input:tail:tail.0] inode=3675717 events: IN_MODIFY
[2021/07/30 14:40:52] [debug] [input:tail:tail.0] inode=3675717 events: IN_MODIFY
[2021/07/30 14:40:52] [debug] [input:tail:tail.0] inode=3675717 events: IN_MODIFY
[2021/07/30 14:40:53] [ warn] [http_client] cannot increase buffer: current=4096 requested=36864 max=4096
[2021/07/30 14:40:53] [debug] [output:kinesis_firehose:kinesis_firehose.0] PutRecordBatch http status=200
[2021/07/30 14:40:53] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sent events to test-alexh-haproxy-access-logs
[2021/07/30 14:40:53] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:40:53] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:40:53] [ warn] [http_client] cannot increase buffer: current=4096 requested=36864 max=4096
[2021/07/30 14:40:53] [debug] [output:kinesis_firehose:kinesis_firehose.0] PutRecordBatch http status=200
[2021/07/30 14:40:53] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sent events to test-alexh-haproxy-access-logs
[2021/07/30 14:40:53] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:40:53] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:40:53] [debug] [task] created task=0x7f6fda837aa0 id=4 OK
[2021/07/30 14:40:53] [debug] [task] created task=0x7f6fda837dc0 id=5 OK
[2021/07/30 14:40:54] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:40:54] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:40:54] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:40:54] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:40:54] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:40:54] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:40:54] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 411275
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144054Z
Authorization: (redacted)
[2021/07/30 14:40:54] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:40:54] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:40:54] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 413467
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144054Z
Authorization: (redacted)
[2021/07/30 14:40:54] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:40:54] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:40:54] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 415839
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144054Z
Authorization: (redacted)
[2021/07/30 14:40:54] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:40:54] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:40:54] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 411159
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144054Z
Authorization: (redacted)
[2021/07/30 14:40:54] [debug] [input:tail:tail.0] inode=3675717 events: IN_MODIFY
[2021/07/30 14:40:54] [debug] [input:tail:tail.0] inode=3675717 events: IN_MODIFY
[2021/07/30 14:40:54] [debug] [input:tail:tail.0] inode=3675717 events: IN_MODIFY
[2021/07/30 14:40:55] [debug] [task] created task=0x7f6fda838540 id=6 OK
[2021/07/30 14:40:55] [debug] [task] created task=0x7f6fda8385e0 id=7 OK
[2021/07/30 14:40:55] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:40:55] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:40:56] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:40:56] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:40:56] [ warn] [http_client] cannot increase buffer: current=4096 requested=36864 max=4096
[2021/07/30 14:40:56] [debug] [output:kinesis_firehose:kinesis_firehose.0] PutRecordBatch http status=200
[2021/07/30 14:40:56] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sent events to test-alexh-haproxy-access-logs
[2021/07/30 14:40:56] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:40:56] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:40:56] [ warn] [http_client] cannot increase buffer: current=4096 requested=36864 max=4096
[2021/07/30 14:40:56] [debug] [output:kinesis_firehose:kinesis_firehose.0] PutRecordBatch http status=200
[2021/07/30 14:40:56] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sent events to test-alexh-haproxy-access-logs
[2021/07/30 14:40:56] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 70 records
[2021/07/30 14:40:56] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:40:56] [ warn] [http_client] cannot increase buffer: current=4096 requested=36864 max=4096
[2021/07/30 14:40:56] [debug] [output:kinesis_firehose:kinesis_firehose.0] PutRecordBatch http status=200
[2021/07/30 14:40:56] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sent events to test-alexh-haproxy-access-logs
[2021/07/30 14:40:56] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:40:56] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:40:56] [ warn] [http_client] cannot increase buffer: current=4096 requested=36864 max=4096
[2021/07/30 14:40:56] [debug] [output:kinesis_firehose:kinesis_firehose.0] PutRecordBatch http status=200
[2021/07/30 14:40:56] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sent events to test-alexh-haproxy-access-logs
[2021/07/30 14:40:56] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:40:56] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:40:56] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:40:56] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:40:56] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 411275
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144056Z
Authorization: (redacted)
[2021/07/30 14:40:56] [debug] [input:tail:tail.0] inode=3675717 events: IN_MODIFY
[2021/07/30 14:40:56] [debug] [input:tail:tail.0] inode=3675717 events: IN_MODIFY
[2021/07/30 14:40:56] [debug] [input:tail:tail.0] inode=3675717 events: IN_MODIFY
[2021/07/30 14:40:57] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:40:57] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:40:57] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 413295
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144057Z
Authorization: (redacted)
[2021/07/30 14:40:57] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:40:57] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:40:57] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 415839
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144057Z
Authorization: (redacted)
[2021/07/30 14:40:57] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:40:57] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:40:57] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 410571
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144057Z
Authorization: (redacted)
[2021/07/30 14:40:57] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:40:57] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:40:57] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 410571
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144057Z
Authorization: (redacted)
[2021/07/30 14:40:57] [debug] [task] created task=0x7f6fda8384a0 id=8 OK
[2021/07/30 14:40:57] [debug] [task] created task=0x7f6fda838a40 id=9 OK
[2021/07/30 14:40:57] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:40:57] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:40:58] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:40:58] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:40:58] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:40:58] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:40:58] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 415839
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144058Z
Authorization: (redacted)
[2021/07/30 14:40:58] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:40:58] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:40:58] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 412267
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144058Z
Authorization: (redacted)
[2021/07/30 14:40:58] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:40:58] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:40:58] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 410995
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144058Z
Authorization: (redacted)
[2021/07/30 14:40:58] [ warn] [http_client] cannot increase buffer: current=4096 requested=36864 max=4096
[2021/07/30 14:40:58] [debug] [output:kinesis_firehose:kinesis_firehose.0] PutRecordBatch http status=200
[2021/07/30 14:40:58] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sent events to test-alexh-haproxy-access-logs
[2021/07/30 14:40:58] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:40:58] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:40:58] [ warn] [http_client] cannot increase buffer: current=4096 requested=36864 max=4096
[2021/07/30 14:40:58] [debug] [output:kinesis_firehose:kinesis_firehose.0] PutRecordBatch http status=200
[2021/07/30 14:40:58] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sent events to test-alexh-haproxy-access-logs
[2021/07/30 14:40:59] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 493 records
[2021/07/30 14:40:59] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:40:59] [ warn] [http_client] cannot increase buffer: current=4096 requested=36864 max=4096
[2021/07/30 14:40:59] [debug] [output:kinesis_firehose:kinesis_firehose.0] PutRecordBatch http status=200
[2021/07/30 14:40:59] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sent events to test-alexh-haproxy-access-logs
[2021/07/30 14:40:59] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:40:59] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:40:59] [ warn] [http_client] cannot increase buffer: current=4096 requested=36864 max=4096
[2021/07/30 14:40:59] [debug] [output:kinesis_firehose:kinesis_firehose.0] PutRecordBatch http status=200
[2021/07/30 14:40:59] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sent events to test-alexh-haproxy-access-logs
[2021/07/30 14:40:59] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 96 records
[2021/07/30 14:40:59] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:40:59] [ warn] [http_client] cannot increase buffer: current=4096 requested=36864 max=4096
[2021/07/30 14:40:59] [debug] [output:kinesis_firehose:kinesis_firehose.0] PutRecordBatch http status=200
[2021/07/30 14:40:59] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sent events to test-alexh-haproxy-access-logs
[2021/07/30 14:40:59] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 96 records
[2021/07/30 14:40:59] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:40:59] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:40:59] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:40:59] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 56799
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144059Z
Authorization: (redacted)
[2021/07/30 14:40:59] [debug] [input:tail:tail.0] inode=3675717 events: IN_MODIFY
[2021/07/30 14:40:59] [debug] [task] created task=0x7f6fda837a00 id=10 OK
[2021/07/30 14:40:59] [debug] [task] created task=0x7f6fda837be0 id=11 OK
[2021/07/30 14:40:59] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:40:59] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:41:00] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:41:00] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:41:00] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:41:00] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:41:00] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 411275
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144100Z
Authorization: (redacted)
[2021/07/30 14:41:00] [ warn] [http_client] cannot increase buffer: current=4096 requested=36864 max=4096
[2021/07/30 14:41:00] [debug] [output:kinesis_firehose:kinesis_firehose.0] PutRecordBatch http status=200
[2021/07/30 14:41:00] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sent events to test-alexh-haproxy-access-logs
[2021/07/30 14:41:00] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:41:00] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:41:00] [ warn] [http_client] cannot increase buffer: current=4096 requested=36864 max=4096
[2021/07/30 14:41:00] [debug] [output:kinesis_firehose:kinesis_firehose.0] PutRecordBatch http status=200
[2021/07/30 14:41:00] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sent events to test-alexh-haproxy-access-logs
[2021/07/30 14:41:00] [ info] [output:kinesis_firehose:kinesis_firehose.0] Processed 1070 records, sent 1070 to test-alexh-haproxy-access-logs
[2021/07/30 14:41:00] [ warn] [http_client] cannot increase buffer: current=4096 requested=36864 max=4096
[2021/07/30 14:41:00] [debug] [output:kinesis_firehose:kinesis_firehose.0] PutRecordBatch http status=200
[2021/07/30 14:41:00] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sent events to test-alexh-haproxy-access-logs
[2021/07/30 14:41:00] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:41:00] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:41:00] [ warn] [http_client] cannot increase buffer: current=4096 requested=36864 max=4096
[2021/07/30 14:41:00] [debug] [output:kinesis_firehose:kinesis_firehose.0] PutRecordBatch http status=200
[2021/07/30 14:41:00] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sent events to test-alexh-haproxy-access-logs
[2021/07/30 14:41:00] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:41:00] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:41:00] [debug] [socket] could not validate socket status for #52 (don't worry)
[2021/07/30 14:41:00] [error] [src/flb_http_client.c:1169 errno=11] Resource temporarily unavailable
[2021/07/30 14:41:00] [debug] [aws_client] firehose.us-east-1.amazonaws.com: http_do=-1, HTTP Status: 0
[2021/07/30 14:41:00] [error] [output:kinesis_firehose:kinesis_firehose.0] Failed to send log records to test-alexh-haproxy-access-logs
[2021/07/30 14:41:00] [error] [output:kinesis_firehose:kinesis_firehose.0] Failed to send log records
[2021/07/30 14:41:00] [error] [output:kinesis_firehose:kinesis_firehose.0] Failed to send records
[2021/07/30 14:41:00] [debug] [out coro] cb_destroy coro_id=1
[2021/07/30 14:41:00] [debug] [out coro] cb_destroy coro_id=4
[2021/07/30 14:41:00] [debug] [task] destroy task=0x7f6fda8376e0 (task_id=1)
[2021/07/30 14:41:00] [debug] [task] created task=0x7f6fda8376e0 id=1 OK
[2021/07/30 14:41:00] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 254 records
[2021/07/30 14:41:00] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:41:00] [debug] [retry] new retry created for task_id=4 attempts=1
[2021/07/30 14:41:00] [ warn] [engine] failed to flush chunk '1-1627656052.899736863.flb', retry in 7 seconds: task_id=4, input=tail.0 > output=kinesis_firehose.0 (out_id=0)
[2021/07/30 14:41:00] [debug] [input:tail:tail.0] inode=3675717 events: IN_MODIFY
[2021/07/30 14:41:01] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:41:01] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:41:01] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 208203
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144101Z
Authorization: (redacted)
[2021/07/30 14:41:01] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:41:01] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:41:01] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 410995
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144101Z
Authorization: (redacted)
[2021/07/30 14:41:01] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:41:01] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:41:01] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 412459
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144101Z
Authorization: (redacted)
[2021/07/30 14:41:01] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:41:01] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:41:01] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 415839
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144101Z
Authorization: (redacted)
[2021/07/30 14:41:01] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:41:01] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:41:01] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 404159
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144101Z
Authorization: (redacted)
[2021/07/30 14:41:01] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:41:01] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:41:01] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 78295
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144101Z
Authorization: (redacted)
[2021/07/30 14:41:01] [debug] [task] created task=0x7f6fda839300 id=12 OK
[2021/07/30 14:41:01] [debug] [task] created task=0x7f6fda839440 id=13 OK
[2021/07/30 14:41:01] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:41:01] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:41:02] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:41:02] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:41:02] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:41:02] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:41:02] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 411275
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144102Z
Authorization: (redacted)
[2021/07/30 14:41:02] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:41:02] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:41:02] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 78295
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144102Z
Authorization: (redacted)
[2021/07/30 14:41:02] [ warn] [http_client] cannot increase buffer: current=4096 requested=36864 max=4096
[2021/07/30 14:41:02] [debug] [output:kinesis_firehose:kinesis_firehose.0] PutRecordBatch http status=200
[2021/07/30 14:41:02] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sent events to test-alexh-haproxy-access-logs
[2021/07/30 14:41:02] [ info] [output:kinesis_firehose:kinesis_firehose.0] Processed 1096 records, sent 1096 to test-alexh-haproxy-access-logs
[2021/07/30 14:41:02] [ warn] [http_client] cannot increase buffer: current=4096 requested=36864 max=4096
[2021/07/30 14:41:02] [debug] [output:kinesis_firehose:kinesis_firehose.0] PutRecordBatch http status=200
[2021/07/30 14:41:02] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sent events to test-alexh-haproxy-access-logs
[2021/07/30 14:41:02] [ info] [output:kinesis_firehose:kinesis_firehose.0] Processed 254 records, sent 254 to test-alexh-haproxy-access-logs
[2021/07/30 14:41:02] [debug] [socket] could not validate socket status for #46 (don't worry)
[2021/07/30 14:41:02] [debug] [socket] could not validate socket status for #47 (don't worry)
[2021/07/30 14:41:02] [debug] [out coro] cb_destroy coro_id=3
[2021/07/30 14:41:02] [debug] [out coro] cb_destroy coro_id=12
[2021/07/30 14:41:02] [debug] [task] destroy task=0x7f6fda837b40 (task_id=3)
[2021/07/30 14:41:02] [debug] [task] destroy task=0x7f6fda8376e0 (task_id=1)
[2021/07/30 14:41:02] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:41:02] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:41:02] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 411275
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144102Z
Authorization: (redacted)
[2021/07/30 14:41:02] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:41:02] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:41:02] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 414903
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144102Z
Authorization: (redacted)
[2021/07/30 14:41:02] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:41:02] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:41:02] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 412963
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144102Z
Authorization: (redacted)
[2021/07/30 14:41:02] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:41:02] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:41:02] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 410151
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144102Z
Authorization: (redacted)
[2021/07/30 14:41:02] [debug] [input:tail:tail.0] inode=3675717 events: IN_MODIFY
[2021/07/30 14:41:02] [debug] [input:tail:tail.0] inode=3675717 events: IN_MODIFY
[2021/07/30 14:41:03] [ warn] [http_client] cannot increase buffer: current=4096 requested=36864 max=4096
[2021/07/30 14:41:03] [debug] [output:kinesis_firehose:kinesis_firehose.0] PutRecordBatch http status=200
[2021/07/30 14:41:03] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sent events to test-alexh-haproxy-access-logs
[2021/07/30 14:41:03] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:41:03] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:41:03] [ warn] [http_client] cannot increase buffer: current=4096 requested=36864 max=4096
[2021/07/30 14:41:03] [debug] [output:kinesis_firehose:kinesis_firehose.0] PutRecordBatch http status=200
[2021/07/30 14:41:03] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sent events to test-alexh-haproxy-access-logs
[2021/07/30 14:41:03] [ info] [output:kinesis_firehose:kinesis_firehose.0] Processed 1096 records, sent 1096 to test-alexh-haproxy-access-logs
[2021/07/30 14:41:03] [debug] [socket] could not validate socket status for #50 (don't worry)
[2021/07/30 14:41:03] [ warn] [http_client] cannot increase buffer: current=4096 requested=36864 max=4096
[2021/07/30 14:41:03] [debug] [output:kinesis_firehose:kinesis_firehose.0] PutRecordBatch http status=200
[2021/07/30 14:41:03] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sent events to test-alexh-haproxy-access-logs
[2021/07/30 14:41:03] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 129 records
[2021/07/30 14:41:03] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:41:03] [ warn] [http_client] cannot increase buffer: current=4096 requested=36864 max=4096
[2021/07/30 14:41:03] [debug] [output:kinesis_firehose:kinesis_firehose.0] PutRecordBatch http status=200
[2021/07/30 14:41:03] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sent events to test-alexh-haproxy-access-logs
[2021/07/30 14:41:03] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:41:03] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:41:03] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:41:03] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:41:03] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 411371
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144103Z
Authorization: (redacted)
[2021/07/30 14:41:03] [debug] [out coro] cb_destroy coro_id=5
[2021/07/30 14:41:03] [debug] [task] destroy task=0x7f6fda837dc0 (task_id=5)
[2021/07/30 14:41:03] [debug] [socket] could not validate socket status for #54 (don't worry)
[2021/07/30 14:41:03] [ warn] [http_client] cannot increase buffer: current=4096 requested=36864 max=4096
[2021/07/30 14:41:03] [debug] [output:kinesis_firehose:kinesis_firehose.0] PutRecordBatch http status=200
[2021/07/30 14:41:03] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sent events to test-alexh-haproxy-access-logs
[2021/07/30 14:41:03] [ info] [output:kinesis_firehose:kinesis_firehose.0] Processed 993 records, sent 993 to test-alexh-haproxy-access-logs
[2021/07/30 14:41:03] [debug] [task] created task=0x7f6fda837c80 id=1 OK
[2021/07/30 14:41:03] [debug] [task] created task=0x7f6fda8389a0 id=3 OK
[2021/07/30 14:41:03] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:41:03] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:41:04] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 130 records
[2021/07/30 14:41:04] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:41:04] [debug] [aws_client] firehose.us-east-1.amazonaws.com: http_do=-1, HTTP Status: 0
[2021/07/30 14:41:04] [debug] [upstream] KA connection #43 to firehose.us-east-1.amazonaws.com:443 is now available
[2021/07/30 14:41:04] [error] [output:kinesis_firehose:kinesis_firehose.0] Failed to send log records to test-alexh-haproxy-access-logs
[2021/07/30 14:41:04] [error] [output:kinesis_firehose:kinesis_firehose.0] Failed to send log records
[2021/07/30 14:41:04] [error] [output:kinesis_firehose:kinesis_firehose.0] Failed to send records
[2021/07/30 14:41:04] [debug] [out coro] cb_destroy coro_id=7
[2021/07/30 14:41:04] [debug] [out coro] cb_destroy coro_id=0
[2021/07/30 14:41:04] [debug] [task] destroy task=0x7f6fda8385e0 (task_id=7)
[2021/07/30 14:41:04] [debug] [retry] new retry created for task_id=0 attempts=1
[2021/07/30 14:41:04] [ warn] [engine] failed to flush chunk '1-1627656048.878207960.flb', retry in 8 seconds: task_id=0, input=tail.0 > output=kinesis_firehose.0 (out_id=0)
[2021/07/30 14:41:04] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:41:04] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:41:04] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 106007
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144104Z
Authorization: (redacted)
[2021/07/30 14:41:04] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:41:04] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:41:04] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 105967
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144104Z
Authorization: (redacted)
[2021/07/30 14:41:04] [ warn] [http_client] cannot increase buffer: current=4096 requested=36864 max=4096
[2021/07/30 14:41:04] [debug] [output:kinesis_firehose:kinesis_firehose.0] PutRecordBatch http status=200
[2021/07/30 14:41:04] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sent events to test-alexh-haproxy-access-logs
[2021/07/30 14:41:04] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:41:04] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:41:04] [debug] [upstream] KA connection #43 to firehose.us-east-1.amazonaws.com:443 has been assigned (recycled)
[2021/07/30 14:41:04] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:41:04] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:41:04] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 410995
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144104Z
Authorization: (redacted)
[2021/07/30 14:41:04] [debug] [socket] could not validate socket status for #48 (don't worry)
[2021/07/30 14:41:04] [ warn] [http_client] cannot increase buffer: current=4096 requested=36864 max=4096
[2021/07/30 14:41:04] [debug] [output:kinesis_firehose:kinesis_firehose.0] PutRecordBatch http status=200
[2021/07/30 14:41:04] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sent events to test-alexh-haproxy-access-logs
[2021/07/30 14:41:05] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:41:05] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:41:05] [ warn] [http_client] cannot increase buffer: current=4096 requested=36864 max=4096
[2021/07/30 14:41:05] [debug] [output:kinesis_firehose:kinesis_firehose.0] PutRecordBatch http status=200
[2021/07/30 14:41:05] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sent events to test-alexh-haproxy-access-logs
[2021/07/30 14:41:05] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:41:05] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:41:05] [ warn] [http_client] cannot increase buffer: current=4096 requested=36864 max=4096
[2021/07/30 14:41:05] [debug] [output:kinesis_firehose:kinesis_firehose.0] PutRecordBatch http status=200
[2021/07/30 14:41:05] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sent events to test-alexh-haproxy-access-logs
[2021/07/30 14:41:05] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:41:05] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:41:05] [debug] [task] created task=0x7f6fda838d60 id=5 OK
[2021/07/30 14:41:05] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:41:05] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:41:05] [ warn] [http_client] cannot increase buffer: current=4096 requested=36864 max=4096
[2021/07/30 14:41:05] [debug] [output:kinesis_firehose:kinesis_firehose.0] PutRecordBatch http status=200
[2021/07/30 14:41:05] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sent events to test-alexh-haproxy-access-logs
[2021/07/30 14:41:05] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 38 records
[2021/07/30 14:41:05] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:41:05] [ warn] [http_client] cannot increase buffer: current=4096 requested=36864 max=4096
[2021/07/30 14:41:05] [debug] [output:kinesis_firehose:kinesis_firehose.0] PutRecordBatch http status=200
[2021/07/30 14:41:05] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sent events to test-alexh-haproxy-access-logs
[2021/07/30 14:41:06] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:41:06] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:41:06] [ warn] [http_client] cannot increase buffer: current=4096 requested=36864 max=4096
[2021/07/30 14:41:06] [debug] [output:kinesis_firehose:kinesis_firehose.0] PutRecordBatch http status=200
[2021/07/30 14:41:06] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sent events to test-alexh-haproxy-access-logs
[2021/07/30 14:41:06] [ info] [output:kinesis_firehose:kinesis_firehose.0] Processed 130 records, sent 130 to test-alexh-haproxy-access-logs
[2021/07/30 14:41:06] [ warn] [http_client] cannot increase buffer: current=4096 requested=36864 max=4096
[2021/07/30 14:41:06] [debug] [output:kinesis_firehose:kinesis_firehose.0] PutRecordBatch http status=200
[2021/07/30 14:41:06] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sent events to test-alexh-haproxy-access-logs
[2021/07/30 14:41:06] [ info] [output:kinesis_firehose:kinesis_firehose.0] Processed 629 records, sent 629 to test-alexh-haproxy-access-logs
[2021/07/30 14:41:06] [debug] [input:tail:tail.0] inode=3675717 events: IN_MODIFY
[2021/07/30 14:41:06] [debug] [socket] could not validate socket status for #54 (don't worry)
[2021/07/30 14:41:06] [debug] [socket] could not validate socket status for #50 (don't worry)
[2021/07/30 14:41:06] [debug] [out coro] cb_destroy coro_id=16
[2021/07/30 14:41:06] [debug] [out coro] cb_destroy coro_id=11
[2021/07/30 14:41:06] [debug] [task] destroy task=0x7f6fda8389a0 (task_id=3)
[2021/07/30 14:41:06] [debug] [task] destroy task=0x7f6fda837be0 (task_id=11)
[2021/07/30 14:41:06] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:41:06] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:41:06] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 412899
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144106Z
Authorization: (redacted)
[2021/07/30 14:41:06] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:41:06] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:41:06] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 411275
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144106Z
Authorization: (redacted)
[2021/07/30 14:41:06] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:41:06] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:41:06] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 411371
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144106Z
Authorization: (redacted)
[2021/07/30 14:41:06] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:41:06] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:41:06] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 415839
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144106Z
Authorization: (redacted)
[2021/07/30 14:41:06] [debug] [task] created task=0x7f6fda8382c0 id=3 OK
[2021/07/30 14:41:06] [debug] [task] created task=0x7f6fda838360 id=7 OK
[2021/07/30 14:41:06] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:41:06] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:41:07] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:41:07] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:41:07] [debug] [input:tail:tail.0] inode=3675717 events: IN_MODIFY
[2021/07/30 14:41:07] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:41:07] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:41:07] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 412459
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144107Z
Authorization: (redacted)
[2021/07/30 14:41:07] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:41:07] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:41:07] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 410147
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144107Z
Authorization: (redacted)
[2021/07/30 14:41:07] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:41:07] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:41:07] [debug] [task] created task=0x7f6fda8393a0 id=11 OK
[2021/07/30 14:41:07] [debug] [task] created task=0x7f6fda8394e0 id=14 OK
[2021/07/30 14:41:08] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:41:08] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:41:08] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:41:08] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:41:08] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:41:08] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:41:08] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 415839
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144108Z
Authorization: (redacted)
[2021/07/30 14:41:08] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:41:08] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:41:08] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 410995
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144108Z
Authorization: (redacted)
[2021/07/30 14:41:08] [ warn] [http_client] cannot increase buffer: current=4096 requested=36864 max=4096
[2021/07/30 14:41:08] [debug] [output:kinesis_firehose:kinesis_firehose.0] PutRecordBatch http status=200
[2021/07/30 14:41:08] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sent events to test-alexh-haproxy-access-logs
[2021/07/30 14:41:08] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:41:08] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:41:08] [ warn] [http_client] cannot increase buffer: current=4096 requested=36864 max=4096
[2021/07/30 14:41:08] [debug] [output:kinesis_firehose:kinesis_firehose.0] PutRecordBatch http status=200
[2021/07/30 14:41:08] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sent events to test-alexh-haproxy-access-logs
[2021/07/30 14:41:08] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:41:08] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:41:08] [ warn] [http_client] cannot increase buffer: current=4096 requested=36864 max=4096
[2021/07/30 14:41:08] [debug] [output:kinesis_firehose:kinesis_firehose.0] PutRecordBatch http status=200
[2021/07/30 14:41:08] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sent events to test-alexh-haproxy-access-logs
[2021/07/30 14:41:09] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:41:09] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:41:09] [ warn] [http_client] cannot increase buffer: current=4096 requested=36864 max=4096
[2021/07/30 14:41:09] [debug] [output:kinesis_firehose:kinesis_firehose.0] PutRecordBatch http status=200
[2021/07/30 14:41:09] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sent events to test-alexh-haproxy-access-logs
[2021/07/30 14:41:09] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:41:09] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:41:09] [ warn] [http_client] cannot increase buffer: current=4096 requested=36864 max=4096
[2021/07/30 14:41:09] [debug] [output:kinesis_firehose:kinesis_firehose.0] PutRecordBatch http status=200
[2021/07/30 14:41:09] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sent events to test-alexh-haproxy-access-logs
[2021/07/30 14:41:09] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:41:09] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:41:09] [debug] [socket] could not validate socket status for #54 (don't worry)
[2021/07/30 14:41:09] [error] [src/flb_http_client.c:1169 errno=11] Resource temporarily unavailable
[2021/07/30 14:41:09] [debug] [aws_client] firehose.us-east-1.amazonaws.com: http_do=-1, HTTP Status: 0
[2021/07/30 14:41:09] [error] [output:kinesis_firehose:kinesis_firehose.0] Failed to send log records to test-alexh-haproxy-access-logs
[2021/07/30 14:41:09] [error] [output:kinesis_firehose:kinesis_firehose.0] Failed to send log records
[2021/07/30 14:41:09] [error] [output:kinesis_firehose:kinesis_firehose.0] Failed to send records
[2021/07/30 14:41:09] [error] [src/flb_http_client.c:1169 errno=11] Resource temporarily unavailable
[2021/07/30 14:41:09] [debug] [aws_client] firehose.us-east-1.amazonaws.com: http_do=-1, HTTP Status: 0
[2021/07/30 14:41:09] [error] [output:kinesis_firehose:kinesis_firehose.0] Failed to send log records to test-alexh-haproxy-access-logs
[2021/07/30 14:41:09] [error] [output:kinesis_firehose:kinesis_firehose.0] Failed to send log records
[2021/07/30 14:41:09] [error] [output:kinesis_firehose:kinesis_firehose.0] Failed to send records
[2021/07/30 14:41:09] [ warn] [http_client] cannot increase buffer: current=4096 requested=36864 max=4096
[2021/07/30 14:41:09] [debug] [output:kinesis_firehose:kinesis_firehose.0] PutRecordBatch http status=200
[2021/07/30 14:41:09] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sent events to test-alexh-haproxy-access-logs
[2021/07/30 14:41:09] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 259 records
[2021/07/30 14:41:09] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:41:09] [debug] [input:tail:tail.0] inode=3675717 events: IN_MODIFY
[2021/07/30 14:41:09] [debug] [socket] could not validate socket status for #53 (don't worry)
[2021/07/30 14:41:09] [debug] [socket] could not validate socket status for #47 (don't worry)
[2021/07/30 14:41:09] [debug] [out coro] cb_destroy coro_id=18
[2021/07/30 14:41:09] [debug] [out coro] cb_destroy coro_id=8
[2021/07/30 14:41:09] [debug] [retry] new retry created for task_id=3 attempts=1
[2021/07/30 14:41:09] [ warn] [engine] failed to flush chunk '1-1627656066.229593768.flb', retry in 7 seconds: task_id=3, input=tail.0 > output=kinesis_firehose.0 (out_id=0)
[2021/07/30 14:41:09] [debug] [retry] new retry created for task_id=8 attempts=1
[2021/07/30 14:41:09] [ warn] [engine] failed to flush chunk '1-1627656056.919848437.flb', retry in 6 seconds: task_id=8, input=tail.0 > output=kinesis_firehose.0 (out_id=0)
[2021/07/30 14:41:09] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:41:09] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:41:09] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 415839
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144109Z
Authorization: (redacted)
[2021/07/30 14:41:09] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:41:09] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:41:09] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 31423
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144109Z
Authorization: (redacted)
[2021/07/30 14:41:09] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:41:09] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:41:09] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 415839
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144109Z
Authorization: (redacted)
[2021/07/30 14:41:09] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:41:09] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:41:09] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 411159
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144109Z
Authorization: (redacted)
[2021/07/30 14:41:09] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:41:09] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:41:09] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 411371
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144109Z
Authorization: (redacted)
[2021/07/30 14:41:09] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:41:09] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:41:09] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 412459
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144109Z
Authorization: (redacted)
[2021/07/30 14:41:09] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:41:09] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:41:09] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 413163
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144109Z
Authorization: (redacted)
[2021/07/30 14:41:10] [ warn] [http_client] cannot increase buffer: current=4096 requested=36864 max=4096
[2021/07/30 14:41:10] [debug] [output:kinesis_firehose:kinesis_firehose.0] PutRecordBatch http status=200
[2021/07/30 14:41:10] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sent events to test-alexh-haproxy-access-logs
[2021/07/30 14:41:10] [ info] [output:kinesis_firehose:kinesis_firehose.0] Processed 1038 records, sent 1038 to test-alexh-haproxy-access-logs
[2021/07/30 14:41:10] [debug] [socket] could not validate socket status for #44 (don't worry)
[2021/07/30 14:41:10] [debug] [out coro] cb_destroy coro_id=9
[2021/07/30 14:41:10] [debug] [task] destroy task=0x7f6fda838a40 (task_id=9)
[2021/07/30 14:41:10] [debug] [task] created task=0x7f6fda838a40 id=9 OK
[2021/07/30 14:41:10] [debug] [task] created task=0x7f6fda837dc0 id=15 OK
[2021/07/30 14:41:10] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:41:10] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:41:11] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending 500 records
[2021/07/30 14:41:11] [debug] [output:kinesis_firehose:kinesis_firehose.0] Sending log records to delivery stream test-alexh-haproxy-access-logs
[2021/07/30 14:41:11] [debug] [input:tail:tail.0] inode=3675717 events: IN_MODIFY
[2021/07/30 14:41:11] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:41:11] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:41:11] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 415839
User-Agent: aws-fluent-bit-plugin
Content-Type: application/x-amz-json-1.1
X-Amz-Target: Firehose_20150804.PutRecordBatch
x-amz-date: 20210730T144111Z
Authorization: (redacted)
[2021/07/30 14:41:11] [debug] [http_client] not using http_proxy for header
[2021/07/30 14:41:11] [debug] [aws_credentials] Requesting credentials from the env provider..
[2021/07/30 14:41:11] [debug] [http_client] header=POST / HTTP/1.1
Host: firehose.us-east-1.amazonaws.com
Content-Length: 412459
User-Agent: aws-fluent-bit-plugin