Skip to content

Commit 45eafc2

Browse files
Adds KB settings known issue to Security known issues (#1898)
Resolves #1895. Preview: [Known issues](https://docs-v3-preview.elastic.dev/elastic/docs-content/pull/1898/release-notes/elastic-security/known-issues)
1 parent 1cab37f commit 45eafc2

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed

release-notes/elastic-security/known-issues.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,54 @@ Known issues are significant defects or limitations that may impact your impleme
1616

1717
% :::
1818

19+
:::{dropdown} Security AI Assistant Knowledge Base settings UI not displaying
20+
21+
Applies to: 9.0.3
22+
23+
On June 24, 2025, an error was discovered that prevents the AI Assistant Knowledge Base settings UI from displaying, including the **Setup Knowledge Base** button and alert configuration options. As a result, the Knowledge Base cannot be set up or configured through the Knowledge Base settings UI.
24+
25+
**Workaround**
26+
27+
While the UI for configuring the Knowledge Base is blocked, you can still enable it
28+
[from an AI Assistant conversation](/solutions/security/ai/ai-assistant-knowledge-base.md#_option_1_enable_knowledge_base_from_an_ai_assistant_conversation).
29+
30+
After enabling the Knowledge Base, you can manage entries using the AI Assistant API:
31+
32+
* List Knowledge Base entries using the [find knowledge base entry API]({{kib-apis}}/operation/operation-findknowledgebaseentries):
33+
34+
```console
35+
GET /api/security_ai_assistant/knowledge_base/entries/_find?page=1&per_page=100
36+
```
37+
38+
* Create a Knowledge Base index entry using the [create knowledge base entry API]({{kib-apis}}/operation/operation-createknowledgebaseentry):
39+
40+
```console
41+
POST /api/security_ai_assistant/knowledge_base/entries
42+
{
43+
"type": "index",
44+
"name": "test",
45+
"index": "test-index",
46+
"field": "mock",
47+
"outputFields": ["example"],
48+
"description": "test description",
49+
"queryDescription": "test query description"
50+
}
51+
```
52+
53+
* Create a Knowledge Base document entry using the [create knowledge base entry API]({{kib-apis}}/operation/operation-createknowledgebaseentry):
54+
55+
```console
56+
POST /api/security_ai_assistant/knowledge_base/entries
57+
{
58+
"type": "document",
59+
"kbResource": "user",
60+
"source": "user",
61+
"name": "doc"
62+
}
63+
```
64+
65+
:::
66+
1967
:::{dropdown} The entity risk score feature may stop persisting risk score documents
2068

2169
Applies to: {{stack}} 9.0.0, 9.0.1, 9.0.2

0 commit comments

Comments
 (0)