Skip to content

Commit 8a30159

Browse files
authored
Merge branch 'main' into prometheus-input-condition-and-leader-election
2 parents 511cedc + a286f11 commit 8a30159

File tree

1,123 files changed

+28482
-5796
lines changed

Some content is hidden

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

1,123 files changed

+28482
-5796
lines changed

.buildkite/pipeline.schedule-daily.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ steps:
2121
env:
2222
SERVERLESS: "false"
2323
FORCE_CHECK_ALL: "true"
24-
STACK_VERSION: 7.17.28-SNAPSHOT
24+
STACK_VERSION: 7.17.28
2525
depends_on:
2626
- step: "check"
2727
allow_failure: false

.buildkite/scripts/common.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -858,6 +858,12 @@ run_tests_package() {
858858
if ! skip_installation_step "${package}" ; then
859859
echo "--- [${package}] test installation"
860860
if ! install_package "${package}" ; then
861+
if [[ "${package}" == "elastic_connectors" ]]; then
862+
# TODO: Remove this skip once elastic_connectors can be installed again
863+
# For reference: https://github.com/elastic/kibana/pull/211419
864+
echo "[${package}]: Known issue when package is installed - skipped all tests"
865+
return 0
866+
fi
861867
return 1
862868
fi
863869
fi

.buildkite/scripts/test_one_package.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,11 @@ with_kubernetes
3535
use_elastic_package
3636

3737
pushd packages > /dev/null
38+
exit_code=0
3839
if ! process_package "${package}" "${from}" "${to}"; then
3940
echo "[${package}] failed"
40-
exit 1
41+
exit_code=1
4142
fi
4243
popd > /dev/null
44+
45+
exit "${exit_code}"

.github/CODEOWNERS

Lines changed: 1 addition & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -464,26 +464,4 @@
464464
/packages/zscaler_zpa @elastic/security-service-integrations
465465
/packages/cisco_meraki_metrics @elastic/obs-infraobs-integrations
466466
/packages/panw_metrics @elastic/obs-infraobs-integrations
467-
/packages/o365_metrics @elastic/obs-infraobs-integrations @elastic/security-service-integrations
468-
/packages/o365_metrics/data_stream/active_users_services_user_counts @elastic/obs-infraobs-integrations
469-
/packages/o365_metrics/data_stream/groups_activity_group_detail @elastic/security-service-integrations
470-
/packages/o365_metrics/data_stream/onedrive_usage_account_counts @elastic/obs-infraobs-integrations
471-
/packages/o365_metrics/data_stream/onedrive_usage_file_counts @elastic/obs-infraobs-integrations
472-
/packages/o365_metrics/data_stream/onedrive_usage_storage @elastic/obs-infraobs-integrations
473-
/packages/o365_metrics/data_stream/onedrive_usage_account_detail @elastic/security-service-integrations
474-
/packages/o365_metrics/data_stream/outlook_activity @elastic/obs-infraobs-integrations
475-
/packages/o365_metrics/data_stream/outlook_app_usage @elastic/obs-infraobs-integrations
476-
/packages/o365_metrics/data_stream/sharepoint_site_usage_storage @elastic/obs-infraobs-integrations
477-
/packages/o365_metrics/data_stream/sharepoint_site_usage_detail @elastic/obs-infraobs-integrations
478-
/packages/o365_metrics/data_stream/mailbox_usage_detail @elastic/obs-infraobs-integrations
479-
/packages/o365_metrics/data_stream/mailbox_usage_quota_status @elastic/obs-infraobs-integrations
480-
/packages/o365_metrics/data_stream/outlook_app_usage_version_counts @elastic/obs-infraobs-integrations
481-
/packages/o365_metrics/data_stream/teams_device_usage_user_counts @elastic/obs-infraobs-integrations
482-
/packages/o365_metrics/data_stream/teams_user_activity_user_counts @elastic/obs-infraobs-integrations
483-
/packages/o365_metrics/data_stream/teams_user_activity_user_detail @elastic/security-service-integrations
484-
/packages/o365_metrics/data_stream/viva_engage_groups_activity_group_detail @elastic/security-service-integrations
485-
/packages/o365_metrics/data_stream/yammer_device_usage @elastic/obs-infraobs-integrations
486-
/packages/o365_metrics/data_stream/service_health @elastic/obs-infraobs-integrations
487-
/packages/o365_metrics/data_stream/viva_engage_device_usage_user_counts @elastic/obs-infraobs-integrations
488-
/packages/o365_metrics/data_stream/subscriptions @elastic/obs-infraobs-integrations
489-
/packages/o365_metrics/data_stream/teams_call_quality @elastic/obs-infraobs-integrations
467+
/packages/o365_metrics @elastic/obs-infraobs-integrations

.github/workflows/bump-elastic-stack-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- uses: actions/checkout@v4
2626

2727
- name: Install Updatecli in the runner
28-
uses: updatecli/updatecli-action@79983ec58a76fe0c87fc76f5a5c7ef8df0bb36c4 #v2.77.0
28+
uses: updatecli/updatecli-action@d2e5d2667ba67a8599e636531baef731f54858bc #v2.78.1
2929

3030
- name: Select diff action
3131
if: ${{ github.event_name == 'pull_request' }}

.github/workflows/docs-build.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: docs-build
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request_target: ~
8+
merge_group: ~
9+
10+
jobs:
11+
docs-preview:
12+
uses: elastic/docs-builder/.github/workflows/preview-build.yml@main
13+
with:
14+
path-pattern: docs/**
15+
permissions:
16+
deployments: write
17+
id-token: write
18+
contents: read
19+
pull-requests: read

.github/workflows/docs-cleanup.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: docs-cleanup
2+
3+
on:
4+
pull_request_target:
5+
types:
6+
- closed
7+
8+
jobs:
9+
docs-preview:
10+
uses: elastic/docs-builder/.github/workflows/preview-cleanup.yml@main
11+
permissions:
12+
contents: none
13+
id-token: write
14+
deployments: write

.github/workflows/updatecli/updatecli.d/bump-latest-7x-version.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,14 @@ scms:
2727
sources:
2828
latest7xSnapshot:
2929
name: Get latest 7.x snapshot
30-
kind: json
30+
kind: file
3131
spec:
32-
file: https://storage.googleapis.com/artifacts-api/snapshots/7.17.json
33-
key: .version
32+
file: https://storage.googleapis.com/artifacts-api/releases/current/7.17
33+
transformers:
34+
# Get only the version to avoid spaces and newlines.
35+
- findsubmatch:
36+
pattern: '([0-9\.]+)'
37+
captureindex: 1
3438

3539
targets:
3640
update-7x-version:

0 commit comments

Comments
 (0)