-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
[Inventory] Project restructure to show entities grid #192991
[Inventory] Project restructure to show entities grid #192991
Conversation
🤖 GitHub commentsExpand to view the GitHub comments
Just comment with:
|
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.
Left a couple of non blocking comments!
export const listEntityTypesRoute = createInventoryServerRoute({ | ||
endpoint: 'GET /internal/inventory/entity_types', | ||
export const listLatestEntitiesRoute = createInventoryServerRoute({ | ||
endpoint: 'GET /internal/inventory/entities', |
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.
Should we try to get rid off the /internal/
path on new stuff?
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.
According to the API guidelines, if this is intended to be an internal API, we should keep it.
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.
Why?
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.
Oh, sorry! I got confused by this documentation about doing some changes in internal API access and may have misunderstood something.
x-pack/plugins/observability_solution/inventory/public/components/entities_grid/index.tsx
Show resolved
Hide resolved
💛 Build succeeded, but was flaky
Failed CI StepsMetrics [docs]Module Count
Async chunks
History
To update your PR or re-run it, just comment with: |
Inventory plugin restructure. Creating server API to fetch entities and initial data grid load on the page. (cherry picked from commit 15c752c)
💚 All backports created successfully
Note: Successful backport PRs will be merged automatically after passing CI. Questions ?Please refer to the Backport tool documentation |
…#193139) # Backport This will backport the following commits from `main` to `8.x`: - [[Inventory] Project restructure to show entities grid (#192991)](#192991) <!--- Backport version: 9.4.3 --> ### Questions ? Please refer to the [Backport tool documentation](https://github.com/sqren/backport) <!--BACKPORT [{"author":{"name":"Cauê Marcondes","email":"[email protected]"},"sourceCommit":{"committedDate":"2024-09-17T10:38:01Z","message":"[Inventory] Project restructure to show entities grid (#192991)\n\nInventory plugin restructure. Creating server API to fetch entities and\r\ninitial data grid load on the page.","sha":"15c752cdc86c1ca5f7d0c30b3305e477cb14e669","branchLabelMapping":{"^v9.0.0$":"main","^v8.16.0$":"8.x","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["release_note:skip","v9.0.0","ci:project-deploy-observability","v8.16.0"],"title":"[Inventory] Project restructure to show entities grid","number":192991,"url":"https://github.com/elastic/kibana/pull/192991","mergeCommit":{"message":"[Inventory] Project restructure to show entities grid (#192991)\n\nInventory plugin restructure. Creating server API to fetch entities and\r\ninitial data grid load on the page.","sha":"15c752cdc86c1ca5f7d0c30b3305e477cb14e669"}},"sourceBranch":"main","suggestedTargetBranches":["8.x"],"targetPullRequestStates":[{"branch":"main","label":"v9.0.0","branchLabelMappingKey":"^v9.0.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/192991","number":192991,"mergeCommit":{"message":"[Inventory] Project restructure to show entities grid (#192991)\n\nInventory plugin restructure. Creating server API to fetch entities and\r\ninitial data grid load on the page.","sha":"15c752cdc86c1ca5f7d0c30b3305e477cb14e669"}},{"branch":"8.x","label":"v8.16.0","branchLabelMappingKey":"^v8.16.0$","isSourceBranch":false,"state":"NOT_CREATED"}]}] BACKPORT--> Co-authored-by: Cauê Marcondes <[email protected]>
Inventory plugin restructure. Creating server API to fetch entities and initial data grid load on the page.