-
Notifications
You must be signed in to change notification settings - Fork 25.6k
[Fleet] Add integration_knowledge
system index for Fleet
#132506
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Supplementing
merged 40 commits into
elastic:main
from
Supplementing:knowledge-base-index-privileges
Aug 19, 2025
Merged
Changes from 29 commits
Commits
Show all changes
40 commits
Select commit
Hold shift + click to select a range
2b0f455
added privilege and test
Supplementing 084ba05
Merge branch 'main' into knowledge-base-index-privileges
Supplementing 774c20b
[CI] Auto commit changes from spotless
5e65044
changed privileges
Supplementing 71503b9
fixed conflicts
Supplementing b152bc9
removed conflict i missed
Supplementing 2b42f64
[CI] Auto commit changes from spotless
d2ba854
updated test
Supplementing 130955e
Merge branch 'knowledge-base-index-privileges' of https://github.com/…
Supplementing 67014a9
rolled back test to be correct to investigate failure
Supplementing e054b35
added additional indexAbstraction function with actual type to avoid …
Supplementing fca466f
Merge branch 'main' into knowledge-base-index-privileges
Supplementing 1a6871d
changed test to true for now due to BWC logic
Supplementing 189b85c
Merge branch 'knowledge-base-index-privileges' of https://github.com/…
Supplementing e0ea28f
[CI] Auto commit changes from spotless
7ac998d
changed to let index management be the responsibility of ES
Supplementing d0bd00f
merged in main
Supplementing fa552d1
Removed unneeded function
Supplementing 1f87382
[CI] Auto commit changes from spotless
d5f0fd8
fixed formatting of variable in json
Supplementing e009458
Merge branch 'knowledge-base-index-privileges' of https://github.com/…
Supplementing da9eec1
Update x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/…
Supplementing b2ba08c
Update x-pack/plugin/core/src/test/java/org/elasticsearch/xpack/core/…
Supplementing 89e6ac6
added changelog and removed whitespace
Supplementing 1c9a8ee
actually remove whitespace
Supplementing 2683a61
[CI] Auto commit changes from spotless
a725405
changed area in changelog
Supplementing ea54a32
Merge branch 'knowledge-base-index-privileges' of https://github.com/…
Supplementing e388291
Merge branch 'main' into knowledge-base-index-privileges
Supplementing 356c20c
fixed indicies IT to use correct url
Supplementing ad566f3
Merge branch 'knowledge-base-index-privileges' of https://github.com/…
Supplementing 9453716
fixed mapping issues by updating plugins needed to use types, also fi…
Supplementing 7526470
Merge branch 'main' into knowledge-base-index-privileges
Supplementing 1a3d494
changed index to externally mananged, and removed permissive warnings
Supplementing 140675e
Merge branch 'knowledge-base-index-privileges' of https://github.com/…
Supplementing 72c11d3
[CI] Auto commit changes from spotless
a18980e
Merge branch 'main' into knowledge-base-index-privileges
Supplementing 8a4f572
made changes to support semantic search with the .md content being ad…
Supplementing 1c1c958
Merge branch 'knowledge-base-index-privileges' of https://github.com/…
Supplementing 9ed402c
Merge branch 'main' into knowledge-base-index-privileges
Supplementing File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,5 @@ | ||
pr: 132506 | ||
summary: Add .integration_knowledge system index for usage by AI assistants | ||
area: Infra/Core | ||
type: feature | ||
issues: [] |
This file contains hidden or 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 hidden or 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
34 changes: 34 additions & 0 deletions
34
x-pack/plugin/core/template-resources/src/main/resources/fleet-integration-knowledge.json
This file contains hidden or 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,34 @@ | ||
{ | ||
"settings": { | ||
"auto_expand_replicas": "0-1", | ||
"index.hidden": true | ||
}, | ||
"mappings": { | ||
"_doc": { | ||
"dynamic": false, | ||
"_meta": { | ||
"version": "${fleet.version}", | ||
"managed_index_mappings_version": ${fleet.managed.index.version}, | ||
"description": "Integration package knowledge base content storage", | ||
"managed": true | ||
}, | ||
"properties": { | ||
"filename": { | ||
"type": "keyword" | ||
}, | ||
"content": { | ||
"type": "semantic_text" | ||
}, | ||
"version": { | ||
"type": "version" | ||
}, | ||
"package_name": { | ||
"type": "keyword" | ||
}, | ||
"installed_at": { | ||
"type": "date" | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains hidden or 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 hidden or 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 hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.