-
Notifications
You must be signed in to change notification settings - Fork 967
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into 3962-audit-navigation-plugin
Signed-off-by: Manasvini B Suryanarayana <manasvis@amazon.com>
- Loading branch information
Showing
265 changed files
with
7,024 additions
and
11,599 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
@@ -1 +1 @@ | ||
* @ananzh @kavilla @seanneumann @AMoo-Miki @ashwin-pc @joshuarrrr @abbyhu2000 @zengyan-amazon @kristenTian @zhongnansu @manasvinibs | ||
* @ananzh @kavilla @seanneumann @AMoo-Miki @ashwin-pc @joshuarrrr @abbyhu2000 @zengyan-amazon @kristenTian @zhongnansu @manasvinibs @ZilongX @Flyingliuhub |
This file contains 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 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 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 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 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 |
---|---|---|
@@ -1 +1 @@ | ||
14.21.3 | ||
18.16.0 |
This file contains 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 |
---|---|---|
@@ -1 +1 @@ | ||
14.21.3 | ||
18.16.0 |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
ARG NODE_VERSION=14.20.1 | ||
ARG NODE_VERSION=18.16.0 | ||
FROM node:${NODE_VERSION} AS base | ||
|
||
ENV HOME '.' | ||
|
This file contains 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 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 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 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 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 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions
19
docs/saved_objects/resources/current_saved_object_service_workflow.puml
This file contains 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,19 @@ | ||
@startuml | ||
title: Current Saved Object Service Flow | ||
actor User | ||
participant "Saved Object Client" as Client | ||
participant "Saved Object Repository" as Repo | ||
participant "Opensearch" as OS | ||
|
||
User -> Client: Create Saved Object | ||
Client -> Repo: Create Saved Object | ||
Repo -> OS: Index Saved Object | ||
OS --> Repo: Saved Object Saved | ||
Client -> User: Saved Object Created | ||
User -> Client: Get Saved Object | ||
Client -> Repo: Get Saved Object | ||
Repo -> OS: Get Saved Object | ||
OS --> Repo: Return Saved Object | ||
Repo -> Client: Return Saved Object | ||
Client -> User: Saved Object Data | ||
@enduml |
38 changes: 38 additions & 0 deletions
38
docs/saved_objects/resources/proposed_saved_object_service_workflow.puml
This file contains 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,38 @@ | ||
@startuml | ||
|
||
title: Proposed Saved Object Service Flow | ||
|
||
actor User | ||
|
||
participant "OpenSearch-Dashboards" as OSD | ||
|
||
box "Saved Object Service" #LightBlue | ||
participant "Saved Object Client" as Client | ||
participant "Repository Factory Provider" as Factory | ||
end box | ||
|
||
box "Dashboards Storage Plugin" #LightYellow | ||
participant "Repository\n(e.g. PostgresRepository,\nDynamoDBRepository)" as Repo | ||
participant "Metadata Storage\n(e.g. Postgres, \nDynamoDB etc)" as Meta | ||
end box | ||
|
||
autonumber | ||
group OSD Bootstrap | ||
Repo -> Factory: Register custom repository | ||
Factory -> Client: Returns repository | ||
Client -> OSD: Returns Saved Object Client | ||
end group | ||
User -> Client: Create Saved Object | ||
Client -> Repo: Create Saved Object | ||
Repo -> Meta: Create/Update Record | ||
Meta --> Repo: Saved Object Saved | ||
Client -> User: Saved Object Created | ||
User -> Client: Get Saved Object | ||
Client -> Repo: Get Saved Object | ||
Repo -> Meta: Fetch Saved Object from storage | ||
Meta --> Repo: Return Saved Object | ||
Repo -> Client: Return Saved Object | ||
Client -> User: Saved Object Data | ||
|
||
skinparam BoxPadding 15 | ||
@enduml |
Oops, something went wrong.