Skip to content

Commit 0a30e72

Browse files
authored
Merge branch 'main' into feat/drop-fleet-agentcfg
2 parents 5de75d5 + 442024f commit 0a30e72

File tree

81 files changed

+1881
-792
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+1881
-792
lines changed

.ci/scripts/download-png-from-kibana.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ JOB_PARAMS=$(echo "
3535
" | tr -d "[:space:]")
3636

3737

38-
png_url_path=$(curl -XPOST -v -L -u "$kibana_user:$kibana_pwd" -H 'kbn-xsrf: true' --data-urlencode "jobParams=${JOB_PARAMS}" $kibana_host/api/reporting/generate/pngV2 | jq -r '.path')
38+
png_url_path=$(curl -L -u "$kibana_user:$kibana_pwd" -H 'kbn-xsrf: true' --data-urlencode "jobParams=${JOB_PARAMS}" $kibana_host/api/reporting/generate/pngV2 | jq -r '.path')
3939

4040
if [[ "$png_url_path" == "null" ]]
4141
then

.ci/updatecli/bump-golang.yml

-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,6 @@ targets:
106106
files:
107107
- go.mod
108108
- cmd/intake-receiver/go.mod
109-
- internal/glog/go.mod
110109
- systemtest/go.mod
111110
- tools/go.mod
112111
matchpattern: 'go \d+.\d+'

.github/workflows/benchmarks.yml

+13-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,16 @@ on:
88
required: false
99
type: boolean
1010
default: false
11+
enableTailSampling:
12+
description: 'Enable tail-based sampling on the APM server'
13+
required: false
14+
type: boolean
15+
default: false
16+
tailSamplingStorageLimit:
17+
description: 'Storage size limit of tail-based sampling on the APM server, defaults to 10GB'
18+
required: false
19+
type: string
20+
default: "10GB"
1121
profile:
1222
description: 'The system profile used to run the benchmarks'
1323
required: false
@@ -52,12 +62,14 @@ jobs:
5262
TF_VAR_private_key: ./id_rsa_terraform
5363
TF_VAR_public_key: ./id_rsa_terraform.pub
5464
TF_VAR_run_standalone: ${{ inputs.runStandalone || github.event.schedule=='0 5 */5 * *' }}
65+
TF_VAR_apm_server_tail_sampling: ${{ inputs.enableTailSampling || 'false' }} # set the default again otherwise schedules won't work
66+
TF_VAR_apm_server_tail_sampling_storage_limit: ${{ inputs.tailSamplingStorageLimit || '10GB' }} # set the default again otherwise schedules won't work
5567
RUN_STANDALONE: ${{ inputs.runStandalone || github.event.schedule=='0 5 */5 * *' }}
5668
TFVARS_SOURCE: ${{ inputs.profile || 'system-profiles/8GBx1zone.tfvars' }} # // Default to use an 8gb profile
5769
TF_VAR_BUILD_ID: ${{ github.run_id }}
5870
TF_VAR_ENVIRONMENT: ci
5971
TF_VAR_REPO: ${{ github.repository }}
60-
GOBENCH_TAGS: branch=${{ github.head_ref || github.ref }},commit=${{ github.sha }},target_branch=${{ github.base_ref }}
72+
GOBENCH_TAGS: branch=${{ github.head_ref || github.ref }},commit=${{ github.sha }},target_branch=${{ github.base_ref }},enable_tail_sampling=${{ inputs.enableTailSampling }}
6173
GOBENCH_PASSWORD: ${{ secrets.GOBENCH_PASSWORD }}
6274
GOBENCH_USERNAME: ${{ secrets.GOBENCH_USERNAME }}
6375
GOBENCH_HOST: ${{ secrets.GOBENCH_HOST }}

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ jobs:
123123
- uses: actions/checkout@v4
124124
- name: Get changed files
125125
id: changed-files
126-
uses: tj-actions/changed-files@bab30c2299617f6615ec02a68b9a40d10bd21366 # v45.0.5
126+
uses: tj-actions/changed-files@d6e91a2266cdb9d62096cebf1e8546899c6aa18f # v45.0.6
127127
with:
128128
files: .go-version
129129

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: mergify backport labels copier
2+
3+
on:
4+
pull_request:
5+
types:
6+
- opened
7+
8+
permissions:
9+
contents: read
10+
11+
jobs:
12+
mergify-backport-labels-copier:
13+
runs-on: ubuntu-latest
14+
if: startsWith(github.head_ref, 'mergify/bp/')
15+
permissions:
16+
# Add GH labels
17+
pull-requests: write
18+
# See https://github.com/cli/cli/issues/6274
19+
repository-projects: read
20+
steps:
21+
- uses: elastic/oblt-actions/mergify/labels-copier@v1
22+
with:
23+
excluded-labels-regex: "^backport-*"

CHANGELOG.asciidoc

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
// tag::list[]
2+
* <<apm-release-notes-8.17>>
23
* <<apm-release-notes-8.16>>
34
* <<apm-release-notes-8.15>>
45
* <<apm-release-notes-8.14>>
@@ -20,6 +21,7 @@
2021
2122
// tag::includes[]
2223
include::./changelogs/head.asciidoc[]
24+
include::./changelogs/8.17.asciidoc[]
2325
include::./changelogs/8.16.asciidoc[]
2426
include::./changelogs/8.15.asciidoc[]
2527
include::./changelogs/8.14.asciidoc[]

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ BEATS_VERSION?=main
180180
BEATS_MODULE:=github.com/elastic/beats/v7
181181

182182
.PHONY: update-beats
183-
update-beats: update-beats-module update
183+
update-beats: update-beats-module tidy notice
184184
@echo --- Use this commit message: Update to elastic/beats@$(shell go list -m -f {{.Version}} $(BEATS_MODULE) | cut -d- -f3)
185185

186186
.PHONY: update-beats-module

0 commit comments

Comments
 (0)