-
Notifications
You must be signed in to change notification settings - Fork 8.5k
[SecuritySolution] Create Entity Engine status tab #201235
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 all commits
ecffe68
1845efb
6d6ce5a
ae45c47
974494a
082721c
41edd60
71996b1
676a888
54ee5d2
be4d9fa
5af6bb0
e007277
bdb9a09
5d5386f
de9e7cd
93ee4e2
de00917
1196c6d
ce320e1
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 |
|---|---|---|
|
|
@@ -42,6 +42,49 @@ components: | |
| - updating | ||
| - error | ||
|
|
||
| EngineComponentStatus: | ||
|
Contributor
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. too many things called status 😅
Member
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. Hmm 🤔 |
||
| type: object | ||
| required: | ||
| - id | ||
| - installed | ||
| - resource | ||
| properties: | ||
| id: | ||
| type: string | ||
| installed: | ||
| type: boolean | ||
| resource: | ||
| $ref: '#/components/schemas/EngineComponentResource' | ||
| health: | ||
| type: string | ||
| enum: | ||
| - green | ||
| - yellow | ||
| - red | ||
| - unknown | ||
| errors: | ||
| type: array | ||
| items: | ||
| type: object | ||
| properties: | ||
| title: | ||
| type: string | ||
| message: | ||
| type: string | ||
|
|
||
| EngineComponentResource: | ||
| type: string | ||
| enum: | ||
| - entity_engine | ||
| - entity_definition | ||
| - index | ||
| - component_template | ||
| - index_template | ||
| - ingest_pipeline | ||
| - enrich_policy | ||
| - task | ||
| - transform | ||
|
|
||
| StoreStatus: | ||
| type: string | ||
| enum: | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.