-
Notifications
You must be signed in to change notification settings - Fork 8.6k
Security attachments in Agent Builder #243574
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
Changes from 109 commits
682a7e1
a15330a
7bc16c0
4ece3ed
be8e838
9eb85ed
81da0e6
801522b
fbcd6db
35c03a2
2b41a64
372ffc9
8a302de
f104122
bcc390e
469dc18
832b747
fe9b3cf
37256be
a43976d
8294772
c3ce0e9
b092f5b
5500486
5fb7169
1a0d535
3fed38a
a088b66
2f49c63
7ebc3c0
348b504
1c2fa8a
f925a78
866f483
e5e90c7
3441fc9
2786c24
34f4f1f
627773d
8738c0e
42c3fc2
141fbcc
47fa1de
7d10732
70257fc
3124311
c1b915e
1929c9d
a30c59c
fc8eefe
eff1f4a
fcaf3d0
d4f8c09
fbd4bd8
a922634
3aec4f1
83c1709
e11d926
75adb9c
19435a7
ee63b8b
8cb1c6e
86bdf41
89170f3
8e667c0
cb5730d
49f0f67
6b26745
e7e4f2e
f710744
83697e6
95afa72
0e2c037
1b2a73c
583cffd
6a3aecd
97797ab
2763503
f9cbc4d
3f95673
0ca2a14
cf2090a
12d5723
8f7807f
a556166
de68208
d8d5013
6456fda
742b6d9
4854790
b70225b
db2a842
6fb5cc0
22fb29a
73db09d
46d3e3b
99d4ca3
2efe7e3
5359728
1751dbe
1abd9e1
d886267
8f183ee
5e29ae0
33c6c19
56079e4
3ac7821
4bc5f23
7cece48
03a8729
63e3b9e
b49a60f
43a2c38
1b7fdc3
f89221c
3babba1
13a5e8a
3372463
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,6 +6,7 @@ | |
| */ | ||
|
|
||
| import { platformCoreTools } from '@kbn/onechat-common/tools'; | ||
| import { internalNamespaces } from '@kbn/onechat-common/base/namespaces'; | ||
|
|
||
| /** | ||
| * This is a manually maintained list of all built-in tools registered in Agent Builder. | ||
|
|
@@ -21,6 +22,10 @@ export const AGENT_BUILDER_BUILTIN_TOOLS: string[] = [ | |
| 'observability.get_alerts', | ||
| 'observability.get_services', | ||
| 'observability.get_downstream_dependencies', | ||
| // Security Solution | ||
| `${internalNamespaces.security}.entity_risk_score`, | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just for context:
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ok, you will need to do this for both assistant and the new agent builder tool I've added here. I can help |
||
| `${internalNamespaces.security}.attack_discovery_search`, | ||
| `${internalNamespaces.security}.security_labs_search`, | ||
| ]; | ||
|
|
||
| /** | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also made the changes for roles here: https://github.com/elastic/elasticsearch-controller/pull/1389