-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/7.17' into v1v-patch-1
* upstream/7.17: (30 commits) [7.17](backport #29966) Add the Elastic product origin header when talking to Elasticsearch or Kibana. (#30000) [Heartbeat] Change size of data on ICMP packet (#29948) (#29978) Add clarification about enableing dashboard loading (#29985) (#29989) Improve aws-s3 gzip file detection to avoid false negatives (#29969) (#29974) ci: docker login step for pulling then pushing (#29960) (#29963) x-pack/auditbeat/module/system/socket: get full length path and arg from /proc when not available from kprobe (#29410) (#29958) [Automation] Update elastic stack version to 7.17.0-ab4975a2 for testing (#29956) [Automation] Update elastic stack version to 7.17.0-1bd58b32 for testing (#29938) [7.17](backport #29913) [Metricbeat] gcp.gke: fix overview dashboard (#29914) [7.17](backport #29605) Fix annotation enrichment (#29834) [Automation] Update elastic stack version to 7.17.0-e1efbe3a for testing (#29922) [Automation] Update elastic stack version to 7.17.0-68da5d12 for testing (#29904) [7.17][Heartbeat] Defer monitor / ICMP errors to monitor runtime / ES (backport #29413) (#29896) Merge pull request from GHSA-rj4h-hqvq-cc6q [7.17](backport #29681) Change docker image from CentOS 7 to Ubuntu 20.04 (#29817) Fix YAML indentation in `parsers` examples (#29663) (#29894) [Automation] Update elastic stack version to 7.17.0-079761a0 for testing (#29864) Fix Filebeat dissect processor field tokenization in documentation (#29680) (#29883) Enable require_alias for Bulk requests for all actions when target is a write alias (#29879) Update Index template loading guide to use the correct endpoint (#29869) (#29877) ...
- Loading branch information
Showing
90 changed files
with
1,925 additions
and
592 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: auditbeat | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- '.github/workflows/macos-auditbeat.yml' | ||
push: | ||
branches: | ||
- master | ||
- 7.1* | ||
- 8.* | ||
|
||
env: | ||
BEAT_MODULE: 'auditbeat' | ||
|
||
jobs: | ||
macos: | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Fetch Go version from .go-version | ||
run: echo "GO_VERSION=$(cat .go-version)" >> $GITHUB_ENV | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
- name: Install dependencies | ||
run: go get -u github.com/magefile/mage | ||
- name: Run build | ||
run: cd ${{ env.BEAT_MODULE }} && mage build | ||
- name: Run test | ||
run: cd ${{ env.BEAT_MODULE }} && mage unitTest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: filebeat | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- '.github/workflows/macos-filebeat.yml' | ||
push: | ||
branches: | ||
- master | ||
- 7.1* | ||
- 8.* | ||
|
||
env: | ||
BEAT_MODULE: 'filebeat' | ||
|
||
jobs: | ||
macos: | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Fetch Go version from .go-version | ||
run: echo "GO_VERSION=$(cat .go-version)" >> $GITHUB_ENV | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
- name: Install dependencies | ||
run: go get -u github.com/magefile/mage | ||
- name: Run build | ||
run: cd ${{ env.BEAT_MODULE }} && mage build | ||
- name: Run test | ||
run: cd ${{ env.BEAT_MODULE }} && mage unitTest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: heartbeat | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- '.github/workflows/macos-heartbeat.yml' | ||
push: | ||
branches: | ||
- master | ||
- 7.1* | ||
- 8.* | ||
|
||
env: | ||
BEAT_MODULE: 'heartbeat' | ||
|
||
jobs: | ||
macos: | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Fetch Go version from .go-version | ||
run: echo "GO_VERSION=$(cat .go-version)" >> $GITHUB_ENV | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
- name: Install dependencies | ||
run: go get -u github.com/magefile/mage | ||
- name: Run build | ||
run: cd ${{ env.BEAT_MODULE }} && mage build | ||
- name: Run test | ||
run: cd ${{ env.BEAT_MODULE }} && mage unitTest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: metricbeat | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- '.github/workflows/macos-metricbeat.yml' | ||
push: | ||
branches: | ||
- master | ||
- 7.1* | ||
- 8.* | ||
|
||
env: | ||
BEAT_MODULE: 'metricbeat' | ||
|
||
jobs: | ||
macos: | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Fetch Go version from .go-version | ||
run: echo "GO_VERSION=$(cat .go-version)" >> $GITHUB_ENV | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
- name: Install dependencies | ||
run: go get -u github.com/magefile/mage | ||
- name: Run build | ||
run: cd ${{ env.BEAT_MODULE }} && mage build | ||
- name: Run test | ||
run: cd ${{ env.BEAT_MODULE }} && echo "See https://github.com/elastic/beats/issues/29038" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: packetbeat | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- '.github/workflows/macos-packetbeat.yml' | ||
push: | ||
branches: | ||
- master | ||
- 7.1* | ||
- 8.* | ||
|
||
env: | ||
BEAT_MODULE: 'packetbeat' | ||
|
||
jobs: | ||
macos: | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Fetch Go version from .go-version | ||
run: echo "GO_VERSION=$(cat .go-version)" >> $GITHUB_ENV | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
- name: Install dependencies | ||
run: go get -u github.com/magefile/mage | ||
- name: Run build | ||
run: cd ${{ env.BEAT_MODULE }} && mage build | ||
- name: Run test | ||
run: cd ${{ env.BEAT_MODULE }} && mage unitTest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: x-pack-auditbeat | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- '.github/workflows/macos-xpack-auditbeat.yml' | ||
push: | ||
branches: | ||
- master | ||
- 7.1* | ||
- 8.* | ||
|
||
env: | ||
BEAT_MODULE: 'x-pack/auditbeat' | ||
|
||
jobs: | ||
macos: | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Fetch Go version from .go-version | ||
run: echo "GO_VERSION=$(cat .go-version)" >> $GITHUB_ENV | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
- name: Install dependencies | ||
run: go get -u github.com/magefile/mage | ||
- name: Run build | ||
run: cd ${{ env.BEAT_MODULE }} && mage build | ||
- name: Run test | ||
run: cd ${{ env.BEAT_MODULE }} && mage unitTest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: x-pack-filebeat | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- '.github/workflows/macos-xpack-filebeat.yml' | ||
push: | ||
branches: | ||
- master | ||
- 7.1* | ||
- 8.* | ||
|
||
env: | ||
BEAT_MODULE: 'x-pack/filebeat' | ||
|
||
jobs: | ||
macos: | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Fetch Go version from .go-version | ||
run: echo "GO_VERSION=$(cat .go-version)" >> $GITHUB_ENV | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
- name: Install dependencies | ||
run: go get -u github.com/magefile/mage | ||
- name: Run build | ||
run: cd ${{ env.BEAT_MODULE }} && mage build | ||
- name: Run test | ||
run: cd ${{ env.BEAT_MODULE }} && mage unitTest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: x-pack-functionbeat | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- '.github/workflows/macos-xpack-functionbeat.yml' | ||
push: | ||
branches: | ||
- master | ||
- 7.1* | ||
- 8.* | ||
|
||
env: | ||
BEAT_MODULE: 'x-pack/functionbeat' | ||
|
||
jobs: | ||
macos: | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Fetch Go version from .go-version | ||
run: echo "GO_VERSION=$(cat .go-version)" >> $GITHUB_ENV | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
- name: Install dependencies | ||
run: go get -u github.com/magefile/mage | ||
- name: Run build | ||
run: cd ${{ env.BEAT_MODULE }} && mage build | ||
- name: Run test | ||
run: cd ${{ env.BEAT_MODULE }} && mage unitTest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: x-pack-heartbeat | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- '.github/workflows/macos-xpack-heartbeat.yml' | ||
push: | ||
branches: | ||
- master | ||
- 7.1* | ||
- 8.* | ||
|
||
env: | ||
BEAT_MODULE: 'x-pack/heartbeat' | ||
|
||
jobs: | ||
macos: | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Fetch Go version from .go-version | ||
run: echo "GO_VERSION=$(cat .go-version)" >> $GITHUB_ENV | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
- name: Install dependencies | ||
run: go get -u github.com/magefile/mage | ||
- name: Run build | ||
run: cd ${{ env.BEAT_MODULE }} && mage build | ||
- name: Run test | ||
run: cd ${{ env.BEAT_MODULE }} && mage unitTest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: x-pack-metricbeat | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- '.github/workflows/macos-xpack-metricbeat.yml' | ||
push: | ||
branches: | ||
- master | ||
- 7.1* | ||
- 8.* | ||
|
||
env: | ||
BEAT_MODULE: 'x-pack/metricbeat' | ||
|
||
jobs: | ||
macos: | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Fetch Go version from .go-version | ||
run: echo "GO_VERSION=$(cat .go-version)" >> $GITHUB_ENV | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
- name: Install dependencies | ||
run: go get -u github.com/magefile/mage | ||
- name: Run build | ||
run: cd ${{ env.BEAT_MODULE }} && mage build | ||
- name: Run test | ||
run: cd ${{ env.BEAT_MODULE }} && mage unitTest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: x-pack-heartbeat | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- '.github/workflows/macos-xpack-osquerybeat.yml' | ||
push: | ||
branches: | ||
- master | ||
- 7.1* | ||
- 8.* | ||
|
||
env: | ||
BEAT_MODULE: 'x-pack/heartbeat' | ||
|
||
jobs: | ||
macos: | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Fetch Go version from .go-version | ||
run: echo "GO_VERSION=$(cat .go-version)" >> $GITHUB_ENV | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
- name: Install dependencies | ||
run: go get -u github.com/magefile/mage | ||
- name: Run build | ||
run: cd ${{ env.BEAT_MODULE }} && mage build | ||
- name: Run test | ||
run: cd ${{ env.BEAT_MODULE }} && mage unitTest |
Oops, something went wrong.