Skip to content

Conversation

@KDKHD
Copy link
Member

@KDKHD KDKHD commented Nov 27, 2025

Summary

Summarize your PR. If it involves visual changes, include a screenshot or gif.

Fix bug where unsupported connectors appeared in the security ai assistant and agent builder connector selector.

How to test the fix:

  • Set up an AI connector (inference)
  • In Additional settings, make sure "text embeddings" is selected
image

(to set up a text embedding connector, I used a personal OpenAI key and picked one of the OpenAI embedding models)

  • Go to the security AI assistant and open the connector drop-down.
  • Ensure your text embeddings connector does not appear.
  • Check text embedding connector does not appear in the agent builder connector selector either

Previously, the embedding connector would appear but be unusable.

Example:

Incompatible AI connector
image

Compatible AI connector
image

Security connector Selector should look like this:
image

Agent builder connector selector should look like this:
image

Checklist

Check the PR satisfies following conditions.

Reviewers should verify this PR satisfies this list as well.

  • Any text added follows EUI's writing guidelines, uses sentence case text and includes i18n support
  • Documentation was added for features that require explanation or tutorials
  • Unit or functional tests were updated or added to match the most common scenarios
  • If a plugin configuration key changed, check if it needs to be allowlisted in the cloud and added to the docker list
  • This was checked for breaking HTTP API changes, and any breaking changes have been approved by the breaking-change committee. The release_note:breaking label should be applied in these situations.
  • Flaky Test Runner was used on any tests changed
  • The PR description includes the appropriate Release Notes section, and the correct release_note:* label is applied per the guidelines
  • Review the backport guidelines and apply applicable backport:* labels.

Identify risks

Does this PR introduce any risks? For example, consider risks like hard to test bugs, performance regression, potential of data loss.

Describe the risk, its severity, and mitigation for each identified risk. Invite stakeholders and evaluate how to proceed before merging.

@KDKHD KDKHD marked this pull request as ready for review November 27, 2025 14:32
@KDKHD KDKHD requested a review from a team as a code owner November 27, 2025 14:32
@KDKHD KDKHD added bug Fixes for quality problems that affect the customer experience release_note:skip Skip the PR/issue when compiling release notes backport:version Backport to applied version labels v9.1.0 v8.19.0 v9.2.0 labels Nov 27, 2025
@KDKHD KDKHD changed the title [Bug] Ensure only supported connectors appear in the security solution AI connector selector [Bug] Ensure only supported connectors appear in the Security Solution & Agent Builder AI connector selector Nov 27, 2025
@elasticmachine
Copy link
Contributor

💚 Build Succeeded

Metrics [docs]

Async chunks

Total size of all lazy-loaded chunks that will be downloaded as the user navigates the app

id before after diff
automaticImport 1.3MB 1.3MB +312.0B
onechat 433.4KB 433.8KB +328.0B
securitySolution 11.1MB 11.1MB +311.0B
total +951.0B

Page load bundle

Size of the bundles that are downloaded on every page load. Target size is below 100kb

id before after diff
elasticAssistant 307.0KB 307.3KB +318.0B
onechat 21.5KB 21.5KB +2.0B
total +320.0B

History

@KDKHD
Copy link
Member Author

KDKHD commented Dec 1, 2025

@elasticmachine merge upstream

@KDKHD KDKHD enabled auto-merge (squash) December 1, 2025 17:56
@KDKHD KDKHD merged commit d128d41 into elastic:main Dec 1, 2025
13 checks passed
@kibanamachine
Copy link
Contributor

Starting backport for target branches: 8.19, 9.1, 9.2

https://github.com/elastic/kibana/actions/runs/19836026345

@kibanamachine
Copy link
Contributor

💔 All backports failed

Status Branch Result
8.19 Backport failed because of merge conflicts
9.1 Backport failed because of merge conflicts
9.2 Backport failed because of merge conflicts

Manual backport

To create the backport manually run:

node scripts/backport --pr 244533

Questions ?

Please refer to the Backport tool documentation

KDKHD added a commit to KDKHD/kibana that referenced this pull request Dec 2, 2025
…n & Agent Builder AI connector selector (elastic#244533)

## Summary

Summarize your PR. If it involves visual changes, include a screenshot
or gif.

Fix bug where unsupported connectors appeared in the security ai
assistant and agent builder connector selector.

How to test the fix:
- Set up an AI connector (inference)
- In Additional settings, make sure "text embeddings" is selected
<img width="828" height="416" alt="image"
src="https://github.com/user-attachments/assets/328d7f9c-4c4c-412c-95dd-7bcb8f37077e"
/>

(to set up a text embedding connector, I used a personal OpenAI key and
picked one of the OpenAI embedding models)

- Go to the security AI assistant and open the connector drop-down.
- Ensure your text embeddings connector does not appear.
- Check text embedding connector does not appear in the agent builder
connector selector either

Previously, the embedding connector would appear but be unusable.

Example:

Incompatible AI connector
<img width="1734" height="1784" alt="image"
src="https://github.com/user-attachments/assets/51fe0a2c-c6fe-455d-8caa-b7c437f7cc31"
/>

Compatible AI connector
<img width="1796" height="1816" alt="image"
src="https://github.com/user-attachments/assets/5ed5d7cd-b620-40ce-b46e-df5a0bf3d796"
/>

Security connector Selector should look like this:
<img width="910" height="928" alt="image"
src="https://github.com/user-attachments/assets/44dc00fb-c55f-4bf1-9e77-9f0cf2b8799e"
/>

Agent builder connector selector should look like this:
<img width="728" height="379" alt="image"
src="https://github.com/user-attachments/assets/00b15daa-1c73-44b8-b1fa-b7db3916d326"
/>

### Checklist

Check the PR satisfies following conditions.

Reviewers should verify this PR satisfies this list as well.

- [X] Any text added follows [EUI's writing
guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses
sentence case text and includes [i18n
support](https://github.com/elastic/kibana/blob/main/src/platform/packages/shared/kbn-i18n/README.md)
- [X]
[Documentation](https://www.elastic.co/guide/en/kibana/master/development-documentation.html)
was added for features that require explanation or tutorials
- [X] [Unit or functional
tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html)
were updated or added to match the most common scenarios
- [X] If a plugin configuration key changed, check if it needs to be
allowlisted in the cloud and added to the [docker
list](https://github.com/elastic/kibana/blob/main/src/dev/build/tasks/os_packages/docker_generator/resources/base/bin/kibana-docker)
- [X] This was checked for breaking HTTP API changes, and any breaking
changes have been approved by the breaking-change committee. The
`release_note:breaking` label should be applied in these situations.
- [X] [Flaky Test
Runner](https://ci-stats.kibana.dev/trigger_flaky_test_runner/1) was
used on any tests changed
- [X] The PR description includes the appropriate Release Notes section,
and the correct `release_note:*` label is applied per the
[guidelines](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process)
- [X] Review the [backport
guidelines](https://docs.google.com/document/d/1VyN5k91e5OVumlc0Gb9RPa3h1ewuPE705nRtioPiTvY/edit?usp=sharing)
and apply applicable `backport:*` labels.

### Identify risks

Does this PR introduce any risks? For example, consider risks like hard
to test bugs, performance regression, potential of data loss.

Describe the risk, its severity, and mitigation for each identified
risk. Invite stakeholders and evaluate how to proceed before merging.

- [ ] [See some risk
examples](https://github.com/elastic/kibana/blob/main/RISK_MATRIX.mdx)
- [ ] ...

---------

Co-authored-by: kibanamachine <[email protected]>
(cherry picked from commit d128d41)

# Conflicts:
#	x-pack/platform/packages/shared/kbn-elastic-assistant/impl/mock/connectors.ts
KDKHD added a commit to KDKHD/kibana that referenced this pull request Dec 2, 2025
…n & Agent Builder AI connector selector (elastic#244533)

## Summary

Summarize your PR. If it involves visual changes, include a screenshot
or gif.

Fix bug where unsupported connectors appeared in the security ai
assistant and agent builder connector selector.

How to test the fix:
- Set up an AI connector (inference)
- In Additional settings, make sure "text embeddings" is selected
<img width="828" height="416" alt="image"
src="https://github.com/user-attachments/assets/328d7f9c-4c4c-412c-95dd-7bcb8f37077e"
/>

(to set up a text embedding connector, I used a personal OpenAI key and
picked one of the OpenAI embedding models)

- Go to the security AI assistant and open the connector drop-down.
- Ensure your text embeddings connector does not appear.
- Check text embedding connector does not appear in the agent builder
connector selector either

Previously, the embedding connector would appear but be unusable.

Example:

Incompatible AI connector
<img width="1734" height="1784" alt="image"
src="https://github.com/user-attachments/assets/51fe0a2c-c6fe-455d-8caa-b7c437f7cc31"
/>

Compatible AI connector
<img width="1796" height="1816" alt="image"
src="https://github.com/user-attachments/assets/5ed5d7cd-b620-40ce-b46e-df5a0bf3d796"
/>

Security connector Selector should look like this:
<img width="910" height="928" alt="image"
src="https://github.com/user-attachments/assets/44dc00fb-c55f-4bf1-9e77-9f0cf2b8799e"
/>

Agent builder connector selector should look like this:
<img width="728" height="379" alt="image"
src="https://github.com/user-attachments/assets/00b15daa-1c73-44b8-b1fa-b7db3916d326"
/>

### Checklist

Check the PR satisfies following conditions.

Reviewers should verify this PR satisfies this list as well.

- [X] Any text added follows [EUI's writing
guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses
sentence case text and includes [i18n
support](https://github.com/elastic/kibana/blob/main/src/platform/packages/shared/kbn-i18n/README.md)
- [X]
[Documentation](https://www.elastic.co/guide/en/kibana/master/development-documentation.html)
was added for features that require explanation or tutorials
- [X] [Unit or functional
tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html)
were updated or added to match the most common scenarios
- [X] If a plugin configuration key changed, check if it needs to be
allowlisted in the cloud and added to the [docker
list](https://github.com/elastic/kibana/blob/main/src/dev/build/tasks/os_packages/docker_generator/resources/base/bin/kibana-docker)
- [X] This was checked for breaking HTTP API changes, and any breaking
changes have been approved by the breaking-change committee. The
`release_note:breaking` label should be applied in these situations.
- [X] [Flaky Test
Runner](https://ci-stats.kibana.dev/trigger_flaky_test_runner/1) was
used on any tests changed
- [X] The PR description includes the appropriate Release Notes section,
and the correct `release_note:*` label is applied per the
[guidelines](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process)
- [X] Review the [backport
guidelines](https://docs.google.com/document/d/1VyN5k91e5OVumlc0Gb9RPa3h1ewuPE705nRtioPiTvY/edit?usp=sharing)
and apply applicable `backport:*` labels.

### Identify risks

Does this PR introduce any risks? For example, consider risks like hard
to test bugs, performance regression, potential of data loss.

Describe the risk, its severity, and mitigation for each identified
risk. Invite stakeholders and evaluate how to proceed before merging.

- [ ] [See some risk
examples](https://github.com/elastic/kibana/blob/main/RISK_MATRIX.mdx)
- [ ] ...

---------

Co-authored-by: kibanamachine <[email protected]>
(cherry picked from commit d128d41)

# Conflicts:
#	x-pack/platform/packages/shared/kbn-elastic-assistant/impl/mock/connectors.ts
@KDKHD
Copy link
Member Author

KDKHD commented Dec 2, 2025

💔 Some backports could not be created

Status Branch Result
9.2
9.1 An unhandled error occurred. Please see the logs for details
8.19 The branch "elastic/8.19'" is invalid or doesn't exist

Note: Successful backport PRs will be merged automatically after passing CI.

Manual backport

To create the backport manually run:

node scripts/backport --pr 244533

Questions ?

Please refer to the Backport tool documentation

KDKHD added a commit to KDKHD/kibana that referenced this pull request Dec 2, 2025
…n & Agent Builder AI connector selector (elastic#244533)

## Summary

Summarize your PR. If it involves visual changes, include a screenshot
or gif.

Fix bug where unsupported connectors appeared in the security ai
assistant and agent builder connector selector.

How to test the fix:
- Set up an AI connector (inference)
- In Additional settings, make sure "text embeddings" is selected
<img width="828" height="416" alt="image"
src="https://github.com/user-attachments/assets/328d7f9c-4c4c-412c-95dd-7bcb8f37077e"
/>

(to set up a text embedding connector, I used a personal OpenAI key and
picked one of the OpenAI embedding models)

- Go to the security AI assistant and open the connector drop-down.
- Ensure your text embeddings connector does not appear.
- Check text embedding connector does not appear in the agent builder
connector selector either

Previously, the embedding connector would appear but be unusable.

Example:

Incompatible AI connector
<img width="1734" height="1784" alt="image"
src="https://github.com/user-attachments/assets/51fe0a2c-c6fe-455d-8caa-b7c437f7cc31"
/>

Compatible AI connector
<img width="1796" height="1816" alt="image"
src="https://github.com/user-attachments/assets/5ed5d7cd-b620-40ce-b46e-df5a0bf3d796"
/>

Security connector Selector should look like this:
<img width="910" height="928" alt="image"
src="https://github.com/user-attachments/assets/44dc00fb-c55f-4bf1-9e77-9f0cf2b8799e"
/>

Agent builder connector selector should look like this:
<img width="728" height="379" alt="image"
src="https://github.com/user-attachments/assets/00b15daa-1c73-44b8-b1fa-b7db3916d326"
/>

### Checklist

Check the PR satisfies following conditions.

Reviewers should verify this PR satisfies this list as well.

- [X] Any text added follows [EUI's writing
guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses
sentence case text and includes [i18n
support](https://github.com/elastic/kibana/blob/main/src/platform/packages/shared/kbn-i18n/README.md)
- [X]
[Documentation](https://www.elastic.co/guide/en/kibana/master/development-documentation.html)
was added for features that require explanation or tutorials
- [X] [Unit or functional
tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html)
were updated or added to match the most common scenarios
- [X] If a plugin configuration key changed, check if it needs to be
allowlisted in the cloud and added to the [docker
list](https://github.com/elastic/kibana/blob/main/src/dev/build/tasks/os_packages/docker_generator/resources/base/bin/kibana-docker)
- [X] This was checked for breaking HTTP API changes, and any breaking
changes have been approved by the breaking-change committee. The
`release_note:breaking` label should be applied in these situations.
- [X] [Flaky Test
Runner](https://ci-stats.kibana.dev/trigger_flaky_test_runner/1) was
used on any tests changed
- [X] The PR description includes the appropriate Release Notes section,
and the correct `release_note:*` label is applied per the
[guidelines](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process)
- [X] Review the [backport
guidelines](https://docs.google.com/document/d/1VyN5k91e5OVumlc0Gb9RPa3h1ewuPE705nRtioPiTvY/edit?usp=sharing)
and apply applicable `backport:*` labels.

### Identify risks

Does this PR introduce any risks? For example, consider risks like hard
to test bugs, performance regression, potential of data loss.

Describe the risk, its severity, and mitigation for each identified
risk. Invite stakeholders and evaluate how to proceed before merging.

- [ ] [See some risk
examples](https://github.com/elastic/kibana/blob/main/RISK_MATRIX.mdx)
- [ ] ...

---------

Co-authored-by: kibanamachine <[email protected]>
(cherry picked from commit d128d41)

# Conflicts:
#	x-pack/platform/packages/shared/kbn-elastic-assistant/impl/mock/connectors.ts
KDKHD added a commit to KDKHD/kibana that referenced this pull request Dec 2, 2025
…n & Agent Builder AI connector selector (elastic#244533)

## Summary

Summarize your PR. If it involves visual changes, include a screenshot
or gif.

Fix bug where unsupported connectors appeared in the security ai
assistant and agent builder connector selector.

How to test the fix:
- Set up an AI connector (inference)
- In Additional settings, make sure "text embeddings" is selected
<img width="828" height="416" alt="image"
src="https://github.com/user-attachments/assets/328d7f9c-4c4c-412c-95dd-7bcb8f37077e"
/>

(to set up a text embedding connector, I used a personal OpenAI key and
picked one of the OpenAI embedding models)

- Go to the security AI assistant and open the connector drop-down.
- Ensure your text embeddings connector does not appear.
- Check text embedding connector does not appear in the agent builder
connector selector either

Previously, the embedding connector would appear but be unusable.

Example:

Incompatible AI connector
<img width="1734" height="1784" alt="image"
src="https://github.com/user-attachments/assets/51fe0a2c-c6fe-455d-8caa-b7c437f7cc31"
/>

Compatible AI connector
<img width="1796" height="1816" alt="image"
src="https://github.com/user-attachments/assets/5ed5d7cd-b620-40ce-b46e-df5a0bf3d796"
/>

Security connector Selector should look like this:
<img width="910" height="928" alt="image"
src="https://github.com/user-attachments/assets/44dc00fb-c55f-4bf1-9e77-9f0cf2b8799e"
/>

Agent builder connector selector should look like this:
<img width="728" height="379" alt="image"
src="https://github.com/user-attachments/assets/00b15daa-1c73-44b8-b1fa-b7db3916d326"
/>

### Checklist

Check the PR satisfies following conditions.

Reviewers should verify this PR satisfies this list as well.

- [X] Any text added follows [EUI's writing
guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses
sentence case text and includes [i18n
support](https://github.com/elastic/kibana/blob/main/src/platform/packages/shared/kbn-i18n/README.md)
- [X]
[Documentation](https://www.elastic.co/guide/en/kibana/master/development-documentation.html)
was added for features that require explanation or tutorials
- [X] [Unit or functional
tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html)
were updated or added to match the most common scenarios
- [X] If a plugin configuration key changed, check if it needs to be
allowlisted in the cloud and added to the [docker
list](https://github.com/elastic/kibana/blob/main/src/dev/build/tasks/os_packages/docker_generator/resources/base/bin/kibana-docker)
- [X] This was checked for breaking HTTP API changes, and any breaking
changes have been approved by the breaking-change committee. The
`release_note:breaking` label should be applied in these situations.
- [X] [Flaky Test
Runner](https://ci-stats.kibana.dev/trigger_flaky_test_runner/1) was
used on any tests changed
- [X] The PR description includes the appropriate Release Notes section,
and the correct `release_note:*` label is applied per the
[guidelines](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process)
- [X] Review the [backport
guidelines](https://docs.google.com/document/d/1VyN5k91e5OVumlc0Gb9RPa3h1ewuPE705nRtioPiTvY/edit?usp=sharing)
and apply applicable `backport:*` labels.

### Identify risks

Does this PR introduce any risks? For example, consider risks like hard
to test bugs, performance regression, potential of data loss.

Describe the risk, its severity, and mitigation for each identified
risk. Invite stakeholders and evaluate how to proceed before merging.

- [ ] [See some risk
examples](https://github.com/elastic/kibana/blob/main/RISK_MATRIX.mdx)
- [ ] ...

---------

Co-authored-by: kibanamachine <[email protected]>
(cherry picked from commit d128d41)

# Conflicts:
#	x-pack/platform/packages/shared/kbn-elastic-assistant/impl/mock/connectors.ts
@kibanamachine
Copy link
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @KDKHD

3 similar comments
@kibanamachine
Copy link
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @KDKHD

@kibanamachine
Copy link
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @KDKHD

@kibanamachine
Copy link
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @KDKHD

JordanSh pushed a commit to JordanSh/kibana that referenced this pull request Dec 9, 2025
…n & Agent Builder AI connector selector (elastic#244533)

## Summary

Summarize your PR. If it involves visual changes, include a screenshot
or gif.

Fix bug where unsupported connectors appeared in the security ai
assistant and agent builder connector selector.

How to test the fix:
- Set up an AI connector (inference)
- In Additional settings, make sure "text embeddings" is selected  
<img width="828" height="416" alt="image"
src="https://github.com/user-attachments/assets/328d7f9c-4c4c-412c-95dd-7bcb8f37077e"
/>

(to set up a text embedding connector, I used a personal OpenAI key and
picked one of the OpenAI embedding models)

- Go to the security AI assistant and open the connector drop-down.
- Ensure your text embeddings connector does not appear.
- Check text embedding connector does not appear in the agent builder
connector selector either

Previously, the embedding connector would appear but be unusable. 


Example:

Incompatible AI connector
<img width="1734" height="1784" alt="image"
src="https://github.com/user-attachments/assets/51fe0a2c-c6fe-455d-8caa-b7c437f7cc31"
/>

Compatible AI connector
<img width="1796" height="1816" alt="image"
src="https://github.com/user-attachments/assets/5ed5d7cd-b620-40ce-b46e-df5a0bf3d796"
/>

Security connector Selector should look like this:
<img width="910" height="928" alt="image"
src="https://github.com/user-attachments/assets/44dc00fb-c55f-4bf1-9e77-9f0cf2b8799e"
/>

Agent builder connector selector should look like this:
<img width="728" height="379" alt="image"
src="https://github.com/user-attachments/assets/00b15daa-1c73-44b8-b1fa-b7db3916d326"
/>



### Checklist

Check the PR satisfies following conditions. 

Reviewers should verify this PR satisfies this list as well.

- [X] Any text added follows [EUI's writing
guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses
sentence case text and includes [i18n
support](https://github.com/elastic/kibana/blob/main/src/platform/packages/shared/kbn-i18n/README.md)
- [X]
[Documentation](https://www.elastic.co/guide/en/kibana/master/development-documentation.html)
was added for features that require explanation or tutorials
- [X] [Unit or functional
tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html)
were updated or added to match the most common scenarios
- [X] If a plugin configuration key changed, check if it needs to be
allowlisted in the cloud and added to the [docker
list](https://github.com/elastic/kibana/blob/main/src/dev/build/tasks/os_packages/docker_generator/resources/base/bin/kibana-docker)
- [X] This was checked for breaking HTTP API changes, and any breaking
changes have been approved by the breaking-change committee. The
`release_note:breaking` label should be applied in these situations.
- [X] [Flaky Test
Runner](https://ci-stats.kibana.dev/trigger_flaky_test_runner/1) was
used on any tests changed
- [X] The PR description includes the appropriate Release Notes section,
and the correct `release_note:*` label is applied per the
[guidelines](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process)
- [X] Review the [backport
guidelines](https://docs.google.com/document/d/1VyN5k91e5OVumlc0Gb9RPa3h1ewuPE705nRtioPiTvY/edit?usp=sharing)
and apply applicable `backport:*` labels.

### Identify risks

Does this PR introduce any risks? For example, consider risks like hard
to test bugs, performance regression, potential of data loss.

Describe the risk, its severity, and mitigation for each identified
risk. Invite stakeholders and evaluate how to proceed before merging.

- [ ] [See some risk
examples](https://github.com/elastic/kibana/blob/main/RISK_MATRIX.mdx)
- [ ] ...

---------

Co-authored-by: kibanamachine <[email protected]>
@kibanamachine
Copy link
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @KDKHD

16 similar comments
@kibanamachine
Copy link
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @KDKHD

@kibanamachine
Copy link
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @KDKHD

@kibanamachine
Copy link
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @KDKHD

@kibanamachine
Copy link
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @KDKHD

@kibanamachine
Copy link
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @KDKHD

@kibanamachine
Copy link
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @KDKHD

@kibanamachine
Copy link
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @KDKHD

@kibanamachine
Copy link
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @KDKHD

@kibanamachine
Copy link
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @KDKHD

@kibanamachine
Copy link
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @KDKHD

@kibanamachine
Copy link
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @KDKHD

@kibanamachine
Copy link
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @KDKHD

@kibanamachine
Copy link
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @KDKHD

@kibanamachine
Copy link
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @KDKHD

@kibanamachine
Copy link
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @KDKHD

@kibanamachine
Copy link
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @KDKHD

@kibanamachine
Copy link
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @KDKHD

3 similar comments
@kibanamachine
Copy link
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @KDKHD

@kibanamachine
Copy link
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @KDKHD

@kibanamachine
Copy link
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @KDKHD

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

backport missing Added to PRs automatically when the are determined to be missing a backport. backport:version Backport to applied version labels bug Fixes for quality problems that affect the customer experience release_note:skip Skip the PR/issue when compiling release notes v8.19.0 v9.1.0 v9.2.0 v9.3.0

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants