Saved objects management
Provides a UI (via the management plugin) to find and manage all saved objects in one place (you can see the primary page by navigating to /app/management/opensearch-dashboards/objects). Not to be confused with the savedObjects plugin, which provides all the core capabilities of saved objects.
From the primary UI page, this plugin allows you to: 1. Search/view/delete saved objects and their relationships 2. Import/export saved objects 3. Inspect/edit raw saved object values without validation
For 3., this plugin can also be used to provide a route/page for editing, such as /app/management/opensearch-dashboards/objects/savedVisualizations/{visualizationId}, although plugins are also free to provide or host alternate routes for this purpose (see index patterns, for instance, which provide their own integration and UI via the management plugin directly).
Making a new saved object type manageable
- Create a new
SavedObjectsTypeor add themanagementproperty to an existing one. (SeeSavedObjectsTypeManagementDefinitionfor explanation of its properties) - Register saved object type via
core.savedObjects.registerType(...)as part of plugin server setup method - Implement a way to save the object (e.g. via
savedObjectsClient.create(...)or asavedObjectLoader) - After these steps, you should be able to save objects and view/search for them in Saved Objects management (
/app/management/opensearch-dashboards/objects)
Enabling edit links from saved objects management
- Make sure
management.getInAppUrlmethod of theSavedObjectsTypeis defined with apath(which will specify the link target) and theuiCapabilitiesPath - For
uiCapabilitiesPathto work without additional hardcoding, it should be in the format{plugin}.show, so that the default logic ofsrc/plugins/saved_objects_management/public/lib/in_app_url.tswill correctly match. Otherwise, you'll need to add a case for youruiCapabilitiespath to that function - Create default plugin capabilities provider
- Register plugin capabilities via
core.capabilities.registerProvider(...);as part of plugin server setup method
Using saved objects management to inspect/edit new plugin objects
You'll notice that when clicking on the "Inspect" button from the saved objects management table, you'll usually be routed to something like /app/management/opensearch-dashboards/objects/savedVisualizations/ (where the route itself is determined by the management.getEditUrl method of the SavedObjectsType). But to register a similar route for a new saved object type, you'll need to create a new savedObjectLoader and register it with the management plugin.
Creating savedObjectLoader
- In your plugin's public directory, create a class for your saved object that extends
SavedObjectClass. The mapping should match themappingsdefined in yourSavedObjectsType. - Create a
savedObjectLoadercreation function that returns anew SavedObjectLoader(YourSavedObjectClass, savedObjectsClient) - Return that
savedObjectLoaderas part of your public pluginstartmethod
Registering
Ideally, we'd allow plugins to self-register their savedObjectLoader and (declare a dependency on this plugin). However, as currently implemented, any plugins that want this plugin to handle their inspect routes need to be added as optional dependencies and registered here.
- Add your plugin to the
optionalPluginsarray in./opensearch_dashboards.json - Update the
StartDependenciesinterface of this plugin to include the public plugin start type - Update
registerServicesto register a new type ofSavedObjectLoader, whereidwill be the route,titlewill likely match your saved object type, andserviceis yourSavedObjectLoaderthat is defined in your plugin start.