Skip to content

Commit db481af

Browse files
Merge remote-tracking branch 'upstream/7.x' into backport_26334_7.x
2 parents 61e258c + f71f0aa commit db481af

File tree

30 files changed

+157
-100
lines changed

30 files changed

+157
-100
lines changed

CHANGELOG-developer.asciidoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -201,3 +201,4 @@ The list below covers the major changes between 6.3.0 and 7.0.0-alpha2 only.
201201
- Allow/Merge fields.yml overrides {pull}9188[9188]
202202
- Filesets can now define multiple ingest pipelines, with the first one considered as the entry point pipeline. {pull}8914[8914]
203203
- Add `group_measurements_by_instance` option to windows perfmon metricset. {pull}8688[8688]
204+
- Bump ECS version to 1.10.0. {issue}25734[25734]

CHANGELOG.next.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -576,7 +576,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d
576576
- Update PanOS module to parse Global Protect & User ID logs. {issue}24722[24722] {issue}24724[24724] {pull}24927[24927]
577577
- Add HMAC signature validation support for http_endpoint input. {pull}24918[24918]
578578
- Add new grok pattern for iptables module for Ubiquiti UDM {issue}25615[25615] {pull}25616[25616]
579-
- Add multiline support to aws-s3 input. {issue}25249[25249] {pull}25710[25710]
579+
- Add multiline support to aws-s3 input. {issue}25249[25249] {pull}25710[25710] {pull}25873[25873]
580580
- Add monitoring metrics to the `aws-s3` input. {pull}25711[25711]
581581
- Added `network.direction` fields to Zeek and Suricata modules using the `add_network_direction` processor {pull}24620[24620]
582582
- Add Content-Type override to aws-s3 input. {issue}25697[25697] {pull}25772[25772]

NOTICE.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6103,11 +6103,11 @@ This Agreement is governed by the laws of the State of New York and the intellec
61036103

61046104
--------------------------------------------------------------------------------
61056105
Dependency : github.com/elastic/ecs
6106-
Version: v1.8.0
6106+
Version: v1.10.0
61076107
Licence type (autodetected): Apache-2.0
61086108
--------------------------------------------------------------------------------
61096109

6110-
Contents of probable licence file $GOMODCACHE/github.com/elastic/ecs@v1.8.0/LICENSE.txt:
6110+
Contents of probable licence file $GOMODCACHE/github.com/elastic/ecs@v1.10.0/LICENSE.txt:
61116111

61126112

61136113
Apache License
@@ -7666,11 +7666,11 @@ Contents of probable licence file $GOMODCACHE/github.com/elastic/go-seccomp-bpf@
76667666

76677667
--------------------------------------------------------------------------------
76687668
Dependency : github.com/elastic/go-structform
7669-
Version: v0.0.8
7669+
Version: v0.0.9
76707670
Licence type (autodetected): Apache-2.0
76717671
--------------------------------------------------------------------------------
76727672

7673-
Contents of probable licence file $GOMODCACHE/github.com/elastic/[email protected].8/LICENSE:
7673+
Contents of probable licence file $GOMODCACHE/github.com/elastic/[email protected].9/LICENSE:
76747674

76757675
Apache License
76767676
Version 2.0, January 2004

auditbeat/include/fields.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev-tools/packaging/templates/docker/Dockerfile.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ ENV NODE_PATH={{ $beatHome }}/.node
4747
RUN echo \
4848
$NODE_PATH \
4949
{{ $beatHome }}/.config \
50-
{{ $beatHome }}/suites \
50+
{{ $beatHome }}/.synthetics \
5151
{{ $beatHome }}/.npm \
5252
{{ $beatHome }}/.cache \
5353
| xargs -IDIR sh -c 'mkdir -p DIR && chmod 0770 DIR'

filebeat/include/fields.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ require (
6060
github.com/dustin/go-humanize v1.0.0
6161
github.com/eapache/go-resiliency v1.2.0
6262
github.com/eclipse/paho.mqtt.golang v1.2.1-0.20200121105743-0d940dd29fd2
63-
github.com/elastic/ecs v1.8.0
63+
github.com/elastic/ecs v1.10.0
6464
github.com/elastic/elastic-agent-client/v7 v7.0.0-20210308165121-7dd05ee2b5a5
6565
github.com/elastic/go-concert v0.1.0
6666
github.com/elastic/go-libaudit/v2 v2.2.0
@@ -69,7 +69,7 @@ require (
6969
github.com/elastic/go-lumber v0.1.0
7070
github.com/elastic/go-perf v0.0.0-20191212140718-9c656876f595
7171
github.com/elastic/go-seccomp-bpf v1.1.0
72-
github.com/elastic/go-structform v0.0.8
72+
github.com/elastic/go-structform v0.0.9
7373
github.com/elastic/go-sysinfo v1.7.0
7474
github.com/elastic/go-txfile v0.0.7
7575
github.com/elastic/go-ucfg v0.8.3

go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -247,8 +247,8 @@ github.com/eclipse/paho.mqtt.golang v1.2.1-0.20200121105743-0d940dd29fd2 h1:DW6W
247247
github.com/eclipse/paho.mqtt.golang v1.2.1-0.20200121105743-0d940dd29fd2/go.mod h1:H9keYFcgq3Qr5OUJm/JZI/i6U7joQ8SYLhZwfeOo6Ts=
248248
github.com/elastic/dhcp v0.0.0-20200227161230-57ec251c7eb3 h1:lnDkqiRFKm0rxdljqrj3lotWinO9+jFmeDXIC4gvIQs=
249249
github.com/elastic/dhcp v0.0.0-20200227161230-57ec251c7eb3/go.mod h1:aPqzac6AYkipvp4hufTyMj5PDIphF3+At8zr7r51xjY=
250-
github.com/elastic/ecs v1.8.0 h1:wa61IDQsQcZyJa6hwbhqGO+631H+kGHhe0J4V7tMPZY=
251-
github.com/elastic/ecs v1.8.0/go.mod h1:pgiLbQsijLOJvFR8OTILLu0Ni/R/foUNg0L+T6mU9b4=
250+
github.com/elastic/ecs v1.10.0 h1:C+0ZidF/eh5DKYAZBir3Hq9Q6aMXcwpgEuQnj4bRzKA=
251+
github.com/elastic/ecs v1.10.0/go.mod h1:pgiLbQsijLOJvFR8OTILLu0Ni/R/foUNg0L+T6mU9b4=
252252
github.com/elastic/elastic-agent-client/v7 v7.0.0-20210308165121-7dd05ee2b5a5 h1:n4VHMzwk4o8+0zTCDej1M6uUR9rkzScpSeZXi0B8y1w=
253253
github.com/elastic/elastic-agent-client/v7 v7.0.0-20210308165121-7dd05ee2b5a5/go.mod h1:uh/Gj9a0XEbYoM4NYz4LvaBVARz3QXLmlNjsrKY9fTc=
254254
github.com/elastic/fsevents v0.0.0-20181029231046-e1d381a4d270 h1:cWPqxlPtir4RoQVCpGSRXmLqjEHpJKbR60rxh1nQZY4=
@@ -269,8 +269,8 @@ github.com/elastic/go-plugins-helpers v0.0.0-20200207104224-bdf17607b79f h1:Fvsq
269269
github.com/elastic/go-plugins-helpers v0.0.0-20200207104224-bdf17607b79f/go.mod h1:OPGqFNdTS34kMReS5hPFtBhD9J8itmSDurs1ix2wx7c=
270270
github.com/elastic/go-seccomp-bpf v1.1.0 h1:jUzzDc6LyCtdolZdvL/26dad6rZ9vsc7xZ2eadKECAU=
271271
github.com/elastic/go-seccomp-bpf v1.1.0/go.mod h1:l+89Vy5BzjVcaX8USZRMOwmwwDScE+vxCFzzvQwN7T8=
272-
github.com/elastic/go-structform v0.0.8 h1:U0qnb9Zqig7w+FhF+sLI3VZPPi/+2aJ0bIEW6R1z6Tk=
273-
github.com/elastic/go-structform v0.0.8/go.mod h1:CZWf9aIRYY5SuKSmOhtXScE5uQiLZNqAFnwKR4OrIM4=
272+
github.com/elastic/go-structform v0.0.9 h1:HpcS7xljL4kSyUfDJ8cXTJC6rU5ChL1wYb6cx3HLD+o=
273+
github.com/elastic/go-structform v0.0.9/go.mod h1:CZWf9aIRYY5SuKSmOhtXScE5uQiLZNqAFnwKR4OrIM4=
274274
github.com/elastic/go-sysinfo v1.1.1/go.mod h1:i1ZYdU10oLNfRzq4vq62BEwD2fH8KaWh6eh0ikPT9F0=
275275
github.com/elastic/go-sysinfo v1.7.0 h1:4vVvcfi255+8+TyQ7TYUTEK3A+G8v5FLE+ZKYL1z1Dg=
276276
github.com/elastic/go-sysinfo v1.7.0/go.mod h1:i1ZYdU10oLNfRzq4vq62BEwD2fH8KaWh6eh0ikPT9F0=

heartbeat/include/fields.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

journalbeat/include/fields.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)