-
Notifications
You must be signed in to change notification settings - Fork 4.9k
/
Copy pathCHANGELOG.asciidoc
8952 lines (6205 loc) · 408 KB
/
CHANGELOG.asciidoc
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
// Use these for links to issue and pulls. Note issues and pulls redirect one to
// each other on Github, so don't worry too much on using the right prefix.
:issue: https://github.com/elastic/beats/issues/
:pull: https://github.com/elastic/beats/pull/
[[release-notes-7.17.20]]
=== Beats version 7.17.20
https://github.com/elastic/beats/compare/v7.17.19\...v7.17.20[View commits]
==== Added
*Affecting all Beats*
- Upgrade Go version to 1.21.9. {pull}38728[38728]
[[release-notes-7.17.19]]
=== Beats version 7.17.19
https://github.com/elastic/beats/compare/v7.17.18\...v7.17.19[View commits]
==== Breaking changes
*Affecting all Beats*
- Upgrade Go version to 1.21.8. Removes support for Windows 8.1. See https://tip.golang.org/doc/go1.21#windows. {pull}38210[38210]
==== Bugfixes
*Auditbeat*
- Fix guess trigger for system/socket credentials on newer kernels. {issue}36905[36905] {pull}37136[37136]
*Filebeat*
- [threatintel] MISP pagination fixes. {pull}37898[37898]
- Fix file handle leak when handling errors in filestream. {pull}37973[37973]
[[release-notes-7.17.18]]
=== Beats version 7.17.18
https://github.com/elastic/beats/compare/v7.17.17\...v7.17.18[View commits]
==== Breaking changes
*Affecting all Beats*
- add_cloud_metadata processor: `huawei` provider is now treated as `openstack`. Huawei cloud runs on OpenStack
platform, and when viewed from a metadata API standpoint, it is impossible to differentiate it from OpenStack. If you
know that your deployments run on Huawei Cloud exclusively, and you wish to have `cloud.provider` value as `huawei`,
you can achieve this by overwriting the value using an `add_fields` processor. {pull}35184[35184]
[[release-notes-7.17.17]]
=== Beats version 7.17.17
https://github.com/elastic/beats/compare/v7.17.16\...v7.17.17[View commits]
==== Added
*Affecting all Beats*
- Upgrade Go version to 1.20.12. {pull}37352[37352]
[[release-notes-7.17.16]]
=== Beats version 7.17.16
https://github.com/elastic/beats/compare/v7.17.15\...v7.17.16[View commits]
The 7.17.16 patch release contains a fix for a potential security vulnerability. https://discuss.elastic.co/c/announcements/security-announcements/31[Please see our security advisory for more details].
==== Breaking changes
*Affecting all Beats*
- Avoid logging fields values when handling Elasticsearch output errors except at the debug log level. The debug log level must now be used to see detailed errors, for example mapping errors and their cause. {pull}37229[37229]
==== Bugfixes
*Auditbeat*
- Fix documentation regarding socket type selection. {issue}37174[37174] {pull}37175[37175]
==== Added
*Winlogbeat*
- Document minimum permissions required for running Winlogbeat with local user account. {issue}15773[15773] {pull}37176[37176]
==== Deprecated
[[release-notes-7.17.15]]
=== Beats version 7.17.15
https://github.com/elastic/beats/compare/v7.17.14\...v7.17.15[View commits]
==== Bugfixes
*Metricbeat*
- Fix CassandraConnectionClosures metric configuration {pull}34742[34742]
==== Added
*Affecting all Beats*
- Upgrade elastic-agent-libs to v0.6.2 which includes the following fixes: {pull}36979[36979]:
* Fix log file rotator purge.
* Fix IP validation for TLS clients.
* Rename the `key_passphrase_file` attribute to `key_passphrase_path` to be consistent with suggestions and naming conventions in Elastic Agent.
* Send `PendingStop` and `Stopped` status to Windows service manager on external shutdown notification.
- Upgrade Go version to 1.20.10. {pull}36846[36846]
- Upgrade golang/x/net version to v0.17.0. Updates the publicsuffix table used by the registered_domain processor. {pull}36969[36969]
[[release-notes-7.17.14]]
=== Beats version 7.17.14
https://github.com/elastic/beats/compare/v7.17.13\...v7.17.14[View commits]
==== Breaking changes
*Affecting all Beats*
- The Elasticsearch output now enables compression by default. This decreases network data usage by an average of 70-80%, in exchange for 20-25% increased CPU use and ~10% increased ingestion time. The previous default can be restored by setting the flag `compression_level: 0` under `output.elasticsearch`. {pull}36681[36681]
==== Bugfixes
*Affecting all Beats*
- Eliminate cloning of event in deepUpdate {pull}35945[35945]
*Filebeat*
- [Gcs Input] - Added missing locks for safe concurrency {pull}34914[34914]
- Fix the `ignore_inactive` option being ignored in Filebeat's filestream input {pull}34770[34770]
- Fix TestMultiEventForEOFRetryHandlerInput unit test of CometD input {pull}34903[34903]
- Add input instance ID to request trace filename for httpjson and cel inputs {pull}35024[35024]
- Fixes "Can only start an input when all related states are finished" error when running under Elastic-Agent {pull}35250[35250] {issue}33653[33653]
- [GCS Input] - Fixed an issue where `bucket_timeout` was being applied to the entire bucket poll interval and not individual bucket object read operations. Fixed a map write concurrency issue arising from data races when using a high number of workers. Fixed the flaky tests that were present in the GCS test suit. {pull}35605[35605]
- Fix error message formatting from filestream input. {pull}35658[35658]
- Fix error when trying to use `include_message` parser {issue}35440[35440]
- Fix handling of IPv6 unspecified addresses in TCP input. {issue}35064[35064] {pull}35637[35637]
- Fixed a minor code error in the GCS input scheduler where a config value was being used directly instead of the source struct. {pull}35729[35729]
- Improve error reporting and fix IPv6 handling of TCP and UDP metric collection. {pull}35772[35772]
- Fix CEL input JSON marshalling of nested objects. {issue}35763[35763] {pull}35774[35774]
- Fix metric collection in GCPPubSub input. {pull}35773[35773]
- Fix end point deregistration in `http_endpoint` input. {issue}35899[35899] {pull}35903[35903]
- Fix duplicate ID panic in filestream metrics. {issue}35964[35964] {pull}35972[35972]
- Improve error reporting and fix IPv6 handling of TCP and UDP metric collection. {pull}35996[35996]
- Fix handling of NUL-terminated log lines in Fortinet Firewall module. {issue}36026[36026] {pull}36027[36027]
- Make redact field configuration recommended in CEL input and log warning if missing. {pull}36008[36008]
- Fix handling of region name configuration in awss3 input {pull}36034[36034]
- Fixed concurrency and flakey tests issue in Azure Blob Storage input. {issue}35983[35983] {pull}36124[36124]
- Fix panic when sqs input metrics getter is invoked {pull}36101[36101] {issue}36077[36077]
- Make CEL input's `now` global variable static for evaluation lifetime. {pull}36107[36107]
- Update mito CEL extension library to v1.5.0. {pull}36146[36146]
- Fix handling of TCP/UDP address resolution during metric initialization. {issue}35064[35064] {pull}36287[36287]
- Fix handling of Juniper SRX structured data when there is no leading Junos element. {issue}36270[36270] {pull}36308[36308]
- Remove erroneous error log in GCPPubSub input. {pull}36296[36296]
- Fix Filebeat Cisco module with missing escape character {issue}36325[36325] {pull}36326[36326]
- Fix panic when redact option is not provided to CEL input. {issue}36387[36387] {pull}36388[36388]
- Remove 'onFilteredOut' and 'onDroppedOnPublish' callback logs {issue}36299[36299] {pull}36399[36399]
- Added a fix for Crowdstrike pipeline handling process arrays {pull}36496[36496]
- Revert error introduced in {pull}35734[35734] when symlinks can't be resolved in filestream. {pull}36557[36557]
*Packetbeat*
- Fix panic in HTTP protocol parsing when host header has empty host part. {issue}36497[36497] {issue}36518[36518]
- Fix default cache size calculation. {pull}36723[36723]
==== Added
*Filebeat*
- Re-use buffers to optimise memory allocation in fingerprint mode of filestream {pull}36736[36736]
[[release-notes-7.17.13]]
=== Beats version 7.17.13
https://github.com/elastic/beats/compare/v7.17.12\...v7.17.13[View commits]
==== Bugfixes
*Affecting all Beats*
- Upgrade Go to 1.19.12 {pull}36247[36247]
*Filebeat*
- Filter out duplicate paths resolved from matching globs. {issue}36253[36253] {pull}36256[36256]
*Winlogbeat*
- Fix the ability to use filtering features (e.g. `ignore_older`, `event_id`, `provider`, `level`) while reading `.evtx` files. {issue}16826[16826] {pull}36173[36173]
==== Added
*Affecting all Beats*
- Add warning message to SysV init scripts for RPM-based systems that lack `/etc/rc.d/init.d/functions`. {issue}35708[35708] {pull}36188[36188]
[[release-notes-7.17.12]]
=== Beats version 7.17.12
https://github.com/elastic/beats/compare/v7.17.11\...v7.17.12[View commits]
==== Added
*Filebeat*
- Add sanitization capabilities to `azure-eventhub` input {pull}34874[34874]
- Add fingerprint mode for the filestream scanner and the new file identity based on it {issue}34419[34419] {pull}35734[35734]
[[release-notes-7.17.11]]
=== Beats version 7.17.11
https://github.com/elastic/beats/compare/v7.17.10\...v7.17.11[View commits]
==== Bugfixes
*Affecting all Beats*
- Added support for multi-line ZooKeeper logs. {issue}2496[2496]
- Allow `clock_nanosleep` in the default seccomp profiles for amd64 and 386. Newer versions of glibc (for example, 2.31) require it. {issue}33792[33792]
- Disable lockfile when running under elastic-agent. {pull}33988[33988]
- Fix lockfile logic, retry locking {pull}34194[34194]
- Add checks to ensure reloading of units if the configuration actually changed. {pull}34346[34346]
- Fix namespacing on self-monitoring {pull}32336[32336]
- Fix concurrent map writes when system/process code called from reporter code {pull}32491[32491]
- Log errors from the Elastic Agent V2 client errors channel. Avoids blocking when error occurs communicating with the Elastic Agent. {pull}34392[34392]
- Only log publish event messages in trace log level under elastic-agent. {pull}34391[34391]
- Fix issue where updating a single Elastic Agent configuration unit results in other units being turned off. {pull}34504[34504]
- Update elastic-agent-system-metrics to v0.4.6 to allow builds on mips platforms. {pull}34674[34674]
- The Elasticsearch output now splits large requests instead of dropping them when it receives a StatusRequestEntityTooLarge error. {pull}34911[34911]
- Fix Beats started by agent not respecting the `allow_older_versions: true` configuration flag. {issue}34227[34227] {pull}34964[34964]
- Fix performance issues when we have a lot of inputs starting and stopping, by allowing to disable global processors under Fleet. {issue}35000[35000] {pull}35031[35031]
- In cases where the matcher detects a non-string type in a match statement, report the error as a debug statement rather than a warning statement. {pull}35119[35119]
- 'add_cloud_metadata' processor - add cloud.region field for GCE cloud provider
- 'add_cloud_metadata' processor - update Azure metadata API version to get missing `cloud.account.id` field
- Make sure that Kubernetes watchers are closed when closing the Kubernetes meta processor. {pull}35630[35630]
- Upgraded apache arrow library used in `x-pack/libbeat/reader/parquet` from v11 to v12.0.1 in order to fix cross-compilation issues. {pull}35640[35640]
- Fix panic when the disk queue's MaxRetryInterval configuration is specified, but RetryInterval is not. {pull}35820[35820]
*Filebeat*
- Fix EOF on single line not producing any event. {issue}30436[30436] {pull}33568[33568]
- Move repeated Windows event channel not found errors in winlog input to debug level. {issue}35314[35314] {pull}35317[35317]
- Fix crash when processing forwarded logs missing a message. {issue}34705[34705] {pull}34865[34865]
- Fix crash when loading azurewebstorage cursor with no partially processed data. {pull}35433[35433]
- RFC5424 syslog timestamps with offset 'Z' will be treated as UTC rather than using the default timezone. {pull}35360[35360]
- Fix syslog message parsing for fortinet.firewall to take into account quoted values. {pull}35522[35522]
- [system] sync system/auth dataset with system integration 1.29.0. {pull}35581[35581]
- Fix filestream false positive log error "filestream input with ID 'xyz' already exists" {issue}31767[31767]
*Winlogbeat*
- Move repeated channel not found errors to debug level. {issue}35314[35314] {pull}35317[35317]
==== Added
*Affecting all Beats*
Update Go version to 1.19.10. {pull}35751[35751]
[[release-notes-7.17.10]]
=== Beats version 7.17.10
https://github.com/elastic/beats/compare/v7.17.9\...v7.17.10[View commits]
==== Breaking changes
*Heartbeat*
- Update the recommended Node.js version to 18.12.0 for Synthetics {pull}15196[15196]
==== Bugfixes
*Affecting all Beats*
- Fix panics when a processor is closed twice {pull}34647[34647]
*Filebeat*
- [Azure Logs] Fix authentication_processing_details parsing in sign-in logs. {issue}34330[34330] {pull}34478[34478]
- Fix dropped events when monitor a beat under the agent and send its `Host info` log entry. {pull}34599[34599]
- Gracefully handle Windows event channel not found errors in winlog input. {issue}30201[30201] {pull}34605[34605]
- Fix handling of RFC5988 links' relation parameters by `getRFC5988Link` in HTTPJSON. {issue}34603[34603] {pull}34622[34622]
*Heartbeat*
- Enable nodejs engine strict validation when bundling synthetics. {pull}34471[34471]
*Packetbeat*
- Handle truncated DNS records more gracefully. {issue}21495[21495] {pull}28297[28297]
- Fix documentation for `flows.period` related to flow reporting. {pull}35009[35009]
*Winlogbeat*
- Fix handling of event data with keys containing dots. {issue}34345[34345] {pull}34549[34549]
- Gracefully handle channel not found errors. {issue}30201[30201] {pull}34605[34605]
- Clarify query term limits warning and remove link to missing Microsoft doc page. {pull}34715[34715]
- Improve documentation for event_logs.name configuration. {pull}34931[34931]
==== Added
*Filebeat*
- Allow user configuration of keep-alive behaviour for HTTPJSON input. {issue}33951[33951] {pull}34014[34014] {pull}34743[34743]
*Heartbeat*
- Remove host and port matching restrictions on hint-generated monitors. {pull}34376[34376]
*Metricbeat*
- Remove GCP Compute metadata cache {pull}33655[33655]
*Winlogbeat*
- Add note in documentation about 21 event ID clause limit {issue}35048[35048] {pull}35049[35049]
[[release-notes-7.17.9]]
=== Beats version 7.17.9
https://github.com/elastic/beats/compare/v7.17.8\...v7.17.9[View commits]
==== Bugfixes
*Affecting all Beats*
- Add extra protection on gRPC server start process to avoid trying to start a nil server.
- `add_fields` processor is now able to set metadata in events. {pull}30092[30092]
- Allows disabled pod event enrichment with deployment name. {pull}28521[28521] {pull}34097[34097]
*Filebeat*
- Rename identity as identity_name when the value is a string in Azure Platform Logs. {pull}33654[33654]
- Fix 'requires pointer' error while getting cursor metadata. {pull}33956[33956]
- [google_workspace] Fix pagination and cursor value update. {pull}34274[34274]
- Fix handling of quoted values in auditd module. {issue}22587[22587] {pull}34069[34069]
*Heartbeat*
- Install playwright dependencies from the provided script. {pull}34318[34318]
==== Added
*Metricbeat*
- Add namespace metadata to all namespaced kubernetes resources. {pull}33763[33763]
[[release-notes-7.17.8]]
=== Beats version 7.17.8
https://github.com/elastic/beats/compare/v7.17.7\...v7.17.8[View commits]
==== Bugfixes
*Affecting all Beats*
- Re-enable build optimizations to reduce binary size and improve performance. {pull}33620[33620]
*Filebeat*
- Fix Google workspace pagination and document ID generation. {pull}33666[33666]
*Metricbeat*
- Add tags to events based on parsed identifier. {pull}33472[33472]
*Packetbeat*
- Fix panic on memcache transaction with no request or response. {issue}33852[33852] {pull}33853[33853]
==== Added
*Affecting all Beats*
- Beats will now attempt to recover if a lockfile has not been removed {pull}[33169]
*Auditbeat*
- Improve documentation for symlink handling behaviour in file integrity module. {pull}33430[33430]
- Ensure file integrity module watch paths are absolute. {pull}33430[33430]
*Filebeat*
- Add `text/csv` decoder to `httpjson` input {pull}28564[28564]
- Update `aws-s3` input to connect to non AWS S3 buckets {issue}28222[28222] {pull}28234[28234]
- Add support for parsers on journald input {pull}29070[29070]
- Add support in httpjson input for oAuth2ProviderDefault of password grant_type. {pull}29087[29087]
- threatintel module: Add new Recorded Future integration. {pull}30030[30030]
- Support SASL/SCRAM authentication in the Kafka input. {pull}31167[31167]
- checkpoint module: Add `network.transport` derived from IANA number. {pull}31076[31076]
- Add URL Encode template function for httpjson input. {pull}30962[30962]
- Add `application/zip` decoder to the `httpsjon` input. {issue}31282[31282] {pull}31304[31304]
- Default value of `filebeat.registry.flush` increased from 0s to 1s. CPU and disk I/O usage are reduced because the registry is not written to disk for each ingested log line. {issue}30279[30279]
- Cisco ASA/FTD: Add support for messages 434001 and 434003. {pull}31533[31533]
- Change threatintel module from beta to GA. {pull}31693[31693]
- Add template helper function for hashing strings. {issue}31613[31613] {pull}31630[31630]
- Add extended okta.debug_context.debug_data handling. {pull}31676[31676]
- Add `auth.oauth2.google.jwt_json` option to `httpjson` input. {pull}31750[31750]
- Add authentication fields to RabbitMQ module documents. {issue}31159[31159] {pull}31680[31680]
- Add template helper function for decoding hexadecimal strings. {pull}31886[31886]
- Add new `parser` called `include_message` to filter based on message contents. {issue}31794[31794] {pull}32094[32094]
- Allow iptables module to parse ulogd v2 TOS field in logs. {pull}32126[32126]
- httpjson input: Add `toJSON` helper function to template context. {pull}32472[32472]
- Checkpoint module: add authentication operation outcome enrichment. {issue}32230[32230] {pull}32431[32431]
- add documentation for decode_xml_wineventlog processor field mappings. {pull}32456[32456]
- httpjson input: Add request tracing logger. {issue}32402[32402] {pull}32412[32412]
- Add cloudflare R2 to provider list in AWS S3 input. {pull}32620[32620]
- Add support for single string containing multiple relation-types in getRFC5988Link. {pull}32811[32811]
- Cloud Foundry input uses server-side filtering when retrieving logs. {pull}33456[33456]
*Metricbeat*
- Azure Billing: upgrade Usage Details API to version 2019-10-01 {pull}31970[31970]
- Azure Billing: switch to Cost Management API for forecast data {pull}32589[32589]
[[release-notes-7.17.7]]
=== Beats version 7.17.7
https://github.com/elastic/beats/compare/v7.17.6\...v7.17.7[View commits]
==== Breaking changes
*Affecting all Beats*
* Upgrade to Go 1.18. Certificates signed with SHA-1 are now rejected. See the Go 1.18 https://tip.golang.org/doc/go1.18#sha1[release notes] for details. {pull}32493[32493]
==== Bugfixes
*Affecting all Beats*
- Fix logging bug where setting `ssl.verification_mode` to `full` or `certificate` caused the `test output` command to incorrectly log that TLS was disabled. {pull}30331[30331]
- Fix Windows service timeouts when the "TCP/IP NetBIOS Helper" service is disabled. {issue}31810[31810] {pull}31835[31835]
*Filebeat*
- cisco/asa: fix handling of user names when there are Security Group Tags present. {issue}32009[32009] {pull}32196[32196]
- Fix `file.path` field in cloudtrail fileset to use `json.digestS3Object`. {pull}32759[32759]
- Fix not parsing as json when `json` and `ndjson` content types have charset information in `aws-s3` input {pull}32767[32767]
- Fix handling of Cisco 302020 messages in ASA and FTD modules. {pull}33089[33089]
- Fix input metrics not being unregistered when an input closes. This led to panics when configuration was reloaded for the aws-s3 and aws-cloudwatch inputs. {pull}33259[33259]
- Fix handling of empty array in httpjson input. {pull}32001[32001]
*Metricbeat*
- Fix GCP storage field naming. {pull}32806[32806]
- In `module/windows/perfmon`, changed collection method of the second counter value required to create a displayable value. {pull}32305[32305]
- Fix and improve AWS metric period calculation to avoid zero-length intervals. {pull}32724[32724]
- Make `system/filesystem` code sensitive to `hostfs` and migrate libraries to `elastic-agent-opts`. {pull}31001[31001]
*Winlogbeat*
- Fix fatal invalid memory write on Windows 11. {issue}32469[32469] {pull}32519[32519]
- Fix handling of event formatting when no metadata is available on Windows 11. {issue}32468[32468] {pull}32519[32519]
- Reduce severity of message salvage failure logging. {pull}32697[32697]
[[release-notes-7.17.6]]
=== Beats version 7.17.6
https://github.com/elastic/beats/compare/v7.17.5\...v7.17.6[View commits]
==== Breaking changes
==== Bugfixes
*Affecting all Beats*
- Fix OS name reported by add_host_metadata on Windows 11. {issue}30833[30833] {pull}32259[32259]
- Fix race condition when reloading runners. {pull}32309[32309]
- Fix race condition when stopping runners. {pull}32433[32433]
*Auditbeat*
- auditd module: Fix parsing of audit rules where arguments are quoted (like file paths containing spaces). {pull}32421[32421]
- auditd module: Fix minimum AuditStatus length so that library can support kernels from 2.6.32. {pull}32421[32421]
- system/socket: Reduce memory usage of the dataset. {issue}32191[32191] {pull}32192[32192]
- libbeat/processors/add_process_metadata: Fix memory leak in process cache. {issue}24890[24890] {pull}29717[29717]
*Filebeat*
- Fix threatintel module where MISP was paginating forever. {pull}31784[31784]
- Fix handling and mapping of syslog priority, facility and severity values in Cisco module. {pull}32025[32025]
- Fix http_endpoint input TLS handshake failures. {pull}32105[32105]
- Fix wrong state ID in states registry for AWS S3 direct input. {pull}32164[32164]
- Fix Cisco AMP rate limit and pagination. {pull}32030[32030]
- Fix race conditions when reloading filestream input. {pull}32309[32309]
- Fix handling of Checkpoint event for R81. {issue}32380[32380] {pull}32458[32458]
- Fix MISP documentation for `var.filters` config option. {pull}31434[31434]
- Do not emit error log when filestream reader reaches EOF and `close.reader.on_eof` is enabled. {pull}31109[31109]
- Fix Cisco AMP rate limit and pagination. {pull}32030[32030]
- Fix using log_group_name_prefix in aws-cloudwatch input. {pull}29695[29695]
- Fix wrong state ID in states registry for awss3 s3 direct input. {pull}32164[32164]
- gcp-pubsub input: Restart Pub/Sub client on all errors. {issue}32550[32550] {pull}32712[32712]
- Fix handling of stale log message handling in the winlog input {issue}32168[32168] {pull}32176[32176]
*Metricbeat*
- Fix ARN parsing for Cloudwatch resource names with leading slashes. {pull}32445[32445]
- Add missing metrics in AWS Transit Gateway module. {pull}32617[32617]
- Replace internal expiring cache used by the Kubernetes module with in-memory dictionary. {pull}32539[32539]
*Winlogbeat*
- Fix handling of stale log message handling {issue}32168[32168] {pull}32176[32176]
==== Added
*Filebeat*
- Optimize grok patterns in system.auth module pipeline. {pull}32360[32360]
[[release-notes-7.17.5]]
=== Beats version 7.17.5
https://github.com/elastic/beats/compare/v7.17.4\...v7.17.5[View commits]
==== Bugfixes
*Filebeat*
- sophos.xg: Update module to handle new log fields. {issue}31038[31038] {pull}31388[31388]
- Fix last write pagination commit checkpoint on `aws-s3` input for s3 direct polling when using the same bucket and different list prefixes. {pull}31776[31776]
*Heartbeat*
- Fix unintentional use of no-op logger. {pull}31543[31543]
*Metricbeat*
- Fix kubernetes module's internal cache expiration issue. This avoid metrics like `kubernetes.container.cpu.usage.limit.pct` from not being populated. {pull}31785[31785]
- Add missing HealthyHostCount and UnHealthyHostCount for application ELB. {pull}31853[31853]
- Fix issue with certain V1 cgroup events not reporting root IDs {pull}https://github.com/elastic/beats/pull/31959{pull}
*Winlogbeat*
- Fix winlogbeat.registry_flush being ignored. {issue}31666[31666] {pull}31669[31669]
==== Added
*Affecting all Beats*
- Update to Go 1.17.10 {issue}31636[31636]
[[release-notes-7.17.4]]
=== Beats version 7.17.4
https://github.com/elastic/beats/compare/v7.17.3\...v7.17.4[View commits]
==== Bugfixes
*Affecting all Beats*
- Fix group write permissions on runtime directories. {pull}30869[30869]
- Store syslog version as string. {pull}31446[31446]
- Accept XML that declares non-UTF-8 encoding to allow decode_xml and decode_xml_wineventlog decoding of incorrectly annotated documents. {issue}31395[31395] {pull}31546[31546]
*Filebeat*
- m365_defender: Fix processing when alerts.entities is an empty list. {issue}31223[31223] {pull}31227[31227]
- Prevent filestream from rereading whole files if they are rotated using rename. {pull}31268[31268]
- google_workspace: Fix pagination to prevent skipped events when more than one page is present. {pull}31372[31372]
- cisco: Fix umbrella dns logs populating destination.ip instead of source.nat.ip. {pull}31454[31454]
*Packetbeat*
- Use /proc/<pid>/comm for linux process names where possible. {pull}31527[31527]
- Move "protocol" term from event.category to event.type in SIP events. {pull}31599[31599]
*Winlogbeat*
- Fix evtx parsing failures. {issue}30621[30621] {pull}30942[30942]
- Fix resource handle leak during event log enrichment. {pull}31504[31504]
==== Added
*Affecting all Beats*
- Update to Go 1.17.9 {issue}31350[31350]
*Filebeat*
- Add `storage_account_container` configuration option to Azure logs. {pull}31279[31279]
- Sanitize the Azure storage account container names with underscores (_). {pull}31384[31384]
*Winlogbeat*
- Retry EvtSubscribe from start if fails with strict mode. {issue}29793[29793] {pull}30155[30155]
[[release-notes-7.17.3]]
=== Beats version 7.17.3
https://github.com/elastic/beats/compare/v7.17.2\...v7.17.3[View commits]
==== Bugfixes
*Affecting all Beats*
- Fix AWS config initialization issue when using a role {issue}30999[30999] {pull}31014[31014]
*Filebeat*
- Prevent logic race on clearing data during request in httpjson. {pull}30730[30730]
- Fixes data duplication on restart when filestream inputs did not have an ID set. {issue}30061[30061]
- Prevents filestream inputs from being stuck while being created. {pull}31240[31240]
- Fix Azure signinlogs authentication_requirement_policies field type and several missing fields. {pull}31062[31062]
- Cyberark PAS: Fix error ingesting events with a single entry in the CAProperties field. {pull}31094[31094]
- Fix Azure activitylogs identity field type and several missing fields. {pull}31170[31170]
- checkpoint: Fix ingest error when a message contains trailing spaces {pull}31197[31197]
[[release-notes-7.17.2]]
=== Beats version 7.17.2
https://github.com/elastic/beats/compare/v7.17.1\...v7.17.2[View commits]
==== Bugfixes
*Affecting all Beats*
- Log errors when parsing and applying config blocks and if the input is disabled. {pull}30534[30534]
- Ensure that the Reloadable part of beats are initialized before the Manager is started. {issue}30533[30533]
- Fixes Beats crashing when glibc >= 2.35 is used {issue}30576[30576]
- Fix dissect trim panics from DELETE (127)(\u007f) character {issue}30657[30657] {pull}30658[30658]
*Auditbeat*
- Fix handling of execve call events which have no argument. {issue}30585[30585] {pull}30586[30586]
*Filebeat*
- auditd: Prevent mapping explosion when truncated EXECVE records are ingested. {pull}30382[30382]
- elasticsearch: fix duplicate ingest when using a common appender configuration {issue}30428[30428] {pull}30440[30440]
- Fix ECS version string in threatintel to be consistent with other modules and add event.timezone. {issue}30499[30499] {pull}30570[30570]
- Add default paths value to MySQL Enterprise module to prevent issues with pipeline installations {pull}30598[30598]
- Report the starting offset of the line in `log.offset` when using `filestream` instead of the end to be ECS compliant. {pull}30445[30445]
- Update documentation for accessing `last_response.url.params` in httpjson input. {pull}30739[30739]
- Fix add_kubernetes_metadata matcher: support rotated logs when `resource_type: pod` {pull}30720[30720]
- Allow fixing data duplication on restart when filestream inputs did not have an ID set. Setting an ID for filestream
*Metricbeat*
- Enhance metricbeat on openshift documentation {pull}30054[30054]
- Fix Docker module: rename fields on dashboards. {pull}30500[30500]
- Add back missing metrics to system/linux. {pull}30774[30774]
- GCP metrics query instances with aggregatedList API to improve efficiency. {pull}30154[#30153]
- Fix delay in perfmon counters collection {issue}30686[30686] {pull}30861[#30861]
- Fix overflow in `iostat` metrics {pull}30679[30679]
==== Added
*Heartbeat*
- Generate summary documents for journeys which exit successfully, but do not emit `journey/end` events {pull}30825[30825]
*Metricbeat*
- Add `kubernetes.container.status.last.reason` metric {pull}30306[30306]
[[release-notes-7.17.1]]
=== Beats version 7.17.1
https://github.com/elastic/beats/compare/v7.17.0\...v7.17.1[View commits]
==== Bugfixes
*Affecting all Beats*
- Fix mixup of TLS validation on multiple hosts configuration {pull}30305[30305]
- Fix field names with `add_network_direction` processor. {issue}29747[29747] {pull}29751[29751]
- Fix a logging bug when `ssl.verification_mode` was set to `full` or `certificate`, the command `test output` incorrectly logged that TLS was disabled.
- Fix the ability for subcommands to be ran properly from the beats containers. {pull}30452[30452]
- Update docker/distribution dependency library to fix a security issues concerning OCI Manifest Type Confusion Issue. {pull}30462[30462]
*Filebeat*
- Fix broken Kafka input {issue}29746[29746] {pull}30277[30277]
- cisco module: Fix change the broke ASA and FTD configs that used `var.input: syslog`. {pull}30072[30072]
- aws-s3: fix race condition in states used by s3-poller. {issue}30123[30123] {pull}30131[30131]
- tcp/unix input: Stop accepting connections after socket is closed. {pull}29712[29712]
- Fix using log_group_name_prefix in aws-cloudwatch input. {pull}29695[29695]
- Fix multiple instances of the same module configured within `filebeat.modules` in filebeat.yml. {issue}29649[29649] {pull}29952[29952]
*Heartbeat*
- Add fonts to support more different types of characters for multiple languages. {pull}29861[29861]
- Fix missing mapping for `service.name`. {pull}30324[30324]
*Metricbeat*
- Fixed missing ZooKeeper metrics due compatibility issues with versions >= 3.6.0 {pull}30068[30068]
*Winlogbeat*
- Fix run loop when reading from evtx file {pull}30006[30006]
==== Added
*Filebeat*
- Add support for '/var/log/pods/' path for add_kubernetes_metadata processor with `resource_type: pod`. {pull}28868[28868]
- Add documentation for add_kubernetes_metadata processors `log_path` matcher. {pull}28868[28868]
[[release-notes-7.17.0]]
=== Beats version 7.17.0
https://github.com/elastic/beats/compare/v7.16.3\...v7.17.0[View commits]
==== Breaking changes
*Affecting all Beats*
- Change Docker base image from CentOS 7 to Ubuntu 20.04 {pull}29681[29681]
==== Bugfixes
*Affecting all Beats*
- Enrich kubernetes metadata with node annotations. {pull}29605[29605]
*Auditbeat*
- system/socket: Fix startup errors on newer 5.x kernels due to missing _do_fork function. {issue}29607[29607] {pull}29744[29744]
- system/package: Fix parsing of Installed-Size field of DEB packages. {issue}16661[16661] {pull}17188[17188]
- system module: Fix panic during initialisation when /proc/stat can't be read. {pull}17569[17569]
- system/package: Fix an error that can occur while trying to persist package metadata. {issue}18536[18536] {pull}18887[18887]
- system/socket: Fix bugs leading to wrong process being attributed to flows. {pull}29166[29166] {issue}17165[17165]
- system/socket: Fix process name and arg truncation for long names, paths and args lists. {issue}24667[24667] {pull}29410[29410]
*Filebeat*
- aws-s3: Stop trying to increase SQS message visibility after ReceiptHandleIsInvalid errors. {pull}29480[29480]
- Fix handling of IPv6 addresses in netflow flow events. {issue}19210[19210] {pull}29383[29383]
- Fix `sophos` KV splitting and syslog header handling {issue}24237[24237] {pull}29331[29331]
- Undo deletion of endpoint config from cloudtrail fileset in {pull}29415[29415]. {pull}29450[29450]
- Make Cisco ASA and FTD modules conform to the ECS definition for event.outcome and event.type. {issue}29581[29581] {pull}29698[29698]
- ibmmq: Fixed `@timestamp` not being populated with correct values. {pull}29773[29773]
- aws-s3: Improve gzip detection to avoid false negatives. {issue}29968[29968]
- decode_cef: Fix panic when recovering from invalid CEF extensions that contain escape characters. {issue}30010[30010]
*Heartbeat*
- Fix race condition in http monitors using `mode:all` that can cause crashes. {pull}29697[pull]
- Fix broken ICMP availability check that prevented heartbeat from starting in rare cases. {pull}29413[pull]
- Fix broken macOS ICMP python e2e test. {pull}29900[29900]
- Only add monitor.status to browser events when summary. {pull}29460[29460]
- Also add summary to journeys for which the synthetics runner crashes. {pull}29606[29606]
- Update size of ICMP packets to adhere to standard min size. {pull}29948[29948]
*Metricbeat*
- Use xpack.enabled on SM modules to write into .monitoring indices when using Metricbeat standalone {pull}28365[28365]
- Fix in rename processor to ingest metrics for `write.iops` to proper field instead of `write_iops` in rds metricset. {pull}28960[28960]
- Enhance filter check in kubernetes event metricset. {pull}29470[29470]
- Fix gcp metrics metricset apply aligner to all metric_types {pull}29514[29513]
- Fixed GCP GKE Overview dashboard {pull}29913[29913]
- Remove overriding of index pattern on the Kubernetes overview dashboard. {pull}29676[29676]
==== Added
*Affecting all Beats*
- SASL/SCRAM in the Kafka output is no longer beta. {pull}29126[29126]
- Add job.name in pods controlled by Jobs {pull}28954[28954]
- `add_process_metadata` processor: add `process.parent.pid` to reflect `process.ppid`. {issue}30070[30070] {pull}30077[30077]
*Heartbeat*
- More errors are now visible in ES with new logic failing monitors later to ease debugging. {pull}29413[pull]
*Winlogbeat*
- Add support for custom XML queries {issue}1054[1054] {pull}29330[29330]
==== Deprecated
==== Known Issue
[[release-notes-7.16.3]]
=== Beats version 7.16.3
https://github.com/elastic/beats/compare/v7.16.2\...v7.16.3[View commits]
==== Bugfixes
*Affecting all Beats*
- Fields of type `match_only_text` (i.e. `message`) and `wildcard` were missing from the template's `default_field` list. {issue}29633[29633] {pull}29634[29634]
[[release-notes-7.16.2]]
=== Beats version 7.16.2
https://github.com/elastic/beats/compare/v7.16.1\...v7.16.2[View commits]
==== Bugfixes
*Filebeat*
- Resolve issue with @timestamp for `defender_atp`. {pull}28272[28272]
- Fix handling of escaped newlines in the `decode_cef` processor. {issue}16995[16995] {pull}29268[29268]
==== Added
*Filebeat*
- Update Cisco module to enable TCP input. {issue}26118[26118] {issue}28821[28821] {pull}26159[26159]
*Winlogbeat*
- Add configuration option for registry file flush timeout {issue}29001[29001] {pull}29053[29053]
[[release-notes-7.16.1]]
=== Beats version 7.16.1
https://github.com/elastic/beats/compare/v7.16.0\...v7.16.1[View commits]
==== Bugfixes
*Affecting all Beats*
- Overwrite index name in index template correctly. {issue}28571[28571] {pull}29299[29299]
==== Added
*Filebeat*
- Add elapsed time information to `aws-s3` input errors and log messages. {pull}29328[29328]
[[release-notes-7.16.0]]
=== Beats version 7.16.0
https://github.com/elastic/beats/compare/v7.15.2\...v7.16.0[View commits]
==== Breaking changes
*Affecting all Beats*
- Load index templates v2 (composable index templates) by default when talking to ES 7.16 or ES 8.x. Please note that you cannot load templates into Elasticsearch 7.8 or older with this default. To load templates to these ES version, set `setup.template.type` to `legacy`. {pull}28538[28538]
- Previously, RE2 and thus Golang had a bug where `(|a)*` matched more characters than `(|a)+`. To stay consistent with PCRE, the bug was fixed. Configurations that rely on the old, buggy behaviour need to be adjusted. See more about the Golang bug: https://github.com/golang/go/issues/46123 {pull}27543[27543]
- Remove Journalbeat. Use `journald` input of Filebeat instead. {pull}29131[29131]
*Heartbeat*
- Change behavior in case of duplicate monitor IDs in configs to be last monitor wins. {pull}29041[29041]
*Metricbeat*
- Align fields to Beats naming conventions in GCP module. {issue}27231[27231] {pull}27974[27974]
*Functionbeat*
- Support for Google Cloud Functions has been removed, as it has been in Beta for a long time and broken for a few releases. Please use other tools provided by Elastic to fetch data from GCP (e.g. Filebeat).
==== Bugfixes
*Affecting all Beats*
- Fix discovery of Nomad allocations with multiple events during startup. {pull}28700[28700]
- Fix the wrong beat name on monitoring and state endpoint. {issue}27755[27755]
- Skip configuration checks in autodiscover for configurations that are already running. {pull}29048[29048]
- Fix `decode_json_processor` to always respect `add_error_key`. {pull}29107[29107]
- Fix `add_labels` flattening of array values. {pull}29211[29211]
- Skip `add_kubernetes_metadata` processor when Kubernetes metadata are already present {pull}27689[27689]
*Auditbeat*
- Fix handling of root and relative paths. {issue}24430[24430] {pull}28354[28354]
- Fix handling of long file names on Windows. {issue}25334[25334] {pull}28517[28517]
- System/socket dataset: Fix uninstallation of return kprobes. {issue}28608[28608] {pull}28609[28609]
- Fix Auditbeat tracing struct decoding. {pull}28580[28580]
*Filebeat*
- Update indentation for Azure Filebeat configuration. {pull}26604[26604]
- Tolerate faults when Windows Event Log session is interrupted. {issue}27947[27947] {pull}28191[28191]
- Add support for username in Cisco ASA security negotiation logs. {pull}26975[26975]
- Relax time parsing and capture group and session type in Cisco ASA module. {issue}24710[24710] {pull}28325[28325]
- Correctly track bytes read when `max_bytes` is exceeded. {issue}28317[28317] {pull}28352[28352]
- Fix parsing of apache log levels including numbers. {pull}28717[28717]
- Upgrade `azure-eventhub` SDK reference, contains potential checkpoint fixes. {pull}28919[28919]
- Revert usageDetails api version to 2019-01-01. {pull}28995[28995]
- Fix in `aws-s3` input regarding provider discovery through endpoint. {pull}28963[28963]
- Fix `threatintel.misp` filters configuration. {issue}27970[27970]
- Fix opening files on Windows in filestream so open files can be deleted. {issue}29113[29113] {pull}29180[29180]
- Fix `panw` module ingest errors for GLOBALPROTECT logs {pull}29154[29154]
*Heartbeat*
- Fix broken seccomp filtering and improve security via `setcap` and `setuid` when running as root on Linux in containers. {pull}27878[27878]
- Log browser `zip_url` download failures as `warn` instead of as `info`. {pull}28440[28440]
- Properly locate base stream in Fleet configs. {pull}28455[28455]
- Stop logging params values. {pull}28774[28774]
- Remove accidentally included `cups` library in Docker images. {pull}28853[28853]
- Fix broken monitors with newer versions of image relying on `dup3`. {pull}28938[28938]
*Metricbeat*
- `beat` module respects `basepath` config option. {pull}28162[28162]
- Fix list_docker.go {pull}28374[28374]
- Fix RDS metadata in Cloudwatch metricset. {pull}29106[29106]
- Errors should be thrown as errors. Metricsets inside Metricbeat will now throw errors as the `error` log level. {pull}27804[27804]
*Winlogbeat*
- Tolerate faults when Windows Event Log session is interrupted. {issue}27947[27947] {pull}28191[28191]
- Add ECS 1.9 new users fields. {pull}26509[26509]
- Don't split hyphenated tokens. {pull}28483[28483]
- Correctly handle AccessMask if it is an integer or list of masks. {pull}29016[29016]
==== Added
*Affecting all Beats*
- Allow non-padded base64 data to be decoded by `decode_base64_field`. {pull}27311[27311], {issue}27021[27021]
- The Kafka support library Sarama has been updated to 1.29.1. {pull}27717[27717]
- Kafka is now supported up to version 2.8.0. {pull}27720[27720]
- Add Huawei Cloud provider to `add_cloud_metadata`. {pull}27607[27607]
- Add default seccomp policy for linux arm64. {pull}27955[27955]
- Add cluster level `add_kubernetes_metadata` support for centralized enrichment. {pull}24621[24621]
- Update cloud.google.com/go library. {pull}28229[28229]
- Add additional metadata to the root HTTP endpoint. {pull}28265[28265]
- Upgrade k8s.io/client-go library. {pull}28228[28228]
- Update ECS to 1.12.0. {pull}27770[27770]
- Fields mapped as `match_only_text` will automatically fallback to a `text` mapping when using Elasticsearch versions that do not support `match_only_text`. {pull}27770[27770]
- Do not load ML jobs to Elasticsearch 8.x from new Beats 7.x releases. {pull}27771[27771]
- Update kubernetes scheduler and controllermanager endpoints in elastic-agent-standalone-kubernetes.yaml with secure ports. {pull}28675[28675]
- Add default seccomp policy for Linux arm64. {pull}27955[27955]
- Add `http.pprof.enabled` option to libbeat to allow http/pprof endpoints on the socket that libbeat creates for metrics. {issue}21965[21965]
- Enable IMDSv2 support for `add_cloud_metadata` processor on AWS. {issue}22101[22101] {pull}28285[28285]
*Filebeat*
- Add `timezone` config option to the `decode_cef` processor. {issue}27232[27232] {pull}27727[27727]
- Add `timezone` config option to the `syslog` input. {pull}27727[27727]
- Add support for parsing syslog dates containing a leading 0 (e.g. `Sep 01`) rather than a space. {pull}27775[27775]
- Add base64 Encode functionality to `httpjson` input. {pull}27681[27681]
- Add `join` and `sprintf` functions to `httpjson` input. {pull}27735[27735]
- Improve memory usage of line reader of `log` and `filestream` input. {pull}27782[27782]
- Add `ignore_empty_value` flag to `httpjson` `split` processor. {pull}27880[27880]
- Add support for passing a prefix on S3 bucket list mode for AWS-S3 input. {pull}28252[28252] {issue}27965[27965]
- Update Cisco ASA/FTD ingest pipeline grok/dissect patterns for multiple message IDs. {issue}26869[26869] {pull}26879[26879]
- Add write access to `url.value` from `request.transforms` in `httpjson` input. {pull}27937[27937]
- Add Base64 encoded HMAC and UUID template functions to `httpjson` input {pull}27873[27873]
- Release checkpoint module as GA. {pull}27814[27814]
- Make aws-cloudwatch input GA. {pull}28161[28161]
- Move processing to ingest node for AWS vpcflow fileset. {pull}28168[28168]
- Release zoom module as GA. {pull}28106[28106]
- Add support for secondary object attribute handling in ThreatIntel MISP module. {pull}28124[28124]
- Azure signinlogs - Add support for ManagedIdentitySignInLogs, NonInteractiveUserSignInLogs, and ServicePrincipalSignInLogs. {issue}23653[23653]
- Add `base64Decode` and `base64DecodeNoPad` functions to `httpsjon` templates. {pull}28385[28385]
- Add `early_limit` config option for rate-limiting `httpjson`. Default rate-limiting for Okta will start when remaining is `1`. {pull}28513[28513]
- Add latency config option for `aws-cloudwatch` input. {pull}28509[28509]
- Add proxy support to `threatintel/malwarebazaar`. {pull}28533[28533]
- Sophos UTM: Support logs containing hostname in Syslog header. {pull}28638[28638]
- Move Oracle Filebeat module to GA. {pull}28754[28754]
- Add support in `aws-s3` input for S3 notification from SNS to SQS. {pull}28800[28800]
- Add support in `aws-s3` input for custom script parsing of S3 notifications. {pull}28946[28946]
- Improve error handling in `aws-s3` input for malformed S3 notifications. {issue}28828[28828] {pull}28946[28946]
- `filestream` and `log` inputs accept null (`\u0000`) as line terminator. {pull}28998[28998]
*Heartbeat*
- Support JSON expressions / validation of JSON arrays. {pull}28073[28073]
- Experimental `run once` mode. {pull}25972[25972]
- Add `keyword` multi-field mapping for `synthetics.step.name`. {pull}28452[28452]
*Metricbeat*
- Enable `journald` input type in Filebeat. {issue}7955[7955] {pull}27351[27351]
- Add a new beta `enterprisesearch` module for Elastic Enterprise Search. {pull}27549[27549]
- Register additional name for `storage` metricset in the azure module. {pull}28447[28447]
- Update reference to gosigar pacakge for filesystem windows fix. {pull}28909[28909]
- Override `Host()` on statsd MetricSet. {pull}29103[29103]
- Add Linux pressure metricset. {pull}27355[27355]
- Add User-Agent header to HTTP requests. {issue}18160[18160] {pull}27509[27509]
*Functionbeat*
- Add support for AWS Kinesis record deaggregation. {pull}28241[28241]
*Winlogbeat*
- Add support for event language selection from config file. {pull}19818[19818]
==== Deprecated
*Affecting all Beats*
- Deprecate `setup.template.type`. In the future Beats will load data streams instead of regular indices.
*Filebeat*
- Deprecate `log` input in favour of `filestream` input. {pull}28623[28623]
[[release-notes-7.15.2]]
=== Beats version 7.15.2
https://github.com/elastic/beats/compare/v7.15.1\...v7.15.2[View commits]
==== Bugfixes
*Affecting all Beats*
- Beats dashboards use custom index when `setup.dashboards.index` is set. {issue}21232[21232] {pull}27901[27901]
- Fix handling of float data types within processors. {issue}28279[28279] {pull}28280[28280]
- Allow `clone3` syscall in seccomp filters. {pull}28117[28117]
- Remove unnecessary escaping step in dashboard loading, so they can be displayed in Kibana. {pull}28395[28395]