Skip to content

Commit 0dae4ea

Browse files
authored
Merge branch 'main' into fix-527
2 parents fcc7601 + 6c447ac commit 0dae4ea

File tree

1,262 files changed

+73178
-27510
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,262 files changed

+73178
-27510
lines changed

.buildkite/pipeline.schedule-daily.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ steps:
3434
env:
3535
SERVERLESS: "false"
3636
FORCE_CHECK_ALL: "true"
37-
STACK_VERSION: 8.19.4-SNAPSHOT
37+
STACK_VERSION: 8.19.5-SNAPSHOT
3838
PUBLISH_COVERAGE_REPORTS: "true"
3939
depends_on:
4040
- step: "check"
@@ -48,7 +48,7 @@ steps:
4848
env:
4949
SERVERLESS: "false"
5050
FORCE_CHECK_ALL: "true"
51-
STACK_VERSION: 8.19.4-SNAPSHOT
51+
STACK_VERSION: 8.19.5-SNAPSHOT
5252
STACK_LOGSDB_ENABLED: "true"
5353
PUBLISH_COVERAGE_REPORTS: "false"
5454
depends_on:

.buildkite/pipeline.schedule-weekly.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: 8.19.4-SNAPSHOT
24+
STACK_VERSION: 8.19.5-SNAPSHOT
2525
PUBLISH_COVERAGE_REPORTS: "false"
2626
ELASTIC_PACKAGE_DISABLE_ELASTIC_AGENT_WOLFI: "true"
2727
depends_on:

.buildkite/pipeline.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,24 @@ steps:
5757
image: "${LINUX_AGENT_IMAGE}"
5858
cpu: "8"
5959
memory: "4G"
60+
artifact_paths:
61+
- tests-report.xml
62+
63+
- label: ":junit: Sources Junit annotate"
64+
agents:
65+
# requires at least "bash", "curl" and "git"
66+
image: "docker.elastic.co/ci-agent-images/buildkite-junit-annotate:1.0"
67+
depends_on:
68+
- step: "check"
69+
allow_failure: true
70+
plugins:
71+
- junit-annotate#v2.7.0:
72+
artifacts: "tests-report.xml"
73+
failed-download-exit-code: 0 # Not fail the build in case there are no XML files
74+
report-skipped: true
75+
always-annotate: false
76+
run-in-docker: false
77+
context: junit-sources
6078

6179
- label: "Trigger integrations"
6280
key: "test-integrations"

.buildkite/scripts/check_sources.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,13 @@ set -euo pipefail
77
add_bin_path
88
with_mage
99

10+
echo "--- Run mage check"
1011
mage -v check
1112

13+
echo "--- Check if any files modified"
1214
check_git_diff
1315

16+
echo "--- Run elastic-package links"
1417
run_links_command=false
1518
if less_than=$(mage isElasticPackageDependencyLessThan 0.113.0) ; then
1619
# links command require at least v0.113.0

.buildkite/scripts/common.sh

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -125,14 +125,9 @@ with_mage() {
125125
create_bin_folder
126126
with_go
127127

128-
local install_packages=(
129-
"github.com/magefile/mage"
130-
"github.com/jstemmer/go-junit-report"
131-
"gotest.tools/gotestsum"
132-
)
133-
for pkg in "${install_packages[@]}"; do
134-
go install "${pkg}@latest"
135-
done
128+
# Install version from go.mod"
129+
go install "github.com/magefile/mage"
130+
136131
mage --version
137132
}
138133

.github/CODEOWNERS

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
/packages/activemq @elastic/obs-infraobs-integrations
1515
/packages/admin_by_request_epm @elastic/security-service-integrations
1616
/packages/airflow @elastic/obs-infraobs-integrations
17+
/packages/airlock_digital @elastic/security-service-integrations
1718
/packages/akamai @elastic/security-service-integrations
1819
/packages/amazon_security_lake @elastic/security-service-integrations
1920
/packages/apache @elastic/obs-infraobs-integrations
@@ -190,6 +191,7 @@
190191
/packages/cyberark_pta @elastic/security-service-integrations
191192
/packages/cyberarkpas @elastic/security-service-integrations
192193
/packages/cybereason @elastic/security-service-integrations
194+
/packages/cyera @elastic/security-service-integrations
193195
/packages/cylance @elastic/security-service-integrations
194196
/packages/darktrace @elastic/security-service-integrations
195197
/packages/ded @elastic/ml-ui @elastic/sec-applied-ml
@@ -344,7 +346,7 @@
344346
/packages/opencanary @elastic/security-service-integrations
345347
/packages/oracle @elastic/obs-infraobs-integrations
346348
/packages/oracle_weblogic @elastic/obs-infraobs-integrations
347-
/packages/osquery @elastic/integration-experience
349+
/packages/osquery @elastic/sec-windows-platform
348350
/packages/osquery_manager @elastic/security-defend-workflows
349351
/packages/pad @elastic/ml-ui @elastic/sec-applied-ml
350352
/packages/panw @elastic/integration-experience
@@ -356,6 +358,7 @@
356358
/packages/ping_one @elastic/security-service-integrations
357359
/packages/platform_observability @elastic/stack-monitoring
358360
/packages/postgresql @elastic/obs-infraobs-integrations
361+
/packages/postgresql_otel @elastic/obs-infraobs-integrations
359362
/packages/pps @elastic/security-service-integrations
360363
/packages/prisma_access @elastic/security-service-integrations
361364
/packages/prisma_cloud @elastic/security-service-integrations

.github/ISSUE_TEMPLATE/integration_bug.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ body:
2020
- ActiveMQ [activemq]
2121
- Admin By Request EPM [admin_by_request_epm]
2222
- Airflow [airflow]
23+
- Airlock Digital [airlock_digital]
2324
- Akamai [akamai]
2425
- AlienVault OTX [ti_otx]
2526
- Amazon Bedrock [aws_bedrock]
@@ -132,6 +133,7 @@ body:
132133
- Cyberark Privileged Threat Analytics [cyberark_pta]
133134
- Cybereason [cybereason]
134135
- Cybersixgill [ti_cybersixgill]
136+
- Cyera [cyera]
135137
- CylanceProtect Logs (Deprecated) [cylance]
136138
- Cyware Intel Exchange [ti_cyware_intel_exchange]
137139
- Darktrace [darktrace]
@@ -283,6 +285,7 @@ body:
283285
- PingOne [ping_one]
284286
- Platform Observability [platform_observability]
285287
- Pleasant Password Server [pps]
288+
- PostgreSQL OpenTelemetry Assets [postgresql_otel]
286289
- PostgreSQL [postgresql]
287290
- Prebuilt Security Detection Rules [security_detection_engine]
288291
- Privileged Access Detection [pad]

.github/ISSUE_TEMPLATE/integration_feature_request.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ body:
2020
- ActiveMQ [activemq]
2121
- Admin By Request EPM [admin_by_request_epm]
2222
- Airflow [airflow]
23+
- Airlock Digital [airlock_digital]
2324
- Akamai [akamai]
2425
- AlienVault OTX [ti_otx]
2526
- Amazon Bedrock [aws_bedrock]
@@ -132,6 +133,7 @@ body:
132133
- Cyberark Privileged Threat Analytics [cyberark_pta]
133134
- Cybereason [cybereason]
134135
- Cybersixgill [ti_cybersixgill]
136+
- Cyera [cyera]
135137
- CylanceProtect Logs (Deprecated) [cylance]
136138
- Cyware Intel Exchange [ti_cyware_intel_exchange]
137139
- Darktrace [darktrace]
@@ -283,6 +285,7 @@ body:
283285
- PingOne [ping_one]
284286
- Platform Observability [platform_observability]
285287
- Pleasant Password Server [pps]
288+
- PostgreSQL OpenTelemetry Assets [postgresql_otel]
286289
- PostgreSQL [postgresql]
287290
- Prebuilt Security Detection Rules [security_detection_engine]
288291
- Privileged Access Detection [pad]

docs/extend/asset-testing.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,6 @@ elastic-package stack up -d
4242

4343
To view a list of the available options for this command, run `elastic-package stack up -h` or `elastic-package help stack up`.
4444

45-
Next, set the environment variables that are required for additional `elastic-package` commands.
46-
47-
```bash
48-
$(elastic-package stack shellinit)
49-
```
50-
5145
Next, invoke the asset loading test runner. This step corresponds to steps 3 to 5 in the [Conceptual process](#asset-testing-concepts) section.
5246

5347
Navigate to the root folder of the package, or any sub-folder under it, and run the following command.

docs/extend/build-new-integration.md

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,3 @@ Ready to monitor, ingest, and visualize something? Let’s get started. You’ll
2222
::::{tip}
2323
Familiar with the {{stack}} and just want a quick way to get started? See [*Quick start: Sample integration*](/extend/quick-start.md).
2424
::::
25-
26-
27-
28-
29-
30-
31-
32-
33-
34-
35-
36-
37-
38-

0 commit comments

Comments
 (0)