Skip to content

Commit a24d8a8

Browse files
Merge branch 'master' into feature/mappings_editor/histogram_field
2 parents 45363e5 + e5b302e commit a24d8a8

File tree

1,518 files changed

+118759
-34675
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,518 files changed

+118759
-34675
lines changed

.ci/end2end.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ pipeline {
4141
// Filter when to run based on the below reasons:
4242
// - On a PRs when:
4343
// - There are changes related to the APM UI project
44-
// - only when the owners of those changes are members of the apm-ui team (new filter)
44+
// - only when the owners of those changes are members of the given GitHub teams
4545
// - On merges to branches when:
4646
// - There are changes related to the APM UI project
4747
// - FORCE parameter is set to true.
@@ -51,7 +51,7 @@ pipeline {
5151
apm_updated = isGitRegionMatch(patterns: [ "^x-pack/plugins/apm/.*" ])
5252
}
5353
if (isPR()) {
54-
def isMember = isMemberOf(user: env.CHANGE_AUTHOR, team: 'apm-ui')
54+
def isMember = isMemberOf(user: env.CHANGE_AUTHOR, team: ['apm-ui', 'uptime'])
5555
setEnvVar('RUN_APM_E2E', params.FORCE || (apm_updated && isMember))
5656
} else {
5757
setEnvVar('RUN_APM_E2E', params.FORCE || apm_updated)

.github/CODEOWNERS

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,12 @@
6464
/src/apm.js @watson @vigneshshanmugam
6565

6666
# Client Side Monitoring (lives in APM directories but owned by Uptime)
67-
/x-pack/plugins/apm/e2e/cypress/support/step_definitions/rum @elastic/uptime
67+
/x-pack/plugins/apm/e2e/cypress/support/step_definitions/csm @elastic/uptime
6868
/x-pack/plugins/apm/public/application/csmApp.tsx @elastic/uptime
6969
/x-pack/plugins/apm/public/components/app/RumDashboard @elastic/uptime
7070
/x-pack/plugins/apm/server/lib/rum_client @elastic/uptime
7171
/x-pack/plugins/apm/server/routes/rum_client.ts @elastic/uptime
72+
/x-pack/plugins/apm/server/projections/rum_overview.ts @elastic/uptime
7273

7374
# Beats
7475
/x-pack/legacy/plugins/beats_management/ @elastic/beats
@@ -85,6 +86,7 @@
8586
# Exclude tutorial resources folder for now because they are not owned by Kibana app and most will move out soon
8687
/src/legacy/core_plugins/kibana/public/home/*.ts @elastic/kibana-core-ui
8788
/src/legacy/core_plugins/kibana/public/home/np_ready/ @elastic/kibana-core-ui
89+
/x-pack/plugins/global_search_bar/ @elastic/kibana-core-ui
8890

8991
# Observability UIs
9092
/x-pack/legacy/plugins/infra/ @elastic/logs-metrics-ui
@@ -128,6 +130,7 @@
128130
/packages/kbn-test/ @elastic/kibana-operations
129131
/packages/kbn-ui-shared-deps/ @elastic/kibana-operations
130132
/packages/kbn-es-archiver/ @elastic/kibana-operations
133+
/packages/kbn-utils/ @elastic/kibana-operations
131134
/src/legacy/server/keystore/ @elastic/kibana-operations
132135
/src/legacy/server/pid/ @elastic/kibana-operations
133136
/src/legacy/server/sass/ @elastic/kibana-operations
@@ -152,6 +155,7 @@
152155
/x-pack/plugins/cloud/ @elastic/kibana-platform
153156
/x-pack/test/saved_objects_field_count/ @elastic/kibana-platform
154157
/packages/kbn-config-schema/ @elastic/kibana-platform
158+
/packages/kbn-std/ @elastic/kibana-platform
155159
/src/legacy/server/config/ @elastic/kibana-platform
156160
/src/legacy/server/http/ @elastic/kibana-platform
157161
/src/legacy/server/logging/ @elastic/kibana-platform
@@ -293,6 +297,7 @@ x-pack/plugins/telemetry_collection_xpack/schema/xpack_plugins.json @elastic/kib
293297
/x-pack/plugins/infra/**/*.scss @elastic/observability-design
294298
/x-pack/plugins/ingest_manager/**/*.scss @elastic/observability-design
295299
/x-pack/plugins/observability/**/*.scss @elastic/observability-design
300+
/x-pack/plugins/monitoring/**/*.scss @elastic/observability-design
296301

297302
# Ent. Search design
298303
/x-pack/plugins/enterprise_search/**/*.scss @elastic/ent-search-design

.node-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
10.22.0
1+
10.22.1

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
10.22.0
1+
10.22.1

docs/api/dashboard/import-dashboard.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ experimental[] Import dashboards and corresponding saved objects.
2323
[[dashboard-api-import-request-body]]
2424
==== Request body
2525

26-
Use the complete response body from the <<dashboard-api-export, Export dashboard API>> as the request body. Do not manually construct a payload to the endpoint.
26+
Use the complete response body from the <<dashboard-api-export, Export dashboard API>> as the request body. Do not manually construct a payload to the endpoint. The max payload size is determined by the `savedObjects.maxImportPayloadBytes` configuration key.
2727

2828
[[dashboard-api-import-response-body]]
2929
==== Response body

0 commit comments

Comments
 (0)