-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into snapshots_sorting
- Loading branch information
Showing
468 changed files
with
7,576 additions
and
18,302 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
steps: | ||
- block: ":gear: Performance Tests Configuration" | ||
prompt: "Fill out the details for performance test" | ||
fields: | ||
- text: ":arrows_counterclockwise: Iterations" | ||
key: "performance-test-iteration-count" | ||
hint: "How many times you want to run tests? " | ||
required: true | ||
if: build.env('ITERATION_COUNT_ENV') == null | ||
|
||
- label: ":male-mechanic::skin-tone-2: Pre-Build" | ||
command: .buildkite/scripts/lifecycle/pre_build.sh | ||
|
||
- wait | ||
|
||
- label: ":factory_worker: Build Kibana Distribution and Plugins" | ||
command: .buildkite/scripts/steps/build_kibana.sh | ||
agents: | ||
queue: c2-16 | ||
key: build | ||
|
||
- label: ":muscle: Performance Tests" | ||
command: .buildkite/scripts/steps/functional/performance.sh | ||
agents: | ||
queue: ci-group-6 | ||
depends_on: build | ||
concurrency: 50 | ||
concurrency_group: 'performance-test-group' | ||
|
||
- wait: ~ | ||
continue_on_failure: true | ||
|
||
- label: ":male_superhero::skin-tone-2: Post-Build" | ||
command: .buildkite/scripts/lifecycle/post_build.sh | ||
|
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,20 @@ | ||
#!/bin/bash | ||
|
||
set -uo pipefail | ||
|
||
if [ -z "${ITERATION_COUNT_ENV+x}" ]; then | ||
ITERATION_COUNT="$(buildkite-agent meta-data get performance-test-iteration-count)" | ||
else | ||
ITERATION_COUNT=$ITERATION_COUNT_ENV | ||
fi | ||
|
||
tput setab 2; tput setaf 0; echo "Performance test will be run at ${BUILDKITE_BRANCH} ${ITERATION_COUNT} times" | ||
|
||
cat << EOF | buildkite-agent pipeline upload | ||
steps: | ||
- command: .buildkite/scripts/steps/functional/performance_sub.sh | ||
parallelism: "$ITERATION_COUNT" | ||
EOF | ||
|
||
|
||
|
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,17 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -euo pipefail | ||
|
||
source .buildkite/scripts/common/util.sh | ||
|
||
.buildkite/scripts/bootstrap.sh | ||
.buildkite/scripts/download_build_artifacts.sh | ||
|
||
cd "$XPACK_DIR" | ||
|
||
echo --- Run Performance Tests | ||
checks-reporter-with-killswitch "Run Performance Tests" \ | ||
node scripts/functional_tests \ | ||
--debug --bail \ | ||
--kibana-install-dir "$KIBANA_BUILD_LOCATION" \ | ||
--config test/performance/config.ts; |
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
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
Binary file modified
BIN
+144 KB
(420%)
docs/management/connectors/images/servicenow-sir-params-test.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,30 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0 and the Server Side Public License, v 1; you may not use this file except | ||
* in compliance with, at your election, the Elastic License 2.0 or the Server | ||
* Side Public License, v 1. | ||
*/ | ||
|
||
import { Fields } from './entity'; | ||
import { Serializable } from './serializable'; | ||
import { generateLongId, generateShortId } from './utils/generate_id'; | ||
|
||
export class ApmError extends Serializable { | ||
constructor(fields: Fields) { | ||
super({ | ||
...fields, | ||
'processor.event': 'error', | ||
'processor.name': 'error', | ||
'error.id': generateShortId(), | ||
}); | ||
} | ||
|
||
serialize() { | ||
const [data] = super.serialize(); | ||
data['error.grouping_key'] = generateLongId( | ||
this.fields['error.grouping_name'] || this.fields['error.exception']?.[0]?.message | ||
); | ||
return [data]; | ||
} | ||
} |
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
Oops, something went wrong.