From 0c9a85feb24de1be0bf0a06b58bcac441312101d Mon Sep 17 00:00:00 2001 From: Mandy Chessell Date: Mon, 11 Mar 2024 17:22:42 +0000 Subject: [PATCH] Change event action service to context event service Signed-off-by: Mandy Chessell --- .../api/ToDoManagementInterface.java | 16 +-- .../client/ToDoActionManagement.java | 34 ++--- .../EngineServiceDescription.java | 24 ++-- .../server/OMAGServerAdminServices.java | 2 +- .../frameworks/README.md | 2 +- .../README.md | 6 +- .../mapper/OpenMetadataType.java | 22 ++-- .../refdata/DeployedImplementationType.java | 28 ++-- .../Egeria-automated-curation-omvs.http | 2 +- .../myprofile/rest/ToDoRequestBody.java | 34 ++--- .../server/MyProfileRESTServices.java | 38 +++--- .../server/spring/MyProfileResource.java | 20 +-- .../opentypes/OpenMetadataTypesArchive.java | 30 ++--- .../OpenMetadataTypesArchive1_2.java | 16 +-- .../OpenMetadataTypesArchive3_13.java | 24 ++-- .../sample-configs/BuildSampleConfigs.http | 123 ++++++++++++++++++ .../config/active-metadata-store.config | 2 +- .../engine-host/config/engine-host.config | 2 +- .../config/integration-daemon.config | 2 +- .../config/simple-metadata-store.config | 2 +- .../view-server/config/view-server.config | 2 +- 21 files changed, 276 insertions(+), 155 deletions(-) rename open-metadata-implementation/frameworks/{event-action-framework => context-event-framework}/README.md (84%) diff --git a/open-metadata-implementation/access-services/community-profile/community-profile-api/src/main/java/org/odpi/openmetadata/accessservices/communityprofile/api/ToDoManagementInterface.java b/open-metadata-implementation/access-services/community-profile/community-profile-api/src/main/java/org/odpi/openmetadata/accessservices/communityprofile/api/ToDoManagementInterface.java index b74c1ff7bf4..660ff3b5ef5 100644 --- a/open-metadata-implementation/access-services/community-profile/community-profile-api/src/main/java/org/odpi/openmetadata/accessservices/communityprofile/api/ToDoManagementInterface.java +++ b/open-metadata-implementation/access-services/community-profile/community-profile-api/src/main/java/org/odpi/openmetadata/accessservices/communityprofile/api/ToDoManagementInterface.java @@ -160,7 +160,7 @@ List getActionsForActionTarget(String userId, UserNotAuthorizedException; /** - * Retrieve the "To Dos" that are chained off of an owner element. + * Retrieve the "To Dos" that are chained off of a sponsor's element. * * @param userId calling user * @param elementGUID unique identifier of the element to start with @@ -174,13 +174,13 @@ List getActionsForActionTarget(String userId, * @throws PropertyServerException the server is not available * @throws UserNotAuthorizedException the calling user is not authorized to issue the call */ - List getActionsForOwner(String userId, - String elementGUID, - ToDoStatus toDoStatus, - int startFrom, - int pageSize) throws InvalidParameterException, - PropertyServerException, - UserNotAuthorizedException; + List getActionsForSponsor(String userId, + String elementGUID, + ToDoStatus toDoStatus, + int startFrom, + int pageSize) throws InvalidParameterException, + PropertyServerException, + UserNotAuthorizedException; /** diff --git a/open-metadata-implementation/access-services/community-profile/community-profile-client/src/main/java/org/odpi/openmetadata/accessservices/communityprofile/client/ToDoActionManagement.java b/open-metadata-implementation/access-services/community-profile/community-profile-client/src/main/java/org/odpi/openmetadata/accessservices/communityprofile/client/ToDoActionManagement.java index a5b332d6943..527db8aba79 100644 --- a/open-metadata-implementation/access-services/community-profile/community-profile-client/src/main/java/org/odpi/openmetadata/accessservices/communityprofile/client/ToDoActionManagement.java +++ b/open-metadata-implementation/access-services/community-profile/community-profile-client/src/main/java/org/odpi/openmetadata/accessservices/communityprofile/client/ToDoActionManagement.java @@ -203,7 +203,7 @@ public String createToDo(String userId, openMetadataStoreClient.createRelatedElementsInStore(userId, null, null, - OpenMetadataType.ACTIONS_RELATIONSHIP_TYPE_NAME, + OpenMetadataType.ACTION_SPONSOR_RELATIONSHIP_TYPE_NAME, actionOwnerGUID, toDoGUID, false, @@ -496,7 +496,7 @@ public List getActionsForActionTarget(String userId, /** - * Retrieve the "To Dos" that are chained off of an owner element. + * Retrieve the "To Dos" that are chained off of a sponsor's element. * * @param userId calling user * @param elementGUID unique identifier of the element to start with @@ -511,15 +511,15 @@ public List getActionsForActionTarget(String userId, * @throws UserNotAuthorizedException the calling user is not authorized to issue the call */ @Override - public List getActionsForOwner(String userId, - String elementGUID, - ToDoStatus toDoStatus, - int startFrom, - int pageSize) throws InvalidParameterException, - PropertyServerException, - UserNotAuthorizedException + public List getActionsForSponsor(String userId, + String elementGUID, + ToDoStatus toDoStatus, + int startFrom, + int pageSize) throws InvalidParameterException, + PropertyServerException, + UserNotAuthorizedException { - final String methodName = "getActionsForOwner"; + final String methodName = "getActionsForSponsor"; final String guidParameterName = "elementGUID"; invalidParameterHandler.validateUserId(userId, methodName); @@ -528,7 +528,7 @@ public List getActionsForOwner(String userId, List relatedMetadataElements = openMetadataStoreClient.getRelatedMetadataElements(userId, elementGUID, 1, - OpenMetadataType.ACTIONS_RELATIONSHIP_TYPE_NAME, + OpenMetadataType.ACTION_SPONSOR_RELATIONSHIP_TYPE_NAME, false, false, new Date(), @@ -594,13 +594,13 @@ public List getAssignedActions(String userId, * @throws UserNotAuthorizedException the calling user is not authorized to issue the call */ @Override - public List findToDos(String userId, - String searchString, + public List findToDos(String userId, + String searchString, ToDoStatus toDoStatus, - int startFrom, - int pageSize) throws InvalidParameterException, - PropertyServerException, - UserNotAuthorizedException + int startFrom, + int pageSize) throws InvalidParameterException, + PropertyServerException, + UserNotAuthorizedException { final String methodName = "findToDos"; final String searchStringParameterName = "searchString"; diff --git a/open-metadata-implementation/admin-services/admin-services-api/src/main/java/org/odpi/openmetadata/adminservices/configuration/registration/EngineServiceDescription.java b/open-metadata-implementation/admin-services/admin-services-api/src/main/java/org/odpi/openmetadata/adminservices/configuration/registration/EngineServiceDescription.java index 1c3f6523616..a72bcfc1a81 100644 --- a/open-metadata-implementation/admin-services/admin-services-api/src/main/java/org/odpi/openmetadata/adminservices/configuration/registration/EngineServiceDescription.java +++ b/open-metadata-implementation/admin-services/admin-services-api/src/main/java/org/odpi/openmetadata/adminservices/configuration/registration/EngineServiceDescription.java @@ -68,18 +68,18 @@ public enum EngineServiceDescription /** * Executes requested event action services to monitor, assess and maintain context events. */ - EVENT_ACTION_OMES(403, - ComponentDevelopmentStatus.IN_DEVELOPMENT, - "Event Action", - "Event Action OMES", - "event-action", - "Executes requested event action services to monitor, assess and maintain context events.", - "https://egeria-project.org/services/omes/event-action/overview/", - AccessServiceDescription.GOVERNANCE_ENGINE_OMAS.getAccessServiceFullName(), - DeployedImplementationType.EVENT_ACTION_ENGINE.getAssociatedTypeName(), - DeployedImplementationType.EVENT_ACTION_SERVICE_CONNECTOR.getAssociatedTypeName(), - DeployedImplementationType.EVENT_ACTION_ENGINE.getDeployedImplementationType(), - DeployedImplementationType.EVENT_ACTION_SERVICE_CONNECTOR.getDeployedImplementationType()), + CONTEXT_EVENT_OMES(403, + ComponentDevelopmentStatus.IN_DEVELOPMENT, + "Context Event", + "Context Event OMES", + "context-event", + "Executes requested context event services to monitor, assess and maintain context events.", + "https://egeria-project.org/services/omes/context-event/overview/", + AccessServiceDescription.GOVERNANCE_ENGINE_OMAS.getAccessServiceFullName(), + DeployedImplementationType.CONTEXT_EVENT_ENGINE.getAssociatedTypeName(), + DeployedImplementationType.CONTEXT_EVENT_SERVICE_CONNECTOR.getAssociatedTypeName(), + DeployedImplementationType.CONTEXT_EVENT_ENGINE.getDeployedImplementationType(), + DeployedImplementationType.CONTEXT_EVENT_SERVICE_CONNECTOR.getDeployedImplementationType()), /** diff --git a/open-metadata-implementation/admin-services/admin-services-server/src/main/java/org/odpi/openmetadata/adminservices/server/OMAGServerAdminServices.java b/open-metadata-implementation/admin-services/admin-services-server/src/main/java/org/odpi/openmetadata/adminservices/server/OMAGServerAdminServices.java index 1c8fe4c0ccc..e13864a8f5c 100644 --- a/open-metadata-implementation/admin-services/admin-services-server/src/main/java/org/odpi/openmetadata/adminservices/server/OMAGServerAdminServices.java +++ b/open-metadata-implementation/admin-services/admin-services-server/src/main/java/org/odpi/openmetadata/adminservices/server/OMAGServerAdminServices.java @@ -339,7 +339,7 @@ private void setServerDescription(OMAGServerConfig serverConfig, configAuditTrail = new ArrayList<>(); } - if (description != null && (description.length() == 0)) + if ((description != null) && (description.isEmpty())) { description = null; } diff --git a/open-metadata-implementation/frameworks/README.md b/open-metadata-implementation/frameworks/README.md index 123ba8dec81..fe79c75f1e9 100644 --- a/open-metadata-implementation/frameworks/README.md +++ b/open-metadata-implementation/frameworks/README.md @@ -34,7 +34,7 @@ about the data that can be stored in an open metadata repository. (called survey action services) that survey and extract characteristics about the real-world resources and stores them in an open metadata repository. -* **[Event Action Framework (EAF)](event-action-framework)** provides the interfaces and base implementations for components +* **[Event Action Framework (EAF)](context-event-framework)** provides the interfaces and base implementations for components (called event action services) that manage context events and time-based services. diff --git a/open-metadata-implementation/frameworks/event-action-framework/README.md b/open-metadata-implementation/frameworks/context-event-framework/README.md similarity index 84% rename from open-metadata-implementation/frameworks/event-action-framework/README.md rename to open-metadata-implementation/frameworks/context-event-framework/README.md index 72218eaa5c5..f0284e02f59 100644 --- a/open-metadata-implementation/frameworks/event-action-framework/README.md +++ b/open-metadata-implementation/frameworks/context-event-framework/README.md @@ -3,9 +3,9 @@ ![InDevelopment](../../../images/egeria-content-status-in-development.png#pagewidth) -# Event Action Framework (EAF) +# Context Event Framework (EAF) -The Event Action Framework (EAF) enables the creation of governance services that manage events. +The Context Event Framework (CEF) enables the creation of governance services that manage significant events. These events may be instantaneous, or cover an extended time period. An event may be in the past, occurring now, or is something in the future that is being planned for. Events are described in open metadata using [context events](https://egeria-project.org/concepts/context-event). The context event provides an anchor point for information and activity around the event. Services that use the event action framework are: @@ -15,7 +15,7 @@ Events are described in open metadata using [context events](https://egeria-proj * Sending and receiving notifications related to an event. * Initiating other actions at specific moments in time that related to the event. -More information is available on Egeria's [documentation site](https://egeria-project.org/frameworks/eaf/overview/). +More information is available on Egeria's [documentation site](https://egeria-project.org/frameworks/cef/overview/). ---- diff --git a/open-metadata-implementation/frameworks/governance-action-framework/src/main/java/org/odpi/openmetadata/frameworks/governanceaction/mapper/OpenMetadataType.java b/open-metadata-implementation/frameworks/governance-action-framework/src/main/java/org/odpi/openmetadata/frameworks/governanceaction/mapper/OpenMetadataType.java index d623d504690..add112798ca 100644 --- a/open-metadata-implementation/frameworks/governance-action-framework/src/main/java/org/odpi/openmetadata/frameworks/governanceaction/mapper/OpenMetadataType.java +++ b/open-metadata-implementation/frameworks/governance-action-framework/src/main/java/org/odpi/openmetadata/frameworks/governanceaction/mapper/OpenMetadataType.java @@ -318,20 +318,20 @@ public enum OpenMetadataType /** * A governance engine for managing context events and associated actions. */ - EVENT_ACTION_ENGINE("796f6493-3c3e-4091-8b21-46ea4e54d011", - "EventActionEngine", - OpenMetadataWikiPages.MODEL_0461_GOVERNANCE_ENGINES, - "cebad26a-08f6-40b7-a0e0-4f9b1b439992", - "A governance engine for managing context events and associated actions."), + CONTEXT_EVENT_ENGINE("796f6493-3c3e-4091-8b21-46ea4e54d011", + "ContextEventEngine", + OpenMetadataWikiPages.MODEL_0461_GOVERNANCE_ENGINES, + "cebad26a-08f6-40b7-a0e0-4f9b1b439992", + "A governance engine for managing context events and associated actions."), /** * A governance service for managing context events and associated actions. */ - EVENT_ACTION_SERVICE("464bb4d8-f865-4b9d-a06e-7ed19518ff13", - "EventActionService", - OpenMetadataWikiPages.MODEL_0461_GOVERNANCE_ENGINES, - "6e030483-39ff-4b1b-bd50-1faa64e44690", - "A governance service for managing context events and associated actions."), + CONTEXT_EVENT_SERVICE("464bb4d8-f865-4b9d-a06e-7ed19518ff13", + "ContextEventService", + OpenMetadataWikiPages.MODEL_0461_GOVERNANCE_ENGINES, + "6e030483-39ff-4b1b-bd50-1faa64e44690", + "A governance service for managing context events and associated actions."), /** * A governance engine for managing the surveying of real-world resources and capturing the results in survey report attached to the associated asset. @@ -2119,7 +2119,7 @@ public enum OpenMetadataType /** * Actions - End1 = originator - Referenceable; End 2 = To Do */ - public static final String ACTIONS_RELATIONSHIP_TYPE_NAME = "Actions"; /* from Area 1 */ + public static final String ACTION_SPONSOR_RELATIONSHIP_TYPE_NAME = "ActionSponsor"; /* from Area 1 */ /** * 207e2594-e3e4-4be8-a12c-4c401656e241 diff --git a/open-metadata-implementation/frameworks/governance-action-framework/src/main/java/org/odpi/openmetadata/frameworks/governanceaction/refdata/DeployedImplementationType.java b/open-metadata-implementation/frameworks/governance-action-framework/src/main/java/org/odpi/openmetadata/frameworks/governanceaction/refdata/DeployedImplementationType.java index 0951fb113f2..0de20df7027 100644 --- a/open-metadata-implementation/frameworks/governance-action-framework/src/main/java/org/odpi/openmetadata/frameworks/governanceaction/refdata/DeployedImplementationType.java +++ b/open-metadata-implementation/frameworks/governance-action-framework/src/main/java/org/odpi/openmetadata/frameworks/governanceaction/refdata/DeployedImplementationType.java @@ -351,25 +351,25 @@ public enum DeployedImplementationType /** - * Event Action Service - A connector that coordinates governance of context events. + * Context Event Service - A connector that coordinates governance of context events. */ - EVENT_ACTION_SERVICE_CONNECTOR("Event Action Service", - DeployedImplementationType.GOVERNANCE_SERVICE, - OpenMetadataType.EVENT_ACTION_SERVICE.typeName, - null, - "A connector that coordinates governance of context events.", - "https://egeria-project.org/concepts/event-action-service/"), + CONTEXT_EVENT_SERVICE_CONNECTOR("Context Event Service", + DeployedImplementationType.GOVERNANCE_SERVICE, + OpenMetadataType.CONTEXT_EVENT_SERVICE.typeName, + null, + "A connector that coordinates governance of context events.", + "https://egeria-project.org/concepts/context-event-service/"), /** - * Event Action Engine - A governance engine that runs event action services. + * Context Event Engine - A governance engine that runs context event services. */ - EVENT_ACTION_ENGINE("Event Action Engine", - DeployedImplementationType.GOVERNANCE_ENGINE, - OpenMetadataType.EVENT_ACTION_ENGINE.typeName, - null, - "A governance engine that runs event action services.", - "https://egeria-project.org/concepts/event-action-engine/"), + CONTEXT_EVENT_ENGINE("Context Event Engine", + DeployedImplementationType.GOVERNANCE_ENGINE, + OpenMetadataType.CONTEXT_EVENT_ENGINE.typeName, + null, + "A governance engine that runs context event services.", + "https://egeria-project.org/concepts/context-event-engine/"), /** * Event Action Service - A connector that coordinates asset surveys. diff --git a/open-metadata-implementation/view-services/automated-curation/Egeria-automated-curation-omvs.http b/open-metadata-implementation/view-services/automated-curation/Egeria-automated-curation-omvs.http index 9bdf6da2c6a..47e2f693c88 100644 --- a/open-metadata-implementation/view-services/automated-curation/Egeria-automated-curation-omvs.http +++ b/open-metadata-implementation/view-services/automated-curation/Egeria-automated-curation-omvs.http @@ -490,7 +490,7 @@ Content-Type: application/json { "class" : "InitiateGovernanceActionTypeRequestBody", - "governanceActionTypeQualifiedName": "Egeria:GovernanceActionProcessStep:2adeb8f1-0f59-4970-b6f2-6cc25d4d2402survey-folder", + "governanceActionTypeQualifiedName": "Egeria:GovernanceActionType:2adeb8f1-0f59-4970-b6f2-6cc25d4d2402survey-folder", "actionTargets": [ { "class" : "NewActionTarget", diff --git a/open-metadata-implementation/view-services/my-profile/my-profile-server/src/main/java/org/odpi/openmetadata/viewservices/myprofile/rest/ToDoRequestBody.java b/open-metadata-implementation/view-services/my-profile/my-profile-server/src/main/java/org/odpi/openmetadata/viewservices/myprofile/rest/ToDoRequestBody.java index 06eca723567..1dfa53a0b90 100644 --- a/open-metadata-implementation/view-services/my-profile/my-profile-server/src/main/java/org/odpi/openmetadata/viewservices/myprofile/rest/ToDoRequestBody.java +++ b/open-metadata-implementation/view-services/my-profile/my-profile-server/src/main/java/org/odpi/openmetadata/viewservices/myprofile/rest/ToDoRequestBody.java @@ -25,10 +25,10 @@ public class ToDoRequestBody extends CommunityProfileOMASAPIRequestBody { private List newActionTargetProperties = null; - private ToDoProperties properties = null; - private String originatorGUID = null; - private String actionOwnerGUID = null; - private String assignToActorGUID = null; + private ToDoProperties properties = null; + private String originatorGUID = null; + private String actionSponsorGUID = null; + private String assignToActorGUID = null; /** * Default constructor */ @@ -51,9 +51,9 @@ public ToDoRequestBody(ToDoRequestBody template) { this.newActionTargetProperties = template.getNewActionTargetProperties(); this.properties = template.getProperties(); - this.originatorGUID = template.getOriginatorGUID(); - this.actionOwnerGUID = template.getActionOwnerGUID(); - this.assignToActorGUID = template.getAssignToActorGUID(); + this.originatorGUID = template.getOriginatorGUID(); + this.actionSponsorGUID = template.getActionSponsorGUID(); + this.assignToActorGUID = template.getAssignToActorGUID(); } } @@ -125,24 +125,24 @@ public void setOriginatorGUID(String originatorGUID) /** - * Return the unique identifier of the owner of the To Do. + * Return the unique identifier of the sponsor of the To Do. * * @return guid */ - public String getActionOwnerGUID() + public String getActionSponsorGUID() { - return actionOwnerGUID; + return actionSponsorGUID; } /** - * Set up the unique identifier of the owner of the To Do. + * Set up the unique identifier of the sponsor of the To Do. * - * @param actionOwnerGUID guid + * @param actionSponsorGUID guid */ - public void setActionOwnerGUID(String actionOwnerGUID) + public void setActionSponsorGUID(String actionSponsorGUID) { - this.actionOwnerGUID = actionOwnerGUID; + this.actionSponsorGUID = actionSponsorGUID; } @@ -181,7 +181,7 @@ public String toString() "newActionTargetProperties=" + newActionTargetProperties + ", properties=" + properties + ", originatorGUID='" + originatorGUID + '\'' + - ", actionOwnerGUID='" + actionOwnerGUID + '\'' + + ", actionSponsorGUID='" + actionSponsorGUID + '\'' + ", assignToActorGUID='" + assignToActorGUID + '\'' + "} " + super.toString(); } @@ -209,7 +209,7 @@ public boolean equals(Object objectToCompare) return Objects.equals(newActionTargetProperties, that.newActionTargetProperties) && Objects.equals(properties, that.properties) && Objects.equals(originatorGUID, that.originatorGUID) && - Objects.equals(actionOwnerGUID, that.actionOwnerGUID) && + Objects.equals(actionSponsorGUID, that.actionSponsorGUID) && Objects.equals(assignToActorGUID, that.assignToActorGUID); } @@ -222,6 +222,6 @@ public boolean equals(Object objectToCompare) @Override public int hashCode() { - return Objects.hash(newActionTargetProperties, properties, originatorGUID, actionOwnerGUID, assignToActorGUID); + return Objects.hash(newActionTargetProperties, properties, originatorGUID, actionSponsorGUID, assignToActorGUID); } } diff --git a/open-metadata-implementation/view-services/my-profile/my-profile-server/src/main/java/org/odpi/openmetadata/viewservices/myprofile/server/MyProfileRESTServices.java b/open-metadata-implementation/view-services/my-profile/my-profile-server/src/main/java/org/odpi/openmetadata/viewservices/myprofile/server/MyProfileRESTServices.java index ec712a2a10c..5a3bb045b0f 100644 --- a/open-metadata-implementation/view-services/my-profile/my-profile-server/src/main/java/org/odpi/openmetadata/viewservices/myprofile/server/MyProfileRESTServices.java +++ b/open-metadata-implementation/view-services/my-profile/my-profile-server/src/main/java/org/odpi/openmetadata/viewservices/myprofile/server/MyProfileRESTServices.java @@ -7,8 +7,6 @@ import org.odpi.openmetadata.accessservices.communityprofile.client.ToDoActionManagement; import org.odpi.openmetadata.accessservices.communityprofile.metadataelements.ActorProfileElement; import org.odpi.openmetadata.accessservices.communityprofile.metadataelements.PersonRoleElement; -import org.odpi.openmetadata.accessservices.communityprofile.metadataelements.PersonalRoleElement; -import org.odpi.openmetadata.accessservices.communityprofile.metadataelements.ToDoElement; import org.odpi.openmetadata.accessservices.communityprofile.properties.*; import org.odpi.openmetadata.commonservices.ffdc.RESTCallLogger; import org.odpi.openmetadata.commonservices.ffdc.RESTCallToken; @@ -182,7 +180,7 @@ public GUIDResponse createToDo(String serverName, { response.setGUID(handler.createToDo(userId, requestBody.getOriginatorGUID(), - requestBody.getActionOwnerGUID(), + requestBody.getActionSponsorGUID(), requestBody.getAssignToActorGUID(), requestBody.getNewActionTargetProperties(), requestBody.getProperties())); @@ -499,7 +497,7 @@ public ToDoListResponse getActionsForActionTarget(String serverNa /** - * Retrieve the "To Dos" that are chained off of an owner element. + * Retrieve the "To Dos" that are chained off of a sponsoring element. * * @param serverName name of the server instances for this request * @param elementGUID unique identifier of the element to start with @@ -512,13 +510,13 @@ public ToDoListResponse getActionsForActionTarget(String serverNa * PropertyServerException the server is not available * UserNotAuthorizedException the calling user is not authorized to issue the call */ - public ToDoListResponse getActionsForOwner(String serverName, - String elementGUID, - int startFrom, - int pageSize, - ToDoStatusRequestBody requestBody) + public ToDoListResponse getActionsForSponsor(String serverName, + String elementGUID, + int startFrom, + int pageSize, + ToDoStatusRequestBody requestBody) { - final String methodName = "getActionsForOwner"; + final String methodName = "getActionsForSponsor"; RESTCallToken token = restCallLogger.logRESTCall(serverName, methodName); @@ -536,19 +534,19 @@ public ToDoListResponse getActionsForOwner(String serverName, if (requestBody != null) { - response.setToDoElements(handler.getActionsForOwner(userId, - elementGUID, - requestBody.getStatus(), - startFrom, - pageSize)); + response.setToDoElements(handler.getActionsForSponsor(userId, + elementGUID, + requestBody.getStatus(), + startFrom, + pageSize)); } else { - response.setToDoElements(handler.getActionsForOwner(userId, - elementGUID, - null, - startFrom, - pageSize)); + response.setToDoElements(handler.getActionsForSponsor(userId, + elementGUID, + null, + startFrom, + pageSize)); } } catch (Exception error) diff --git a/open-metadata-implementation/view-services/my-profile/my-profile-spring/src/main/java/org/odpi/openmetadata/viewservices/myprofile/server/spring/MyProfileResource.java b/open-metadata-implementation/view-services/my-profile/my-profile-spring/src/main/java/org/odpi/openmetadata/viewservices/myprofile/server/spring/MyProfileResource.java index bf231ffac5a..953b73a45e9 100644 --- a/open-metadata-implementation/view-services/my-profile/my-profile-spring/src/main/java/org/odpi/openmetadata/viewservices/myprofile/server/spring/MyProfileResource.java +++ b/open-metadata-implementation/view-services/my-profile/my-profile-spring/src/main/java/org/odpi/openmetadata/viewservices/myprofile/server/spring/MyProfileResource.java @@ -260,7 +260,7 @@ public ToDoListResponse getActionsForActionTarget(@PathVariable String /** - * Retrieve the "To Dos" that are chained off of an owner element. + * Retrieve the "To Dos" that are chained off of a sponsor's element. * * @param serverName name of the server instances for this request * @param elementGUID unique identifier of the element to start with @@ -273,21 +273,21 @@ public ToDoListResponse getActionsForActionTarget(@PathVariable String * PropertyServerException the server is not available * UserNotAuthorizedException the calling user is not authorized to issue the call */ - @PostMapping(path = "/elements/{elementGUID}/ownership/to-dos") + @PostMapping(path = "/elements/{elementGUID}/sponsored/to-dos") - @Operation(summary="getActionsForOwner", - description="Retrieve the to dos that are chained off of an owner element.", + @Operation(summary="getActionsForSponsor", + description="Retrieve the to dos that are chained off of a sponsor's element.", externalDocs=@ExternalDocumentation(description="To Dos", url="https://egeria-project.org/concepts/to-do")) - public ToDoListResponse getActionsForOwner(@PathVariable String serverName, - @PathVariable String elementGUID, - @RequestParam int startFrom, - @RequestParam int pageSize, - @RequestBody (required = false) + public ToDoListResponse getActionsForSponsor(@PathVariable String serverName, + @PathVariable String elementGUID, + @RequestParam int startFrom, + @RequestParam int pageSize, + @RequestBody (required = false) ToDoStatusRequestBody requestBody) { - return restAPI.getActionsForOwner(serverName, elementGUID, startFrom, pageSize, requestBody); + return restAPI.getActionsForSponsor(serverName, elementGUID, startFrom, pageSize, requestBody); } diff --git a/open-metadata-resources/open-metadata-archives/open-metadata-types/src/main/java/org/odpi/openmetadata/opentypes/OpenMetadataTypesArchive.java b/open-metadata-resources/open-metadata-archives/open-metadata-types/src/main/java/org/odpi/openmetadata/opentypes/OpenMetadataTypesArchive.java index 3c2e98791ea..80825efbfc9 100644 --- a/open-metadata-resources/open-metadata-archives/open-metadata-types/src/main/java/org/odpi/openmetadata/opentypes/OpenMetadataTypesArchive.java +++ b/open-metadata-resources/open-metadata-archives/open-metadata-types/src/main/java/org/odpi/openmetadata/opentypes/OpenMetadataTypesArchive.java @@ -395,7 +395,7 @@ private TypeDefPatch updateActionsRelationship() /* * Create the Patch */ - final String typeName = OpenMetadataType.ACTIONS_RELATIONSHIP_TYPE_NAME; + final String typeName = OpenMetadataType.ACTION_SPONSOR_RELATIONSHIP_TYPE_NAME; TypeDefPatch typeDefPatch = archiveBuilder.getPatchForType(typeName); @@ -1487,22 +1487,22 @@ private RelationshipDef addTermISATYPEOFRelationship() private void update0461GovernanceEngines() { - this.archiveBuilder.addEntityDef(getEventActionEngineEntity()); - this.archiveBuilder.addEntityDef(getEventActionServiceEntity()); + this.archiveBuilder.addEntityDef(getContextEventEngineEntity()); + this.archiveBuilder.addEntityDef(getContextEventServiceEntity()); this.archiveBuilder.addEntityDef(getSurveyActionEngineEntity()); this.archiveBuilder.addEntityDef(getSurveyActionServiceEntity()); } - private EntityDef getEventActionEngineEntity() + private EntityDef getContextEventEngineEntity() { /* * Build the Entity */ - final String guid = OpenMetadataType.EVENT_ACTION_ENGINE.typeGUID; - final String name = OpenMetadataType.EVENT_ACTION_ENGINE.typeName; - final String description = OpenMetadataType.EVENT_ACTION_ENGINE.description; - final String descriptionGUID = OpenMetadataType.EVENT_ACTION_ENGINE.descriptionGUID; - final String descriptionWiki = OpenMetadataType.EVENT_ACTION_ENGINE.wikiURL; + final String guid = OpenMetadataType.CONTEXT_EVENT_ENGINE.typeGUID; + final String name = OpenMetadataType.CONTEXT_EVENT_ENGINE.typeName; + final String description = OpenMetadataType.CONTEXT_EVENT_ENGINE.description; + final String descriptionGUID = OpenMetadataType.CONTEXT_EVENT_ENGINE.descriptionGUID; + final String descriptionWiki = OpenMetadataType.CONTEXT_EVENT_ENGINE.wikiURL; final String superTypeName = OpenMetadataType.GOVERNANCE_ENGINE.typeName; @@ -1516,16 +1516,16 @@ private EntityDef getEventActionEngineEntity() } - private EntityDef getEventActionServiceEntity() + private EntityDef getContextEventServiceEntity() { /* * Build the Entity */ - final String guid = OpenMetadataType.EVENT_ACTION_SERVICE.typeGUID; - final String name = OpenMetadataType.EVENT_ACTION_SERVICE.typeName; - final String description = OpenMetadataType.EVENT_ACTION_SERVICE.description; - final String descriptionGUID = OpenMetadataType.EVENT_ACTION_SERVICE.descriptionGUID; - final String descriptionWiki = OpenMetadataType.EVENT_ACTION_SERVICE.wikiURL; + final String guid = OpenMetadataType.CONTEXT_EVENT_SERVICE.typeGUID; + final String name = OpenMetadataType.CONTEXT_EVENT_SERVICE.typeName; + final String description = OpenMetadataType.CONTEXT_EVENT_SERVICE.description; + final String descriptionGUID = OpenMetadataType.CONTEXT_EVENT_SERVICE.descriptionGUID; + final String descriptionWiki = OpenMetadataType.CONTEXT_EVENT_SERVICE.wikiURL; final String superTypeName = OpenMetadataType.GOVERNANCE_SERVICE.typeName; diff --git a/open-metadata-resources/open-metadata-archives/open-metadata-types/src/main/java/org/odpi/openmetadata/opentypes/OpenMetadataTypesArchive1_2.java b/open-metadata-resources/open-metadata-archives/open-metadata-types/src/main/java/org/odpi/openmetadata/opentypes/OpenMetadataTypesArchive1_2.java index ea73776b591..2bf835f76a4 100644 --- a/open-metadata-resources/open-metadata-archives/open-metadata-types/src/main/java/org/odpi/openmetadata/opentypes/OpenMetadataTypesArchive1_2.java +++ b/open-metadata-resources/open-metadata-archives/open-metadata-types/src/main/java/org/odpi/openmetadata/opentypes/OpenMetadataTypesArchive1_2.java @@ -5813,7 +5813,7 @@ private void add0137Actions() this.archiveBuilder.addEntityDef(getToDoEntity()); this.archiveBuilder.addRelationshipDef(getToDoSourceRelationship()); - this.archiveBuilder.addRelationshipDef(getActionsRelationship()); + this.archiveBuilder.addRelationshipDef(getActionSponsorRelationship()); this.archiveBuilder.addRelationshipDef(getActionAssignment()); } @@ -6025,11 +6025,11 @@ private RelationshipDef getToDoSourceRelationship() } - private RelationshipDef getActionsRelationship() + private RelationshipDef getActionSponsorRelationship() { final String guid = "aca1277b-bf1c-42f5-9b3b-fbc2c9047325"; - final String name = "Actions"; - final String description = "An action to change or support a specific rule, project, deliverable, situation or plan of action."; + final String name = "ActionSponsor"; + final String description = "Identifies the sponsor that requires the action (ToDo) to be completed."; final String descriptionGUID = null; final ClassificationPropagationRule classificationPropagationRule = ClassificationPropagationRule.NONE; @@ -6047,8 +6047,8 @@ private RelationshipDef getActionsRelationship() * Set up end 1. */ final String end1EntityType = OpenMetadataType.REFERENCEABLE.typeName; - final String end1AttributeName = "toDoCause"; - final String end1AttributeDescription = "Rule or meeting that is driving the need for the to do."; + final String end1AttributeName = "toDoSponsor"; + final String end1AttributeDescription = "Element such as person, team, rule, incident, project, that is driving the need for the action."; final String end1AttributeDescriptionGUID = null; final RelationshipEndCardinality end1Cardinality = RelationshipEndCardinality.ANY_NUMBER; @@ -6064,8 +6064,8 @@ private RelationshipDef getActionsRelationship() * Set up end 2. */ final String end2EntityType = "ToDo"; - final String end2AttributeName = "relatedActions"; - final String end2AttributeDescription = "Potentially impacting requests for change."; + final String end2AttributeName = "trackedActions"; + final String end2AttributeDescription = "Actions that need to be completed."; final String end2AttributeDescriptionGUID = null; final RelationshipEndCardinality end2Cardinality = RelationshipEndCardinality.ANY_NUMBER; diff --git a/open-metadata-resources/open-metadata-archives/open-metadata-types/src/main/java/org/odpi/openmetadata/opentypes/OpenMetadataTypesArchive3_13.java b/open-metadata-resources/open-metadata-archives/open-metadata-types/src/main/java/org/odpi/openmetadata/opentypes/OpenMetadataTypesArchive3_13.java index f05816dc4d4..f2179aa6543 100644 --- a/open-metadata-resources/open-metadata-archives/open-metadata-types/src/main/java/org/odpi/openmetadata/opentypes/OpenMetadataTypesArchive3_13.java +++ b/open-metadata-resources/open-metadata-archives/open-metadata-types/src/main/java/org/odpi/openmetadata/opentypes/OpenMetadataTypesArchive3_13.java @@ -437,22 +437,22 @@ private TypeDefPatch updateActionAssignment() typeDefPatch.setUpdateTime(creationDate); /* - * Set up end 2. + * Set up end 1. */ - final String end2EntityType = "Actor"; - final String end2AttributeName = "assignedActor"; - final String end2AttributeDescription = "The person/people assigned to perform the action(s) requested in the to do."; - final String end2AttributeDescriptionGUID = null; - final RelationshipEndCardinality end2Cardinality = RelationshipEndCardinality.ANY_NUMBER; + final String end1EntityType = "Actor"; + final String end1AttributeName = "assignedActor"; + final String end1AttributeDescription = "The person/people assigned to perform the action(s) requested in the to do."; + final String end1AttributeDescriptionGUID = null; + final RelationshipEndCardinality end1Cardinality = RelationshipEndCardinality.ANY_NUMBER; - RelationshipEndDef relationshipEndDef = archiveHelper.getRelationshipEndDef(this.archiveBuilder.getEntityDef(end2EntityType), - end2AttributeName, - end2AttributeDescription, - end2AttributeDescriptionGUID, - end2Cardinality); + RelationshipEndDef relationshipEndDef = archiveHelper.getRelationshipEndDef(this.archiveBuilder.getEntityDef(end1EntityType), + end1AttributeName, + end1AttributeDescription, + end1AttributeDescriptionGUID, + end1Cardinality); - typeDefPatch.setEndDef2(relationshipEndDef); + typeDefPatch.setEndDef1(relationshipEndDef); return typeDefPatch; } diff --git a/open-metadata-resources/open-metadata-deployment/sample-configs/BuildSampleConfigs.http b/open-metadata-resources/open-metadata-deployment/sample-configs/BuildSampleConfigs.http index fa4e74cacbb..7816580c192 100644 --- a/open-metadata-resources/open-metadata-deployment/sample-configs/BuildSampleConfigs.http +++ b/open-metadata-resources/open-metadata-deployment/sample-configs/BuildSampleConfigs.http @@ -4,6 +4,7 @@ # @baseURL=https://localhost:9443 @adminUserId=garygeeke +@auditLogTopic=logging # --------------------------------------------- # Metadata Assess Store: simple-metadata-store @@ -12,6 +13,13 @@ # Set up the user Id that this server should use on open metadata requests when it is processing events (and consequently there is no end user id to use). POST {{baseURL}}/open-metadata/admin-services/users/{{adminUserId}}/servers/simple-metadata-store/server-user-id?id=simplenpa +### +# Set up the description of this server. +POST {{baseURL}}/open-metadata/admin-services/users/{{adminUserId}}/servers/simple-metadata-store/server-description +Content-Type: text/plain + +A metadata store that supports Open Metadata Access Services (OMASs) without event notifications. + ### # Set up the local repository to use the in-memory implementation. POST {{baseURL}}/open-metadata/admin-services/users/{{adminUserId}}/servers/simple-metadata-store/local-repository/mode/in-memory-repository @@ -28,6 +36,13 @@ POST {{baseURL}}/open-metadata/admin-services/users/{{adminUserId}}/servers/simp # Set up the user Id that this server should use on open metadata requests when it is processing events (and consequently there is no end user id to use). POST {{baseURL}}/open-metadata/admin-services/users/{{adminUserId}}/servers/active-metadata-store/server-user-id?id=activenpa +### +# Set up the description of this server. +POST {{baseURL}}/open-metadata/admin-services/users/{{adminUserId}}/servers/active-metadata-store/server-description +Content-Type: text/plain + +A metadata store that supports Open Metadata Access Services (OMASs) with event notifications. It provides metadata to view-server, engine-host and integration-daemon. + ### # Set up the local repository to use the XTDB KV implementation. POST {{baseURL}}/open-metadata/admin-services/users/{{adminUserId}}/servers/active-metadata-store/local-repository/mode/xtdb-local-kv-repository @@ -49,6 +64,7 @@ Content-Type: application/json } } + ### # Set up all of the registered, undeprecated Open Metadata Access Services (OMASs) with kafka notifications enabled. POST {{baseURL}}/open-metadata/admin-services/users/{{adminUserId}}/servers/active-metadata-store/access-services @@ -60,6 +76,14 @@ Content-Type: text/plain content-packs/OpenConnectorsArchive.omarchive +### +# Add topic audit log destination to active-metadata-store server +POST {{baseURL}}/open-metadata/admin-services/users/{{adminUserId}}/servers/active-metadata-store/audit-log-destinations/event-topic? + topicName={{auditLogTopic}} +Content-Type: application/json + +["Information","Decision","Action","Error","Exception","Security","Startup","Shutdown","Asset","Cohort","Activity"] + ### # ------------------------- # View Server: view-server @@ -68,6 +92,13 @@ content-packs/OpenConnectorsArchive.omarchive # Set up the user Id that this server should use on open metadata requests when it is processing events (and consequently there is no end user id to use). POST {{baseURL}}/open-metadata/admin-services/users/{{adminUserId}}/servers/view-server/server-user-id?id=viewnpa +### +# Set up the description of this server. +POST {{baseURL}}/open-metadata/admin-services/users/{{adminUserId}}/servers/view-server/server-description +Content-Type: text/plain + +A server that supplies REST API endpoints for User Interfaces and non-Java environments such as Python. + ### # Set up all of the registered, undeprecated Open Metadata View Services (OMVSs). The request body lists the platforms # and servers that will appear on the appropriate UI dropdowns. @@ -129,6 +160,32 @@ Content-Type: application/json ] } +### +# Set up the common properties needed to call your event bus. The value of {{kafkaEndpoint}} is resolved in the +# application.properties file using the `platform.placeholder.variables` property. +POST {{baseURL}}/open-metadata/admin-services/users/{{adminUserId}}/servers/view-server/event-bus +Content-Type: application/json + +{ +"producer": +{ +"bootstrap.servers":"{{kafkaEndpoint}}" +}, +"consumer": +{ +"bootstrap.servers":"{{kafkaEndpoint}}" +} +} + +### +# Add topic audit log destination to active-metadata-store server +POST {{baseURL}}/open-metadata/admin-services/users/{{adminUserId}}/servers/view-server/audit-log-destinations/event-topic? + topicName={{auditLogTopic}} +Content-Type: application/json + +["Information","Decision","Action","Error","Exception","Security","Startup","Shutdown","Asset","Cohort","Activity"] + + ### # ------------------------- # Engine Host: engine-host @@ -137,6 +194,13 @@ Content-Type: application/json # Set up the user Id that this server should use on open metadata requests when it is processing events (and consequently there is no end user id to use). POST {{baseURL}}/open-metadata/admin-services/users/{{adminUserId}}/servers/engine-host/server-user-id?id=enginenpa +### +# Set up the description of this server. +POST {{baseURL}}/open-metadata/admin-services/users/{{adminUserId}}/servers/engine-host/server-description +Content-Type: text/plain + +A server that runs governance service requests, triggered by engine actions created in active-metadata-store. + ### # Set up the address of the active-metadata-store that will supply the engine host with metadata along with the # qualified names of the governance engines it will run. @@ -175,6 +239,32 @@ Content-Type: application/json "omagserverName": "active-metadata-store" } +### +# Set up the common properties needed to call your event bus. The value of {{kafkaEndpoint}} is resolved in the +# application.properties file using the `platform.placeholder.variables` property. +POST {{baseURL}}/open-metadata/admin-services/users/{{adminUserId}}/servers/engine-host/event-bus +Content-Type: application/json + +{ +"producer": +{ +"bootstrap.servers":"{{kafkaEndpoint}}" +}, +"consumer": +{ +"bootstrap.servers":"{{kafkaEndpoint}}" +} +} + +### +# Add topic audit log destination to active-metadata-store server +POST {{baseURL}}/open-metadata/admin-services/users/{{adminUserId}}/servers/engine-host/audit-log-destinations/event-topic? + topicName={{auditLogTopic}} +Content-Type: application/json + +["Information","Decision","Action","Error","Exception","Security","Startup","Shutdown","Asset","Cohort","Activity"] + + ### # --------------------------------------- # Integration Daemon: integration-daemon @@ -183,6 +273,13 @@ Content-Type: application/json # Set up the user Id that this server should use on open metadata requests when it is processing events (and consequently there is no end user id to use). POST {{baseURL}}/open-metadata/admin-services/users/{{adminUserId}}/servers/integration-daemon/server-user-id?id=daemonnpa +### +# Set up the description of this server. +POST {{baseURL}}/open-metadata/admin-services/users/{{adminUserId}}/servers/integration-daemon/server-description +Content-Type: text/plain + +A server that runs integration connectors that synchronize and exchange metadata with different types of technologies and tools. + ### # Set up the qualified name of the integration group that this server supports and the location of the # metadata access store active-metadata-store @@ -196,4 +293,30 @@ Content-Type: application/json "integrationGroupQualifiedName" : "Egeria:IntegrationGroup:DefaultIntegrationGroup" } +### +# Set up the common properties needed to call your event bus. The value of {{kafkaEndpoint}} is resolved in the +# application.properties file using the `platform.placeholder.variables` property. +POST {{baseURL}}/open-metadata/admin-services/users/{{adminUserId}}/servers/integration-daemon/event-bus +Content-Type: application/json + +{ +"producer": +{ +"bootstrap.servers":"{{kafkaEndpoint}}" +}, +"consumer": +{ +"bootstrap.servers":"{{kafkaEndpoint}}" +} +} + +### +# Add topic audit log destination to active-metadata-store server +POST {{baseURL}}/open-metadata/admin-services/users/{{adminUserId}}/servers/integration-daemon/audit-log-destinations/event-topic? + topicName={{auditLogTopic}} +Content-Type: application/json + +["Information","Decision","Action","Error","Exception","Security","Startup","Shutdown","Asset","Cohort","Activity"] + + ### \ No newline at end of file diff --git a/open-metadata-resources/open-metadata-deployment/sample-configs/active-metadata-store/config/active-metadata-store.config b/open-metadata-resources/open-metadata-deployment/sample-configs/active-metadata-store/config/active-metadata-store.config index c73fd8d5071..23503e9b8ec 100644 --- a/open-metadata-resources/open-metadata-deployment/sample-configs/active-metadata-store/config/active-metadata-store.config +++ b/open-metadata-resources/open-metadata-deployment/sample-configs/active-metadata-store/config/active-metadata-store.config @@ -1 +1 @@ -{"class":"OMAGServerConfig","versionId":"V2.0","localServerId":"32ca3566-a33a-44f6-acee-f6a616474197","localServerName":"active-metadata-store","localServerURL":"https://localhost:9443","localServerUserId":"activenpa","maxPageSize":1000,"eventBusConfig":{"class":"EventBusConfig","topicURLRoot":"egeria.omag","configurationProperties":{"producer":{"bootstrap.servers":"{{kafkaEndpoint}}"},"consumer":{"bootstrap.servers":"{{kafkaEndpoint}}"}}},"accessServicesConfig":[{"class":"AccessServiceConfig","accessServiceId":210,"accessServiceDevelopmentStatus":"STABLE","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.datamanager.admin.DataManagerAdmin","accessServiceName":"Data Manager","accessServiceFullName":"Data Manager OMAS","accessServiceURLMarker":"data-manager","accessServiceDescription":"Capture changes to the data stores and data set managed by a data manager such as a database server, content manager or file system.","accessServiceWiki":"https://egeria-project.org/services/omas/data-manager/overview/","accessServiceOperationalStatus":"ENABLED","accessServiceOutTopic":{"class":"Connection","headerVersion":0,"displayName":"Kafka Event Bus Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.eventbus.topic.kafka.KafkaOpenMetadataTopicProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"egeria.omag.server.active-metadata-store.omas.datamanager.outTopic"},"configurationProperties":{"producer":{"bootstrap.servers":"{{kafkaEndpoint}}"},"local.server.id":"32ca3566-a33a-44f6-acee-f6a616474197","consumer":{"bootstrap.servers":"{{kafkaEndpoint}}"}}}},{"class":"AccessServiceConfig","accessServiceId":226,"accessServiceDevelopmentStatus":"TECHNICAL_PREVIEW","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.subjectarea.admin.SubjectAreaAdmin","accessServiceName":"Subject Area","accessServiceFullName":"Subject Area OMAS","accessServiceURLMarker":"subject-area","accessServiceDescription":"Document knowledge about a subject area in a glossary.","accessServiceWiki":"https://egeria-project.org/services/omas/subject-area/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":213,"accessServiceDevelopmentStatus":"IN_DEVELOPMENT","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.designmodel.admin.DesignModelAdmin","accessServiceName":"Design Model","accessServiceFullName":"Design Model OMAS","accessServiceURLMarker":"design-model","accessServiceDescription":"Exchange design model content with tools and standard packages.","accessServiceWiki":"https://egeria-project.org/services/omas/design-model/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":223,"accessServiceDevelopmentStatus":"IN_DEVELOPMENT","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.securityofficer.server.admin.SecurityOfficerAdmin","accessServiceName":"Security Officer","accessServiceFullName":"Security Officer OMAS","accessServiceURLMarker":"security-officer","accessServiceDescription":"Set up rules and security tags to protect data.","accessServiceWiki":"https://egeria-project.org/services/omas/security-officer/overview/","accessServiceOperationalStatus":"ENABLED","accessServiceOutTopic":{"class":"Connection","headerVersion":0,"displayName":"Kafka Event Bus Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.eventbus.topic.kafka.KafkaOpenMetadataTopicProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"egeria.omag.server.active-metadata-store.omas.securityofficer.outTopic"},"configurationProperties":{"producer":{"bootstrap.servers":"{{kafkaEndpoint}}"},"local.server.id":"32ca3566-a33a-44f6-acee-f6a616474197","consumer":{"bootstrap.servers":"{{kafkaEndpoint}}"}}}},{"class":"AccessServiceConfig","accessServiceId":204,"accessServiceDevelopmentStatus":"STABLE","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.assetmanager.admin.AssetManagerAdmin","accessServiceName":"Asset Manager","accessServiceFullName":"Asset Manager OMAS","accessServiceURLMarker":"asset-manager","accessServiceDescription":"Manage metadata from a third party asset manager","accessServiceWiki":"https://egeria-project.org/services/omas/asset-manager/overview/","accessServiceOperationalStatus":"ENABLED","accessServiceOutTopic":{"class":"Connection","headerVersion":0,"displayName":"Kafka Event Bus Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.eventbus.topic.kafka.KafkaOpenMetadataTopicProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"egeria.omag.server.active-metadata-store.omas.assetmanager.outTopic"},"configurationProperties":{"producer":{"bootstrap.servers":"{{kafkaEndpoint}}"},"local.server.id":"32ca3566-a33a-44f6-acee-f6a616474197","consumer":{"bootstrap.servers":"{{kafkaEndpoint}}"}}}},{"class":"AccessServiceConfig","accessServiceId":208,"accessServiceDevelopmentStatus":"TECHNICAL_PREVIEW","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.itinfrastructure.admin.ITInfrastructureAdmin","accessServiceName":"IT Infrastructure","accessServiceFullName":"IT Infrastructure OMAS","accessServiceURLMarker":"it-infrastructure","accessServiceDescription":"Manage information about the deployed IT infrastructure.","accessServiceWiki":"https://egeria-project.org/services/omas/it-infrastructure/overview/","accessServiceOperationalStatus":"ENABLED","accessServiceOutTopic":{"class":"Connection","headerVersion":0,"displayName":"Kafka Event Bus Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.eventbus.topic.kafka.KafkaOpenMetadataTopicProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"egeria.omag.server.active-metadata-store.omas.itinfrastructure.outTopic"},"configurationProperties":{"producer":{"bootstrap.servers":"{{kafkaEndpoint}}"},"local.server.id":"32ca3566-a33a-44f6-acee-f6a616474197","consumer":{"bootstrap.servers":"{{kafkaEndpoint}}"}}}},{"class":"AccessServiceConfig","accessServiceId":212,"accessServiceDevelopmentStatus":"IN_DEVELOPMENT","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.datascience.admin.DataScienceAdmin","accessServiceName":"Data Science","accessServiceFullName":"Data Science OMAS","accessServiceURLMarker":"data-science","accessServiceDescription":"Create and manage data science definitions and models.","accessServiceWiki":"https://egeria-project.org/services/omas/data-science/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":207,"accessServiceDevelopmentStatus":"STABLE","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.communityprofile.admin.CommunityProfileAdmin","accessServiceName":"Community Profile","accessServiceFullName":"Community Profile OMAS","accessServiceURLMarker":"community-profile","accessServiceDescription":"Define personal profile and collaborate.","accessServiceWiki":"https://egeria-project.org/services/omas/community-profile/overview/","accessServiceOperationalStatus":"ENABLED","accessServiceOutTopic":{"class":"Connection","headerVersion":0,"displayName":"Kafka Event Bus Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.eventbus.topic.kafka.KafkaOpenMetadataTopicProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"egeria.omag.server.active-metadata-store.omas.communityprofile.outTopic"},"configurationProperties":{"producer":{"bootstrap.servers":"{{kafkaEndpoint}}"},"local.server.id":"32ca3566-a33a-44f6-acee-f6a616474197","consumer":{"bootstrap.servers":"{{kafkaEndpoint}}"}}}},{"class":"AccessServiceConfig","accessServiceId":209,"accessServiceDevelopmentStatus":"IN_DEVELOPMENT","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.dataengine.server.admin.DataEngineAdmin","accessServiceName":"Data Engine","accessServiceFullName":"Data Engine OMAS","accessServiceURLMarker":"data-engine","accessServiceDescription":"Exchange process models and lineage with a data engine.","accessServiceWiki":"https://egeria-project.org/services/omas/data-engine/overview/","accessServiceOperationalStatus":"ENABLED","accessServiceInTopic":{"class":"Connection","headerVersion":0,"displayName":"Kafka Event Bus Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.eventbus.topic.kafka.KafkaOpenMetadataTopicProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"egeria.omag.server.active-metadata-store.omas.dataengine.inTopic"},"configurationProperties":{"producer":{"bootstrap.servers":"{{kafkaEndpoint}}"},"local.server.id":"32ca3566-a33a-44f6-acee-f6a616474197","consumer":{"bootstrap.servers":"{{kafkaEndpoint}}"}}}},{"class":"AccessServiceConfig","accessServiceId":215,"accessServiceDevelopmentStatus":"TECHNICAL_PREVIEW","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.digitalarchitecture.admin.DigitalArchitectureAdmin","accessServiceName":"Digital Architecture","accessServiceFullName":"Digital Architecture OMAS","accessServiceURLMarker":"digital-architecture","accessServiceDescription":"Design of the digital services for an organization","accessServiceWiki":"https://egeria-project.org/services/omas/digital-architecture/overview/","accessServiceOperationalStatus":"ENABLED","accessServiceOutTopic":{"class":"Connection","headerVersion":0,"displayName":"Kafka Event Bus Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.eventbus.topic.kafka.KafkaOpenMetadataTopicProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"egeria.omag.server.active-metadata-store.omas.digitalarchitecture.outTopic"},"configurationProperties":{"producer":{"bootstrap.servers":"{{kafkaEndpoint}}"},"local.server.id":"32ca3566-a33a-44f6-acee-f6a616474197","consumer":{"bootstrap.servers":"{{kafkaEndpoint}}"}}}},{"class":"AccessServiceConfig","accessServiceId":227,"accessServiceDevelopmentStatus":"STABLE","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.governanceserver.admin.GovernanceServerAdmin","accessServiceName":"Governance Server","accessServiceFullName":"Governance Server OMAS","accessServiceURLMarker":"governance-server","accessServiceDescription":"Supply the governance engine definitions to the engine hosts and the and integration group definitions to the integration daemons.","accessServiceWiki":"https://egeria-project.org/services/omas/governance-server/overview/","accessServiceOperationalStatus":"ENABLED","accessServiceOutTopic":{"class":"Connection","headerVersion":0,"displayName":"Kafka Event Bus Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.eventbus.topic.kafka.KafkaOpenMetadataTopicProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"egeria.omag.server.active-metadata-store.omas.governanceserver.outTopic"},"configurationProperties":{"producer":{"bootstrap.servers":"{{kafkaEndpoint}}"},"local.server.id":"32ca3566-a33a-44f6-acee-f6a616474197","consumer":{"bootstrap.servers":"{{kafkaEndpoint}}"}}}},{"class":"AccessServiceConfig","accessServiceId":205,"accessServiceDevelopmentStatus":"STABLE","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.assetowner.admin.AssetOwnerAdmin","accessServiceName":"Asset Owner","accessServiceFullName":"Asset Owner OMAS","accessServiceURLMarker":"asset-owner","accessServiceDescription":"Manage an asset","accessServiceWiki":"https://egeria-project.org/services/omas/asset-owner/overview/","accessServiceOperationalStatus":"ENABLED","accessServiceOutTopic":{"class":"Connection","headerVersion":0,"displayName":"Kafka Event Bus Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.eventbus.topic.kafka.KafkaOpenMetadataTopicProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"egeria.omag.server.active-metadata-store.omas.assetowner.outTopic"},"configurationProperties":{"producer":{"bootstrap.servers":"{{kafkaEndpoint}}"},"local.server.id":"32ca3566-a33a-44f6-acee-f6a616474197","consumer":{"bootstrap.servers":"{{kafkaEndpoint}}"}}}},{"class":"AccessServiceConfig","accessServiceId":225,"accessServiceDevelopmentStatus":"TECHNICAL_PREVIEW","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.stewardshipaction.admin.StewardshipActionAdmin","accessServiceName":"Stewardship Action","accessServiceFullName":"Stewardship Action OMAS","accessServiceURLMarker":"stewardship-action","accessServiceDescription":"Manage exceptions and actions from open governance.","accessServiceWiki":"https://egeria-project.org/services/omas/stewardship-action/overview/","accessServiceOperationalStatus":"ENABLED","accessServiceOutTopic":{"class":"Connection","headerVersion":0,"displayName":"Kafka Event Bus Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.eventbus.topic.kafka.KafkaOpenMetadataTopicProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"egeria.omag.server.active-metadata-store.omas.stewardshipaction.outTopic"},"configurationProperties":{"producer":{"bootstrap.servers":"{{kafkaEndpoint}}"},"local.server.id":"32ca3566-a33a-44f6-acee-f6a616474197","consumer":{"bootstrap.servers":"{{kafkaEndpoint}}"}}}},{"class":"AccessServiceConfig","accessServiceId":220,"accessServiceDevelopmentStatus":"TECHNICAL_PREVIEW","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.governanceprogram.admin.GovernanceProgramAdmin","accessServiceName":"Governance Program","accessServiceFullName":"Governance Program OMAS","accessServiceURLMarker":"governance-program","accessServiceDescription":"Manage the governance program.","accessServiceWiki":"https://egeria-project.org/services/omas/governance-program/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":216,"accessServiceDevelopmentStatus":"TECHNICAL_PREVIEW","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.digitalservice.admin.DigitalServiceAdmin","accessServiceName":"Digital Service","accessServiceFullName":"Digital Service OMAS","accessServiceURLMarker":"digital-service","accessServiceDescription":"Manage a digital service through its lifecycle.","accessServiceWiki":"https://egeria-project.org/services/omas/digital-service/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":203,"accessServiceDevelopmentStatus":"IN_DEVELOPMENT","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.assetlineage.admin.AssetLineageAdmin","accessServiceName":"Asset Lineage","accessServiceFullName":"Asset Lineage OMAS","accessServiceURLMarker":"asset-lineage","accessServiceDescription":"Publish asset lineage","accessServiceWiki":"https://egeria-project.org/services/omas/asset-lineage/overview/","accessServiceOperationalStatus":"ENABLED","accessServiceOutTopic":{"class":"Connection","headerVersion":0,"displayName":"Kafka Event Bus Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.eventbus.topic.kafka.KafkaOpenMetadataTopicProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"egeria.omag.server.active-metadata-store.omas.assetlineage.outTopic"},"configurationProperties":{"producer":{"bootstrap.servers":"{{kafkaEndpoint}}"},"local.server.id":"32ca3566-a33a-44f6-acee-f6a616474197","consumer":{"bootstrap.servers":"{{kafkaEndpoint}}"}}}},{"class":"AccessServiceConfig","accessServiceId":201,"accessServiceDevelopmentStatus":"STABLE","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.assetconsumer.admin.AssetConsumerAdmin","accessServiceName":"Asset Consumer","accessServiceFullName":"Asset Consumer OMAS","accessServiceURLMarker":"asset-consumer","accessServiceDescription":"Access assets through connectors.","accessServiceWiki":"https://egeria-project.org/services/omas/asset-consumer/overview/","accessServiceOperationalStatus":"ENABLED","accessServiceOutTopic":{"class":"Connection","headerVersion":0,"displayName":"Kafka Event Bus Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.eventbus.topic.kafka.KafkaOpenMetadataTopicProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"egeria.omag.server.active-metadata-store.omas.assetconsumer.outTopic"},"configurationProperties":{"producer":{"bootstrap.servers":"{{kafkaEndpoint}}"},"local.server.id":"32ca3566-a33a-44f6-acee-f6a616474197","consumer":{"bootstrap.servers":"{{kafkaEndpoint}}"}}}},{"class":"AccessServiceConfig","accessServiceId":214,"accessServiceDevelopmentStatus":"IN_DEVELOPMENT","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.devops.admin.DevOpsAdmin","accessServiceName":"DevOps","accessServiceFullName":"DevOps OMAS","accessServiceURLMarker":"devops","accessServiceDescription":"Manage the metadata about the assets managed by a DevOps pipeline.","accessServiceWiki":"https://egeria-project.org/services/omas/dev-ops/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":224,"accessServiceDevelopmentStatus":"IN_DEVELOPMENT","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.softwaredeveloper.admin.SoftwareDeveloperAdmin","accessServiceName":"Software Developer","accessServiceFullName":"Software Developer OMAS","accessServiceURLMarker":"software-developer","accessServiceDescription":"Interact with software development tools.","accessServiceWiki":"https://egeria-project.org/services/omas/software-developer/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":221,"accessServiceDevelopmentStatus":"IN_DEVELOPMENT","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.projectmanagement.admin.ProjectManagementAdmin","accessServiceName":"Project Management","accessServiceFullName":"Project Management OMAS","accessServiceURLMarker":"project-management","accessServiceDescription":"Manage governance related projects.","accessServiceWiki":"https://egeria-project.org/services/omas/project-management/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":219,"accessServiceDevelopmentStatus":"STABLE","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.governanceengine.admin.GovernanceEngineAdmin","accessServiceName":"Governance Engine","accessServiceFullName":"Governance Engine OMAS","accessServiceURLMarker":"governance-engine","accessServiceDescription":"Provide metadata services and watch dog notification to the governance action services.","accessServiceWiki":"https://egeria-project.org/services/omas/governance-engine/overview/","accessServiceOperationalStatus":"ENABLED","accessServiceOutTopic":{"class":"Connection","headerVersion":0,"displayName":"Kafka Event Bus Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.eventbus.topic.kafka.KafkaOpenMetadataTopicProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"egeria.omag.server.active-metadata-store.omas.governanceengine.outTopic"},"configurationProperties":{"producer":{"bootstrap.servers":"{{kafkaEndpoint}}"},"local.server.id":"32ca3566-a33a-44f6-acee-f6a616474197","consumer":{"bootstrap.servers":"{{kafkaEndpoint}}"}}}},{"class":"AccessServiceConfig","accessServiceId":211,"accessServiceDevelopmentStatus":"IN_DEVELOPMENT","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.dataprivacy.admin.DataPrivacyAdmin","accessServiceName":"Data Privacy","accessServiceFullName":"Data Privacy OMAS","accessServiceURLMarker":"data-privacy","accessServiceDescription":"Manage governance of privacy.","accessServiceWiki":"https://egeria-project.org/services/omas/data-privacy/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":222,"accessServiceDevelopmentStatus":"IN_DEVELOPMENT","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.securitymanager.admin.SecurityManagerAdmin","accessServiceName":"Security Manager","accessServiceFullName":"Security Manager OMAS","accessServiceURLMarker":"security-manager","accessServiceDescription":"Manages exchange of metadata with a security service.","accessServiceWiki":"https://egeria-project.org/services/omas/security-manager/overview/","accessServiceOperationalStatus":"ENABLED","accessServiceOutTopic":{"class":"Connection","headerVersion":0,"displayName":"Kafka Event Bus Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.eventbus.topic.kafka.KafkaOpenMetadataTopicProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"egeria.omag.server.active-metadata-store.omas.securitymanager.outTopic"},"configurationProperties":{"producer":{"bootstrap.servers":"{{kafkaEndpoint}}"},"local.server.id":"32ca3566-a33a-44f6-acee-f6a616474197","consumer":{"bootstrap.servers":"{{kafkaEndpoint}}"}}}}],"repositoryServicesConfig":{"class":"RepositoryServicesConfig","auditLogConnections":[{"class":"Connection","headerVersion":0,"qualifiedName":"Console- default","displayName":"Console","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.repositoryservices.auditlogstore.console.ConsoleAuditLogStoreProvider"},"configurationProperties":{"supportedSeverities":["Unknown","Information","Decision","Action","Error","Exception","Security","Startup","Shutdown","Asset","Cohort"]}}],"openMetadataArchiveConnections":[{"class":"Connection","headerVersion":0,"displayName":"Open Metadata Archive File content-packs/OpenConnectorsArchive.omarchive Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.repositoryservices.archiveconnector.file.FileBasedOpenMetadataArchiveStoreProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"content-packs/OpenConnectorsArchive.omarchive"}}],"localRepositoryConfig":{"class":"LocalRepositoryConfig","metadataCollectionId":"dbfa3374-7752-4cfa-9160-6f2674712b24","localRepositoryMode":"OPEN_METADATA_NATIVE","localRepositoryLocalConnection":{"class":"Connection","headerVersion":0,"displayName":"Local KV XTDB Repository","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.repositoryservices.xtdb.repositoryconnector.XTDBOMRSRepositoryConnectorProvider"},"configurationProperties":{"xtdbConfig":{"xtdb.lucene/lucene-store":{"db-dir":"data/servers/active-metadata-store/repository/xtdb-kv/lucene"},"xtdb/tx-log":{"kv-store":{"db-dir":"data/servers/active-metadata-store/repository/xtdb-kv/rdb-tx","xtdb/module":"xtdb.rocksdb/->kv-store"}},"xtdb/index-store":{"kv-store":{"db-dir":"data/servers/active-metadata-store/repository/xtdb-kv/rdb-index","xtdb/module":"xtdb.rocksdb/->kv-store"}},"xtdb/document-store":{"kv-store":{"db-dir":"data/servers/active-metadata-store/repository/xtdb-kv/rdb-docs","xtdb/module":"xtdb.rocksdb/->kv-store"}}}}},"localRepositoryRemoteConnection":{"class":"Connection","headerVersion":0,"displayName":"Local Repository Remote Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.repositoryservices.rest.repositoryconnector.OMRSRESTRepositoryConnectorProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"https://localhost:9443/servers/active-metadata-store"}},"eventsToSaveRule":"ALL","eventsToSendRule":"ALL"},"enterpriseAccessConfig":{"class":"EnterpriseAccessConfig","enterpriseMetadataCollectionName":"active-metadata-store Enterprise Metadata Collection","enterpriseMetadataCollectionId":"c6b56608-73af-48dd-9445-d0705f7e1ab4","enterpriseOMRSTopicConnection":{"class":"VirtualConnection","headerVersion":0,"displayName":"Enterprise OMRS Topic Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.repositoryservices.connectors.omrstopic.OMRSTopicProvider"},"embeddedConnections":[{"class":"EmbeddedConnection","headerVersion":0,"position":0,"displayName":"Enterprise OMRS Events","embeddedConnection":{"class":"Connection","headerVersion":0,"displayName":"Kafka Event Bus Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.eventbus.topic.inmemory.InMemoryOpenMetadataTopicProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"active-metadata-store.openmetadata.repositoryservices.enterprise.active-metadata-store.OMRSTopic"},"configurationProperties":{"local.server.id":"32ca3566-a33a-44f6-acee-f6a616474197","eventDirection":"inOut"}}}]},"enterpriseOMRSTopicProtocolVersion":"V1"}},"auditTrail":["Wed Mar 06 14:57:12 GMT 2024 garygeeke updated configuration for local server's userId to activenpa.","Wed Mar 06 14:57:12 GMT 2024 garygeeke updated configuration for the local repository.","Wed Mar 06 14:57:12 GMT 2024 garygeeke updated configuration for default event bus.","Wed Mar 06 14:57:12 GMT 2024 garygeeke updated configuration for access services.","Wed Mar 06 14:57:12 GMT 2024 garygeeke updated configuration for enterprise repository services (used by access services).","Wed Mar 06 14:57:12 GMT 2024 garygeeke updated list of open metadata archives loaded at server start up."]} \ No newline at end of file +{"class":"OMAGServerConfig","versionId":"V2.0","localServerId":"be01b0c5-b4c8-4278-a28d-338f57747bb2","localServerName":"active-metadata-store","localServerDescription":"A metadata store that supports Open Metadata Access Services (OMASs) with event notifications. It provides metadata to view-server, engine-host and integration-daemon.","localServerURL":"https://localhost:9443","localServerUserId":"activenpa","maxPageSize":1000,"eventBusConfig":{"class":"EventBusConfig","topicURLRoot":"egeria.omag","configurationProperties":{"producer":{"bootstrap.servers":"{{kafkaEndpoint}}"},"consumer":{"bootstrap.servers":"{{kafkaEndpoint}}"}}},"accessServicesConfig":[{"class":"AccessServiceConfig","accessServiceId":210,"accessServiceDevelopmentStatus":"STABLE","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.datamanager.admin.DataManagerAdmin","accessServiceName":"Data Manager","accessServiceFullName":"Data Manager OMAS","accessServiceURLMarker":"data-manager","accessServiceDescription":"Capture changes to the data stores and data set managed by a data manager such as a database server, content manager or file system.","accessServiceWiki":"https://egeria-project.org/services/omas/data-manager/overview/","accessServiceOperationalStatus":"ENABLED","accessServiceOutTopic":{"class":"Connection","headerVersion":0,"displayName":"Kafka Event Bus Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.eventbus.topic.kafka.KafkaOpenMetadataTopicProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"egeria.omag.server.active-metadata-store.omas.datamanager.outTopic"},"configurationProperties":{"producer":{"bootstrap.servers":"{{kafkaEndpoint}}"},"local.server.id":"be01b0c5-b4c8-4278-a28d-338f57747bb2","consumer":{"bootstrap.servers":"{{kafkaEndpoint}}"}}}},{"class":"AccessServiceConfig","accessServiceId":226,"accessServiceDevelopmentStatus":"TECHNICAL_PREVIEW","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.subjectarea.admin.SubjectAreaAdmin","accessServiceName":"Subject Area","accessServiceFullName":"Subject Area OMAS","accessServiceURLMarker":"subject-area","accessServiceDescription":"Document knowledge about a subject area in a glossary.","accessServiceWiki":"https://egeria-project.org/services/omas/subject-area/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":213,"accessServiceDevelopmentStatus":"IN_DEVELOPMENT","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.designmodel.admin.DesignModelAdmin","accessServiceName":"Design Model","accessServiceFullName":"Design Model OMAS","accessServiceURLMarker":"design-model","accessServiceDescription":"Exchange design model content with tools and standard packages.","accessServiceWiki":"https://egeria-project.org/services/omas/design-model/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":223,"accessServiceDevelopmentStatus":"IN_DEVELOPMENT","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.securityofficer.server.admin.SecurityOfficerAdmin","accessServiceName":"Security Officer","accessServiceFullName":"Security Officer OMAS","accessServiceURLMarker":"security-officer","accessServiceDescription":"Set up rules and security tags to protect data.","accessServiceWiki":"https://egeria-project.org/services/omas/security-officer/overview/","accessServiceOperationalStatus":"ENABLED","accessServiceOutTopic":{"class":"Connection","headerVersion":0,"displayName":"Kafka Event Bus Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.eventbus.topic.kafka.KafkaOpenMetadataTopicProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"egeria.omag.server.active-metadata-store.omas.securityofficer.outTopic"},"configurationProperties":{"producer":{"bootstrap.servers":"{{kafkaEndpoint}}"},"local.server.id":"be01b0c5-b4c8-4278-a28d-338f57747bb2","consumer":{"bootstrap.servers":"{{kafkaEndpoint}}"}}}},{"class":"AccessServiceConfig","accessServiceId":204,"accessServiceDevelopmentStatus":"STABLE","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.assetmanager.admin.AssetManagerAdmin","accessServiceName":"Asset Manager","accessServiceFullName":"Asset Manager OMAS","accessServiceURLMarker":"asset-manager","accessServiceDescription":"Manage metadata from a third party asset manager","accessServiceWiki":"https://egeria-project.org/services/omas/asset-manager/overview/","accessServiceOperationalStatus":"ENABLED","accessServiceOutTopic":{"class":"Connection","headerVersion":0,"displayName":"Kafka Event Bus Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.eventbus.topic.kafka.KafkaOpenMetadataTopicProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"egeria.omag.server.active-metadata-store.omas.assetmanager.outTopic"},"configurationProperties":{"producer":{"bootstrap.servers":"{{kafkaEndpoint}}"},"local.server.id":"be01b0c5-b4c8-4278-a28d-338f57747bb2","consumer":{"bootstrap.servers":"{{kafkaEndpoint}}"}}}},{"class":"AccessServiceConfig","accessServiceId":208,"accessServiceDevelopmentStatus":"TECHNICAL_PREVIEW","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.itinfrastructure.admin.ITInfrastructureAdmin","accessServiceName":"IT Infrastructure","accessServiceFullName":"IT Infrastructure OMAS","accessServiceURLMarker":"it-infrastructure","accessServiceDescription":"Manage information about the deployed IT infrastructure.","accessServiceWiki":"https://egeria-project.org/services/omas/it-infrastructure/overview/","accessServiceOperationalStatus":"ENABLED","accessServiceOutTopic":{"class":"Connection","headerVersion":0,"displayName":"Kafka Event Bus Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.eventbus.topic.kafka.KafkaOpenMetadataTopicProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"egeria.omag.server.active-metadata-store.omas.itinfrastructure.outTopic"},"configurationProperties":{"producer":{"bootstrap.servers":"{{kafkaEndpoint}}"},"local.server.id":"be01b0c5-b4c8-4278-a28d-338f57747bb2","consumer":{"bootstrap.servers":"{{kafkaEndpoint}}"}}}},{"class":"AccessServiceConfig","accessServiceId":212,"accessServiceDevelopmentStatus":"IN_DEVELOPMENT","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.datascience.admin.DataScienceAdmin","accessServiceName":"Data Science","accessServiceFullName":"Data Science OMAS","accessServiceURLMarker":"data-science","accessServiceDescription":"Create and manage data science definitions and models.","accessServiceWiki":"https://egeria-project.org/services/omas/data-science/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":207,"accessServiceDevelopmentStatus":"STABLE","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.communityprofile.admin.CommunityProfileAdmin","accessServiceName":"Community Profile","accessServiceFullName":"Community Profile OMAS","accessServiceURLMarker":"community-profile","accessServiceDescription":"Define personal profile and collaborate.","accessServiceWiki":"https://egeria-project.org/services/omas/community-profile/overview/","accessServiceOperationalStatus":"ENABLED","accessServiceOutTopic":{"class":"Connection","headerVersion":0,"displayName":"Kafka Event Bus Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.eventbus.topic.kafka.KafkaOpenMetadataTopicProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"egeria.omag.server.active-metadata-store.omas.communityprofile.outTopic"},"configurationProperties":{"producer":{"bootstrap.servers":"{{kafkaEndpoint}}"},"local.server.id":"be01b0c5-b4c8-4278-a28d-338f57747bb2","consumer":{"bootstrap.servers":"{{kafkaEndpoint}}"}}}},{"class":"AccessServiceConfig","accessServiceId":209,"accessServiceDevelopmentStatus":"IN_DEVELOPMENT","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.dataengine.server.admin.DataEngineAdmin","accessServiceName":"Data Engine","accessServiceFullName":"Data Engine OMAS","accessServiceURLMarker":"data-engine","accessServiceDescription":"Exchange process models and lineage with a data engine.","accessServiceWiki":"https://egeria-project.org/services/omas/data-engine/overview/","accessServiceOperationalStatus":"ENABLED","accessServiceInTopic":{"class":"Connection","headerVersion":0,"displayName":"Kafka Event Bus Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.eventbus.topic.kafka.KafkaOpenMetadataTopicProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"egeria.omag.server.active-metadata-store.omas.dataengine.inTopic"},"configurationProperties":{"producer":{"bootstrap.servers":"{{kafkaEndpoint}}"},"local.server.id":"be01b0c5-b4c8-4278-a28d-338f57747bb2","consumer":{"bootstrap.servers":"{{kafkaEndpoint}}"}}}},{"class":"AccessServiceConfig","accessServiceId":215,"accessServiceDevelopmentStatus":"TECHNICAL_PREVIEW","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.digitalarchitecture.admin.DigitalArchitectureAdmin","accessServiceName":"Digital Architecture","accessServiceFullName":"Digital Architecture OMAS","accessServiceURLMarker":"digital-architecture","accessServiceDescription":"Design of the digital services for an organization","accessServiceWiki":"https://egeria-project.org/services/omas/digital-architecture/overview/","accessServiceOperationalStatus":"ENABLED","accessServiceOutTopic":{"class":"Connection","headerVersion":0,"displayName":"Kafka Event Bus Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.eventbus.topic.kafka.KafkaOpenMetadataTopicProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"egeria.omag.server.active-metadata-store.omas.digitalarchitecture.outTopic"},"configurationProperties":{"producer":{"bootstrap.servers":"{{kafkaEndpoint}}"},"local.server.id":"be01b0c5-b4c8-4278-a28d-338f57747bb2","consumer":{"bootstrap.servers":"{{kafkaEndpoint}}"}}}},{"class":"AccessServiceConfig","accessServiceId":227,"accessServiceDevelopmentStatus":"STABLE","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.governanceserver.admin.GovernanceServerAdmin","accessServiceName":"Governance Server","accessServiceFullName":"Governance Server OMAS","accessServiceURLMarker":"governance-server","accessServiceDescription":"Supply the governance engine definitions to the engine hosts and the and integration group definitions to the integration daemons.","accessServiceWiki":"https://egeria-project.org/services/omas/governance-server/overview/","accessServiceOperationalStatus":"ENABLED","accessServiceOutTopic":{"class":"Connection","headerVersion":0,"displayName":"Kafka Event Bus Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.eventbus.topic.kafka.KafkaOpenMetadataTopicProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"egeria.omag.server.active-metadata-store.omas.governanceserver.outTopic"},"configurationProperties":{"producer":{"bootstrap.servers":"{{kafkaEndpoint}}"},"local.server.id":"be01b0c5-b4c8-4278-a28d-338f57747bb2","consumer":{"bootstrap.servers":"{{kafkaEndpoint}}"}}}},{"class":"AccessServiceConfig","accessServiceId":205,"accessServiceDevelopmentStatus":"STABLE","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.assetowner.admin.AssetOwnerAdmin","accessServiceName":"Asset Owner","accessServiceFullName":"Asset Owner OMAS","accessServiceURLMarker":"asset-owner","accessServiceDescription":"Manage an asset","accessServiceWiki":"https://egeria-project.org/services/omas/asset-owner/overview/","accessServiceOperationalStatus":"ENABLED","accessServiceOutTopic":{"class":"Connection","headerVersion":0,"displayName":"Kafka Event Bus Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.eventbus.topic.kafka.KafkaOpenMetadataTopicProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"egeria.omag.server.active-metadata-store.omas.assetowner.outTopic"},"configurationProperties":{"producer":{"bootstrap.servers":"{{kafkaEndpoint}}"},"local.server.id":"be01b0c5-b4c8-4278-a28d-338f57747bb2","consumer":{"bootstrap.servers":"{{kafkaEndpoint}}"}}}},{"class":"AccessServiceConfig","accessServiceId":225,"accessServiceDevelopmentStatus":"TECHNICAL_PREVIEW","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.stewardshipaction.admin.StewardshipActionAdmin","accessServiceName":"Stewardship Action","accessServiceFullName":"Stewardship Action OMAS","accessServiceURLMarker":"stewardship-action","accessServiceDescription":"Manage exceptions and actions from open governance.","accessServiceWiki":"https://egeria-project.org/services/omas/stewardship-action/overview/","accessServiceOperationalStatus":"ENABLED","accessServiceOutTopic":{"class":"Connection","headerVersion":0,"displayName":"Kafka Event Bus Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.eventbus.topic.kafka.KafkaOpenMetadataTopicProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"egeria.omag.server.active-metadata-store.omas.stewardshipaction.outTopic"},"configurationProperties":{"producer":{"bootstrap.servers":"{{kafkaEndpoint}}"},"local.server.id":"be01b0c5-b4c8-4278-a28d-338f57747bb2","consumer":{"bootstrap.servers":"{{kafkaEndpoint}}"}}}},{"class":"AccessServiceConfig","accessServiceId":220,"accessServiceDevelopmentStatus":"TECHNICAL_PREVIEW","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.governanceprogram.admin.GovernanceProgramAdmin","accessServiceName":"Governance Program","accessServiceFullName":"Governance Program OMAS","accessServiceURLMarker":"governance-program","accessServiceDescription":"Manage the governance program.","accessServiceWiki":"https://egeria-project.org/services/omas/governance-program/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":216,"accessServiceDevelopmentStatus":"TECHNICAL_PREVIEW","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.digitalservice.admin.DigitalServiceAdmin","accessServiceName":"Digital Service","accessServiceFullName":"Digital Service OMAS","accessServiceURLMarker":"digital-service","accessServiceDescription":"Manage a digital service through its lifecycle.","accessServiceWiki":"https://egeria-project.org/services/omas/digital-service/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":203,"accessServiceDevelopmentStatus":"IN_DEVELOPMENT","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.assetlineage.admin.AssetLineageAdmin","accessServiceName":"Asset Lineage","accessServiceFullName":"Asset Lineage OMAS","accessServiceURLMarker":"asset-lineage","accessServiceDescription":"Publish asset lineage","accessServiceWiki":"https://egeria-project.org/services/omas/asset-lineage/overview/","accessServiceOperationalStatus":"ENABLED","accessServiceOutTopic":{"class":"Connection","headerVersion":0,"displayName":"Kafka Event Bus Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.eventbus.topic.kafka.KafkaOpenMetadataTopicProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"egeria.omag.server.active-metadata-store.omas.assetlineage.outTopic"},"configurationProperties":{"producer":{"bootstrap.servers":"{{kafkaEndpoint}}"},"local.server.id":"be01b0c5-b4c8-4278-a28d-338f57747bb2","consumer":{"bootstrap.servers":"{{kafkaEndpoint}}"}}}},{"class":"AccessServiceConfig","accessServiceId":201,"accessServiceDevelopmentStatus":"STABLE","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.assetconsumer.admin.AssetConsumerAdmin","accessServiceName":"Asset Consumer","accessServiceFullName":"Asset Consumer OMAS","accessServiceURLMarker":"asset-consumer","accessServiceDescription":"Access assets through connectors.","accessServiceWiki":"https://egeria-project.org/services/omas/asset-consumer/overview/","accessServiceOperationalStatus":"ENABLED","accessServiceOutTopic":{"class":"Connection","headerVersion":0,"displayName":"Kafka Event Bus Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.eventbus.topic.kafka.KafkaOpenMetadataTopicProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"egeria.omag.server.active-metadata-store.omas.assetconsumer.outTopic"},"configurationProperties":{"producer":{"bootstrap.servers":"{{kafkaEndpoint}}"},"local.server.id":"be01b0c5-b4c8-4278-a28d-338f57747bb2","consumer":{"bootstrap.servers":"{{kafkaEndpoint}}"}}}},{"class":"AccessServiceConfig","accessServiceId":214,"accessServiceDevelopmentStatus":"IN_DEVELOPMENT","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.devops.admin.DevOpsAdmin","accessServiceName":"DevOps","accessServiceFullName":"DevOps OMAS","accessServiceURLMarker":"devops","accessServiceDescription":"Manage the metadata about the assets managed by a DevOps pipeline.","accessServiceWiki":"https://egeria-project.org/services/omas/dev-ops/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":224,"accessServiceDevelopmentStatus":"IN_DEVELOPMENT","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.softwaredeveloper.admin.SoftwareDeveloperAdmin","accessServiceName":"Software Developer","accessServiceFullName":"Software Developer OMAS","accessServiceURLMarker":"software-developer","accessServiceDescription":"Interact with software development tools.","accessServiceWiki":"https://egeria-project.org/services/omas/software-developer/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":221,"accessServiceDevelopmentStatus":"IN_DEVELOPMENT","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.projectmanagement.admin.ProjectManagementAdmin","accessServiceName":"Project Management","accessServiceFullName":"Project Management OMAS","accessServiceURLMarker":"project-management","accessServiceDescription":"Manage governance related projects.","accessServiceWiki":"https://egeria-project.org/services/omas/project-management/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":219,"accessServiceDevelopmentStatus":"STABLE","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.governanceengine.admin.GovernanceEngineAdmin","accessServiceName":"Governance Engine","accessServiceFullName":"Governance Engine OMAS","accessServiceURLMarker":"governance-engine","accessServiceDescription":"Provide metadata services and watch dog notification to the governance action services.","accessServiceWiki":"https://egeria-project.org/services/omas/governance-engine/overview/","accessServiceOperationalStatus":"ENABLED","accessServiceOutTopic":{"class":"Connection","headerVersion":0,"displayName":"Kafka Event Bus Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.eventbus.topic.kafka.KafkaOpenMetadataTopicProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"egeria.omag.server.active-metadata-store.omas.governanceengine.outTopic"},"configurationProperties":{"producer":{"bootstrap.servers":"{{kafkaEndpoint}}"},"local.server.id":"be01b0c5-b4c8-4278-a28d-338f57747bb2","consumer":{"bootstrap.servers":"{{kafkaEndpoint}}"}}}},{"class":"AccessServiceConfig","accessServiceId":211,"accessServiceDevelopmentStatus":"IN_DEVELOPMENT","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.dataprivacy.admin.DataPrivacyAdmin","accessServiceName":"Data Privacy","accessServiceFullName":"Data Privacy OMAS","accessServiceURLMarker":"data-privacy","accessServiceDescription":"Manage governance of privacy.","accessServiceWiki":"https://egeria-project.org/services/omas/data-privacy/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":222,"accessServiceDevelopmentStatus":"IN_DEVELOPMENT","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.securitymanager.admin.SecurityManagerAdmin","accessServiceName":"Security Manager","accessServiceFullName":"Security Manager OMAS","accessServiceURLMarker":"security-manager","accessServiceDescription":"Manages exchange of metadata with a security service.","accessServiceWiki":"https://egeria-project.org/services/omas/security-manager/overview/","accessServiceOperationalStatus":"ENABLED","accessServiceOutTopic":{"class":"Connection","headerVersion":0,"displayName":"Kafka Event Bus Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.eventbus.topic.kafka.KafkaOpenMetadataTopicProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"egeria.omag.server.active-metadata-store.omas.securitymanager.outTopic"},"configurationProperties":{"producer":{"bootstrap.servers":"{{kafkaEndpoint}}"},"local.server.id":"be01b0c5-b4c8-4278-a28d-338f57747bb2","consumer":{"bootstrap.servers":"{{kafkaEndpoint}}"}}}}],"repositoryServicesConfig":{"class":"RepositoryServicesConfig","auditLogConnections":[{"class":"Connection","headerVersion":0,"qualifiedName":"Console- default","displayName":"Console","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.repositoryservices.auditlogstore.console.ConsoleAuditLogStoreProvider"},"configurationProperties":{"supportedSeverities":["Unknown","Information","Decision","Action","Error","Exception","Security","Startup","Shutdown","Asset","Cohort"]}},{"class":"VirtualConnection","headerVersion":0,"qualifiedName":"EventTopic logging","displayName":"EventTopic logging","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.repositoryservices.auditlogstore.eventtopic.EventTopicAuditLogStoreProvider"},"configurationProperties":{"supportedSeverities":["Information","Decision","Action","Error","Exception","Security","Startup","Shutdown","Asset","Cohort","Activity"]},"embeddedConnections":[{"class":"EmbeddedConnection","headerVersion":0,"position":0,"displayName":"active-metadata-store Audit Log Event Topic Destination","embeddedConnection":{"class":"Connection","headerVersion":0,"displayName":"Kafka Event Bus Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.eventbus.topic.kafka.KafkaOpenMetadataTopicProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"egeria.omag.logging"},"configurationProperties":{"producer":{"bootstrap.servers":"{{kafkaEndpoint}}"},"local.server.id":"be01b0c5-b4c8-4278-a28d-338f57747bb2","consumer":{"bootstrap.servers":"{{kafkaEndpoint}}"},"eventDirection":"outOnly"}}}]}],"openMetadataArchiveConnections":[{"class":"Connection","headerVersion":0,"displayName":"Open Metadata Archive File content-packs/OpenConnectorsArchive.omarchive Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.repositoryservices.archiveconnector.file.FileBasedOpenMetadataArchiveStoreProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"content-packs/OpenConnectorsArchive.omarchive"}}],"localRepositoryConfig":{"class":"LocalRepositoryConfig","metadataCollectionId":"ce6edc02-06b0-4dac-b610-b396d6e9e988","localRepositoryMode":"OPEN_METADATA_NATIVE","localRepositoryLocalConnection":{"class":"Connection","headerVersion":0,"displayName":"Local KV XTDB Repository","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.repositoryservices.xtdb.repositoryconnector.XTDBOMRSRepositoryConnectorProvider"},"configurationProperties":{"xtdbConfig":{"xtdb.lucene/lucene-store":{"db-dir":"data/servers/active-metadata-store/repository/xtdb-kv/lucene"},"xtdb/tx-log":{"kv-store":{"db-dir":"data/servers/active-metadata-store/repository/xtdb-kv/rdb-tx","xtdb/module":"xtdb.rocksdb/->kv-store"}},"xtdb/index-store":{"kv-store":{"db-dir":"data/servers/active-metadata-store/repository/xtdb-kv/rdb-index","xtdb/module":"xtdb.rocksdb/->kv-store"}},"xtdb/document-store":{"kv-store":{"db-dir":"data/servers/active-metadata-store/repository/xtdb-kv/rdb-docs","xtdb/module":"xtdb.rocksdb/->kv-store"}}}}},"localRepositoryRemoteConnection":{"class":"Connection","headerVersion":0,"displayName":"Local Repository Remote Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.repositoryservices.rest.repositoryconnector.OMRSRESTRepositoryConnectorProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"https://localhost:9443/servers/active-metadata-store"}},"eventsToSaveRule":"ALL","eventsToSendRule":"ALL"},"enterpriseAccessConfig":{"class":"EnterpriseAccessConfig","enterpriseMetadataCollectionName":"active-metadata-store Enterprise Metadata Collection","enterpriseMetadataCollectionId":"c7301c01-1709-4a0f-8319-c8b243e61bd9","enterpriseOMRSTopicConnection":{"class":"VirtualConnection","headerVersion":0,"displayName":"Enterprise OMRS Topic Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.repositoryservices.connectors.omrstopic.OMRSTopicProvider"},"embeddedConnections":[{"class":"EmbeddedConnection","headerVersion":0,"position":0,"displayName":"Enterprise OMRS Events","embeddedConnection":{"class":"Connection","headerVersion":0,"displayName":"Kafka Event Bus Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.eventbus.topic.inmemory.InMemoryOpenMetadataTopicProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"active-metadata-store.openmetadata.repositoryservices.enterprise.active-metadata-store.OMRSTopic"},"configurationProperties":{"local.server.id":"be01b0c5-b4c8-4278-a28d-338f57747bb2","eventDirection":"inOut"}}}]},"enterpriseOMRSTopicProtocolVersion":"V1"}},"auditTrail":["Mon Mar 11 17:18:15 GMT 2024 garygeeke updated configuration for local server's userId to activenpa.","Mon Mar 11 17:18:15 GMT 2024 garygeeke updated configuration for local server's description to A metadata store that supports Open Metadata Access Services (OMASs) with event notifications. It provides metadata to view-server, engine-host and integration-daemon..","Mon Mar 11 17:18:15 GMT 2024 garygeeke updated configuration for the local repository.","Mon Mar 11 17:18:15 GMT 2024 garygeeke updated configuration for default event bus.","Mon Mar 11 17:18:15 GMT 2024 garygeeke updated configuration for access services.","Mon Mar 11 17:18:15 GMT 2024 garygeeke updated configuration for enterprise repository services (used by access services).","Mon Mar 11 17:18:15 GMT 2024 garygeeke updated list of open metadata archives loaded at server start up.","Mon Mar 11 17:18:15 GMT 2024 garygeeke added to list of audit log destinations."]} \ No newline at end of file diff --git a/open-metadata-resources/open-metadata-deployment/sample-configs/engine-host/config/engine-host.config b/open-metadata-resources/open-metadata-deployment/sample-configs/engine-host/config/engine-host.config index a45bfa1a232..b3a977753fb 100644 --- a/open-metadata-resources/open-metadata-deployment/sample-configs/engine-host/config/engine-host.config +++ b/open-metadata-resources/open-metadata-deployment/sample-configs/engine-host/config/engine-host.config @@ -1 +1 @@ -{"class":"OMAGServerConfig","versionId":"V2.0","localServerId":"9fd804b2-8829-423c-a341-34e5f4f8228c","localServerName":"engine-host","localServerURL":"https://localhost:9443","localServerUserId":"enginenpa","maxPageSize":1000,"repositoryServicesConfig":{"class":"RepositoryServicesConfig","auditLogConnections":[{"class":"Connection","headerVersion":0,"qualifiedName":"Console- default","displayName":"Console","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.repositoryservices.auditlogstore.console.ConsoleAuditLogStoreProvider"},"configurationProperties":{"supportedSeverities":["Unknown","Information","Decision","Action","Error","Exception","Security","Startup","Shutdown","Asset","Cohort"]}}]},"engineHostServicesConfig":{"class":"EngineHostServicesConfig","engineList":[{"class":"EngineConfig","engineId":"4fe58760-ec4c-4f23-89c2-f7ae979e0e8b","engineQualifiedName":"AssetSurvey","engineUserId":"generalnpa"},{"class":"EngineConfig","engineId":"a80b17a8-ce6f-4cbc-b8bc-ff71b594f175","engineQualifiedName":"FileProvisioning","engineUserId":"generalnpa"},{"class":"EngineConfig","engineId":"6a86651a-c9c1-4aee-8a83-4c028d89f775","engineQualifiedName":"AssetOnboarding","engineUserId":"generalnpa"},{"class":"EngineConfig","engineId":"947248ee-a6eb-4f99-8376-7ff488b6281e","engineQualifiedName":"Stewardship","engineUserId":"generalnpa"}],"omagserverName":"active-metadata-store","omagserverPlatformRootURL":"https://localhost:9443"},"auditTrail":["Wed Mar 06 14:57:12 GMT 2024 garygeeke updated configuration for local server's userId to enginenpa."]} \ No newline at end of file +{"class":"OMAGServerConfig","versionId":"V2.0","localServerId":"f329f69b-ea06-4896-bf50-8752c6396813","localServerName":"engine-host","localServerDescription":"A server that runs governance service requests, triggered by engine actions created in active-metadata-store.","localServerURL":"https://localhost:9443","localServerUserId":"enginenpa","maxPageSize":1000,"eventBusConfig":{"class":"EventBusConfig","topicURLRoot":"egeria.omag","configurationProperties":{"producer":{"bootstrap.servers":"{{kafkaEndpoint}}"},"consumer":{"bootstrap.servers":"{{kafkaEndpoint}}"}}},"repositoryServicesConfig":{"class":"RepositoryServicesConfig","auditLogConnections":[{"class":"Connection","headerVersion":0,"qualifiedName":"Console- default","displayName":"Console","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.repositoryservices.auditlogstore.console.ConsoleAuditLogStoreProvider"},"configurationProperties":{"supportedSeverities":["Unknown","Information","Decision","Action","Error","Exception","Security","Startup","Shutdown","Asset","Cohort"]}},{"class":"VirtualConnection","headerVersion":0,"qualifiedName":"EventTopic logging","displayName":"EventTopic logging","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.repositoryservices.auditlogstore.eventtopic.EventTopicAuditLogStoreProvider"},"configurationProperties":{"supportedSeverities":["Information","Decision","Action","Error","Exception","Security","Startup","Shutdown","Asset","Cohort","Activity"]},"embeddedConnections":[{"class":"EmbeddedConnection","headerVersion":0,"position":0,"displayName":"engine-host Audit Log Event Topic Destination","embeddedConnection":{"class":"Connection","headerVersion":0,"displayName":"Kafka Event Bus Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.eventbus.topic.kafka.KafkaOpenMetadataTopicProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"egeria.omag.logging"},"configurationProperties":{"producer":{"bootstrap.servers":"{{kafkaEndpoint}}"},"local.server.id":"f329f69b-ea06-4896-bf50-8752c6396813","consumer":{"bootstrap.servers":"{{kafkaEndpoint}}"},"eventDirection":"outOnly"}}}]}]},"engineHostServicesConfig":{"class":"EngineHostServicesConfig","engineList":[{"class":"EngineConfig","engineId":"4fe58760-ec4c-4f23-89c2-f7ae979e0e8b","engineQualifiedName":"AssetSurvey","engineUserId":"generalnpa"},{"class":"EngineConfig","engineId":"a80b17a8-ce6f-4cbc-b8bc-ff71b594f175","engineQualifiedName":"FileProvisioning","engineUserId":"generalnpa"},{"class":"EngineConfig","engineId":"6a86651a-c9c1-4aee-8a83-4c028d89f775","engineQualifiedName":"AssetOnboarding","engineUserId":"generalnpa"},{"class":"EngineConfig","engineId":"947248ee-a6eb-4f99-8376-7ff488b6281e","engineQualifiedName":"Stewardship","engineUserId":"generalnpa"}],"omagserverPlatformRootURL":"https://localhost:9443","omagserverName":"active-metadata-store"},"auditTrail":["Mon Mar 11 17:18:16 GMT 2024 garygeeke updated configuration for local server's userId to enginenpa.","Mon Mar 11 17:18:16 GMT 2024 garygeeke updated configuration for local server's description to A server that runs governance service requests, triggered by engine actions created in active-metadata-store..","Mon Mar 11 17:18:16 GMT 2024 garygeeke updated configuration for default event bus.","Mon Mar 11 17:18:16 GMT 2024 garygeeke added to list of audit log destinations."]} \ No newline at end of file diff --git a/open-metadata-resources/open-metadata-deployment/sample-configs/integration-daemon/config/integration-daemon.config b/open-metadata-resources/open-metadata-deployment/sample-configs/integration-daemon/config/integration-daemon.config index e6cb0d3d010..5bcc26e5a6b 100644 --- a/open-metadata-resources/open-metadata-deployment/sample-configs/integration-daemon/config/integration-daemon.config +++ b/open-metadata-resources/open-metadata-deployment/sample-configs/integration-daemon/config/integration-daemon.config @@ -1 +1 @@ -{"class":"OMAGServerConfig","versionId":"V2.0","localServerId":"19b199e3-1487-40b6-a221-3fa8c22b69ec","localServerName":"integration-daemon","localServerURL":"https://localhost:9443","localServerUserId":"daemonnpa","maxPageSize":1000,"dynamicIntegrationGroupsConfig":[{"class":"IntegrationGroupConfig","integrationGroupQualifiedName":"Egeria:IntegrationGroup:DefaultIntegrationGroup","omagserverName":"active-metadata-store","omagserverPlatformRootURL":"https://localhost:9443"}],"repositoryServicesConfig":{"class":"RepositoryServicesConfig","auditLogConnections":[{"class":"Connection","headerVersion":0,"qualifiedName":"Console- default","displayName":"Console","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.repositoryservices.auditlogstore.console.ConsoleAuditLogStoreProvider"},"configurationProperties":{"supportedSeverities":["Unknown","Information","Decision","Action","Error","Exception","Security","Startup","Shutdown","Asset","Cohort"]}}]},"auditTrail":["Wed Mar 06 14:57:13 GMT 2024 garygeeke updated configuration for local server's userId to daemonnpa.","Wed Mar 06 14:57:13 GMT 2024 garygeeke updated configuration for integration group Egeria:IntegrationGroup:DefaultIntegrationGroup."]} \ No newline at end of file +{"class":"OMAGServerConfig","versionId":"V2.0","localServerId":"6ece3816-b612-4a01-a2fe-caf8e48ff673","localServerName":"integration-daemon","localServerDescription":"A server that runs integration connectors that synchronize and exchange metadata with different types of technologies and tools.","localServerURL":"https://localhost:9443","localServerUserId":"daemonnpa","maxPageSize":1000,"eventBusConfig":{"class":"EventBusConfig","topicURLRoot":"egeria.omag","configurationProperties":{"producer":{"bootstrap.servers":"{{kafkaEndpoint}}"},"consumer":{"bootstrap.servers":"{{kafkaEndpoint}}"}}},"dynamicIntegrationGroupsConfig":[{"class":"IntegrationGroupConfig","integrationGroupQualifiedName":"Egeria:IntegrationGroup:DefaultIntegrationGroup","omagserverPlatformRootURL":"https://localhost:9443","omagserverName":"active-metadata-store"}],"repositoryServicesConfig":{"class":"RepositoryServicesConfig","auditLogConnections":[{"class":"Connection","headerVersion":0,"qualifiedName":"Console- default","displayName":"Console","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.repositoryservices.auditlogstore.console.ConsoleAuditLogStoreProvider"},"configurationProperties":{"supportedSeverities":["Unknown","Information","Decision","Action","Error","Exception","Security","Startup","Shutdown","Asset","Cohort"]}},{"class":"VirtualConnection","headerVersion":0,"qualifiedName":"EventTopic logging","displayName":"EventTopic logging","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.repositoryservices.auditlogstore.eventtopic.EventTopicAuditLogStoreProvider"},"configurationProperties":{"supportedSeverities":["Information","Decision","Action","Error","Exception","Security","Startup","Shutdown","Asset","Cohort","Activity"]},"embeddedConnections":[{"class":"EmbeddedConnection","headerVersion":0,"position":0,"displayName":"integration-daemon Audit Log Event Topic Destination","embeddedConnection":{"class":"Connection","headerVersion":0,"displayName":"Kafka Event Bus Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.eventbus.topic.kafka.KafkaOpenMetadataTopicProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"egeria.omag.logging"},"configurationProperties":{"producer":{"bootstrap.servers":"{{kafkaEndpoint}}"},"local.server.id":"6ece3816-b612-4a01-a2fe-caf8e48ff673","consumer":{"bootstrap.servers":"{{kafkaEndpoint}}"},"eventDirection":"outOnly"}}}]}]},"auditTrail":["Mon Mar 11 17:18:16 GMT 2024 garygeeke updated configuration for local server's userId to daemonnpa.","Mon Mar 11 17:18:16 GMT 2024 garygeeke updated configuration for local server's description to A server that runs integration connectors that synchronize and exchange metadata with different types of technologies and tools..","Mon Mar 11 17:18:16 GMT 2024 garygeeke updated configuration for integration group Egeria:IntegrationGroup:DefaultIntegrationGroup.","Mon Mar 11 17:18:16 GMT 2024 garygeeke updated configuration for default event bus.","Mon Mar 11 17:18:16 GMT 2024 garygeeke added to list of audit log destinations."]} \ No newline at end of file diff --git a/open-metadata-resources/open-metadata-deployment/sample-configs/simple-metadata-store/config/simple-metadata-store.config b/open-metadata-resources/open-metadata-deployment/sample-configs/simple-metadata-store/config/simple-metadata-store.config index 7bb4c629c69..1faca7672bf 100644 --- a/open-metadata-resources/open-metadata-deployment/sample-configs/simple-metadata-store/config/simple-metadata-store.config +++ b/open-metadata-resources/open-metadata-deployment/sample-configs/simple-metadata-store/config/simple-metadata-store.config @@ -1 +1 @@ -{"class":"OMAGServerConfig","versionId":"V2.0","localServerId":"832c7825-2445-4510-ae6a-4d5afef7fcbf","localServerName":"simple-metadata-store","localServerURL":"https://localhost:9443","localServerUserId":"simplenpa","maxPageSize":1000,"accessServicesConfig":[{"class":"AccessServiceConfig","accessServiceId":210,"accessServiceDevelopmentStatus":"STABLE","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.datamanager.admin.DataManagerAdmin","accessServiceName":"Data Manager","accessServiceFullName":"Data Manager OMAS","accessServiceURLMarker":"data-manager","accessServiceDescription":"Capture changes to the data stores and data set managed by a data manager such as a database server, content manager or file system.","accessServiceWiki":"https://egeria-project.org/services/omas/data-manager/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":226,"accessServiceDevelopmentStatus":"TECHNICAL_PREVIEW","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.subjectarea.admin.SubjectAreaAdmin","accessServiceName":"Subject Area","accessServiceFullName":"Subject Area OMAS","accessServiceURLMarker":"subject-area","accessServiceDescription":"Document knowledge about a subject area in a glossary.","accessServiceWiki":"https://egeria-project.org/services/omas/subject-area/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":213,"accessServiceDevelopmentStatus":"IN_DEVELOPMENT","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.designmodel.admin.DesignModelAdmin","accessServiceName":"Design Model","accessServiceFullName":"Design Model OMAS","accessServiceURLMarker":"design-model","accessServiceDescription":"Exchange design model content with tools and standard packages.","accessServiceWiki":"https://egeria-project.org/services/omas/design-model/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":223,"accessServiceDevelopmentStatus":"IN_DEVELOPMENT","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.securityofficer.server.admin.SecurityOfficerAdmin","accessServiceName":"Security Officer","accessServiceFullName":"Security Officer OMAS","accessServiceURLMarker":"security-officer","accessServiceDescription":"Set up rules and security tags to protect data.","accessServiceWiki":"https://egeria-project.org/services/omas/security-officer/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":204,"accessServiceDevelopmentStatus":"STABLE","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.assetmanager.admin.AssetManagerAdmin","accessServiceName":"Asset Manager","accessServiceFullName":"Asset Manager OMAS","accessServiceURLMarker":"asset-manager","accessServiceDescription":"Manage metadata from a third party asset manager","accessServiceWiki":"https://egeria-project.org/services/omas/asset-manager/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":208,"accessServiceDevelopmentStatus":"TECHNICAL_PREVIEW","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.itinfrastructure.admin.ITInfrastructureAdmin","accessServiceName":"IT Infrastructure","accessServiceFullName":"IT Infrastructure OMAS","accessServiceURLMarker":"it-infrastructure","accessServiceDescription":"Manage information about the deployed IT infrastructure.","accessServiceWiki":"https://egeria-project.org/services/omas/it-infrastructure/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":212,"accessServiceDevelopmentStatus":"IN_DEVELOPMENT","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.datascience.admin.DataScienceAdmin","accessServiceName":"Data Science","accessServiceFullName":"Data Science OMAS","accessServiceURLMarker":"data-science","accessServiceDescription":"Create and manage data science definitions and models.","accessServiceWiki":"https://egeria-project.org/services/omas/data-science/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":207,"accessServiceDevelopmentStatus":"STABLE","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.communityprofile.admin.CommunityProfileAdmin","accessServiceName":"Community Profile","accessServiceFullName":"Community Profile OMAS","accessServiceURLMarker":"community-profile","accessServiceDescription":"Define personal profile and collaborate.","accessServiceWiki":"https://egeria-project.org/services/omas/community-profile/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":209,"accessServiceDevelopmentStatus":"IN_DEVELOPMENT","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.dataengine.server.admin.DataEngineAdmin","accessServiceName":"Data Engine","accessServiceFullName":"Data Engine OMAS","accessServiceURLMarker":"data-engine","accessServiceDescription":"Exchange process models and lineage with a data engine.","accessServiceWiki":"https://egeria-project.org/services/omas/data-engine/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":215,"accessServiceDevelopmentStatus":"TECHNICAL_PREVIEW","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.digitalarchitecture.admin.DigitalArchitectureAdmin","accessServiceName":"Digital Architecture","accessServiceFullName":"Digital Architecture OMAS","accessServiceURLMarker":"digital-architecture","accessServiceDescription":"Design of the digital services for an organization","accessServiceWiki":"https://egeria-project.org/services/omas/digital-architecture/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":227,"accessServiceDevelopmentStatus":"STABLE","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.governanceserver.admin.GovernanceServerAdmin","accessServiceName":"Governance Server","accessServiceFullName":"Governance Server OMAS","accessServiceURLMarker":"governance-server","accessServiceDescription":"Supply the governance engine definitions to the engine hosts and the and integration group definitions to the integration daemons.","accessServiceWiki":"https://egeria-project.org/services/omas/governance-server/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":205,"accessServiceDevelopmentStatus":"STABLE","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.assetowner.admin.AssetOwnerAdmin","accessServiceName":"Asset Owner","accessServiceFullName":"Asset Owner OMAS","accessServiceURLMarker":"asset-owner","accessServiceDescription":"Manage an asset","accessServiceWiki":"https://egeria-project.org/services/omas/asset-owner/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":225,"accessServiceDevelopmentStatus":"TECHNICAL_PREVIEW","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.stewardshipaction.admin.StewardshipActionAdmin","accessServiceName":"Stewardship Action","accessServiceFullName":"Stewardship Action OMAS","accessServiceURLMarker":"stewardship-action","accessServiceDescription":"Manage exceptions and actions from open governance.","accessServiceWiki":"https://egeria-project.org/services/omas/stewardship-action/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":220,"accessServiceDevelopmentStatus":"TECHNICAL_PREVIEW","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.governanceprogram.admin.GovernanceProgramAdmin","accessServiceName":"Governance Program","accessServiceFullName":"Governance Program OMAS","accessServiceURLMarker":"governance-program","accessServiceDescription":"Manage the governance program.","accessServiceWiki":"https://egeria-project.org/services/omas/governance-program/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":216,"accessServiceDevelopmentStatus":"TECHNICAL_PREVIEW","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.digitalservice.admin.DigitalServiceAdmin","accessServiceName":"Digital Service","accessServiceFullName":"Digital Service OMAS","accessServiceURLMarker":"digital-service","accessServiceDescription":"Manage a digital service through its lifecycle.","accessServiceWiki":"https://egeria-project.org/services/omas/digital-service/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":203,"accessServiceDevelopmentStatus":"IN_DEVELOPMENT","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.assetlineage.admin.AssetLineageAdmin","accessServiceName":"Asset Lineage","accessServiceFullName":"Asset Lineage OMAS","accessServiceURLMarker":"asset-lineage","accessServiceDescription":"Publish asset lineage","accessServiceWiki":"https://egeria-project.org/services/omas/asset-lineage/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":201,"accessServiceDevelopmentStatus":"STABLE","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.assetconsumer.admin.AssetConsumerAdmin","accessServiceName":"Asset Consumer","accessServiceFullName":"Asset Consumer OMAS","accessServiceURLMarker":"asset-consumer","accessServiceDescription":"Access assets through connectors.","accessServiceWiki":"https://egeria-project.org/services/omas/asset-consumer/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":214,"accessServiceDevelopmentStatus":"IN_DEVELOPMENT","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.devops.admin.DevOpsAdmin","accessServiceName":"DevOps","accessServiceFullName":"DevOps OMAS","accessServiceURLMarker":"devops","accessServiceDescription":"Manage the metadata about the assets managed by a DevOps pipeline.","accessServiceWiki":"https://egeria-project.org/services/omas/dev-ops/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":224,"accessServiceDevelopmentStatus":"IN_DEVELOPMENT","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.softwaredeveloper.admin.SoftwareDeveloperAdmin","accessServiceName":"Software Developer","accessServiceFullName":"Software Developer OMAS","accessServiceURLMarker":"software-developer","accessServiceDescription":"Interact with software development tools.","accessServiceWiki":"https://egeria-project.org/services/omas/software-developer/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":221,"accessServiceDevelopmentStatus":"IN_DEVELOPMENT","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.projectmanagement.admin.ProjectManagementAdmin","accessServiceName":"Project Management","accessServiceFullName":"Project Management OMAS","accessServiceURLMarker":"project-management","accessServiceDescription":"Manage governance related projects.","accessServiceWiki":"https://egeria-project.org/services/omas/project-management/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":219,"accessServiceDevelopmentStatus":"STABLE","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.governanceengine.admin.GovernanceEngineAdmin","accessServiceName":"Governance Engine","accessServiceFullName":"Governance Engine OMAS","accessServiceURLMarker":"governance-engine","accessServiceDescription":"Provide metadata services and watch dog notification to the governance action services.","accessServiceWiki":"https://egeria-project.org/services/omas/governance-engine/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":211,"accessServiceDevelopmentStatus":"IN_DEVELOPMENT","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.dataprivacy.admin.DataPrivacyAdmin","accessServiceName":"Data Privacy","accessServiceFullName":"Data Privacy OMAS","accessServiceURLMarker":"data-privacy","accessServiceDescription":"Manage governance of privacy.","accessServiceWiki":"https://egeria-project.org/services/omas/data-privacy/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":222,"accessServiceDevelopmentStatus":"IN_DEVELOPMENT","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.securitymanager.admin.SecurityManagerAdmin","accessServiceName":"Security Manager","accessServiceFullName":"Security Manager OMAS","accessServiceURLMarker":"security-manager","accessServiceDescription":"Manages exchange of metadata with a security service.","accessServiceWiki":"https://egeria-project.org/services/omas/security-manager/overview/","accessServiceOperationalStatus":"ENABLED"}],"repositoryServicesConfig":{"class":"RepositoryServicesConfig","auditLogConnections":[{"class":"Connection","headerVersion":0,"qualifiedName":"Console- default","displayName":"Console","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.repositoryservices.auditlogstore.console.ConsoleAuditLogStoreProvider"},"configurationProperties":{"supportedSeverities":["Unknown","Information","Decision","Action","Error","Exception","Security","Startup","Shutdown","Asset","Cohort"]}}],"localRepositoryConfig":{"class":"LocalRepositoryConfig","metadataCollectionId":"5b1e3bb5-0441-4f61-a9e6-97ad31fad08b","localRepositoryMode":"OPEN_METADATA_NATIVE","localRepositoryLocalConnection":{"class":"Connection","headerVersion":0,"displayName":"In Memory Local Repository Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.repositoryservices.inmemory.repositoryconnector.InMemoryOMRSRepositoryConnectorProvider"}},"localRepositoryRemoteConnection":{"class":"Connection","headerVersion":0,"displayName":"Local Repository Remote Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.repositoryservices.rest.repositoryconnector.OMRSRESTRepositoryConnectorProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"https://localhost:9443/servers/simple-metadata-store"}},"eventsToSaveRule":"ALL","eventsToSendRule":"ALL"},"enterpriseAccessConfig":{"class":"EnterpriseAccessConfig","enterpriseMetadataCollectionName":"simple-metadata-store Enterprise Metadata Collection","enterpriseMetadataCollectionId":"ed47ec11-eca0-4586-a7c1-b69da869553e","enterpriseOMRSTopicConnection":{"class":"VirtualConnection","headerVersion":0,"displayName":"Enterprise OMRS Topic Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.repositoryservices.connectors.omrstopic.OMRSTopicProvider"},"embeddedConnections":[{"class":"EmbeddedConnection","headerVersion":0,"position":0,"displayName":"Enterprise OMRS Events","embeddedConnection":{"class":"Connection","headerVersion":0,"displayName":"Kafka Event Bus Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.eventbus.topic.inmemory.InMemoryOpenMetadataTopicProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"simple-metadata-store.openmetadata.repositoryservices.enterprise.simple-metadata-store.OMRSTopic"},"configurationProperties":{"local.server.id":"832c7825-2445-4510-ae6a-4d5afef7fcbf","eventDirection":"inOut"}}}]},"enterpriseOMRSTopicProtocolVersion":"V1"}},"auditTrail":["Wed Mar 06 14:57:12 GMT 2024 garygeeke updated configuration for local server's userId to simplenpa.","Wed Mar 06 14:57:12 GMT 2024 garygeeke updated configuration for the local repository.","Wed Mar 06 14:57:12 GMT 2024 garygeeke updated configuration for access services.","Wed Mar 06 14:57:12 GMT 2024 garygeeke updated configuration for enterprise repository services (used by access services)."]} \ No newline at end of file +{"class":"OMAGServerConfig","versionId":"V2.0","localServerId":"28a514e6-d832-40ce-89d0-98d7ed7290b7","localServerName":"simple-metadata-store","localServerDescription":"A metadata store that supports Open Metadata Access Services (OMASs) without event notifications.","localServerURL":"https://localhost:9443","localServerUserId":"simplenpa","maxPageSize":1000,"accessServicesConfig":[{"class":"AccessServiceConfig","accessServiceId":210,"accessServiceDevelopmentStatus":"STABLE","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.datamanager.admin.DataManagerAdmin","accessServiceName":"Data Manager","accessServiceFullName":"Data Manager OMAS","accessServiceURLMarker":"data-manager","accessServiceDescription":"Capture changes to the data stores and data set managed by a data manager such as a database server, content manager or file system.","accessServiceWiki":"https://egeria-project.org/services/omas/data-manager/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":226,"accessServiceDevelopmentStatus":"TECHNICAL_PREVIEW","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.subjectarea.admin.SubjectAreaAdmin","accessServiceName":"Subject Area","accessServiceFullName":"Subject Area OMAS","accessServiceURLMarker":"subject-area","accessServiceDescription":"Document knowledge about a subject area in a glossary.","accessServiceWiki":"https://egeria-project.org/services/omas/subject-area/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":213,"accessServiceDevelopmentStatus":"IN_DEVELOPMENT","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.designmodel.admin.DesignModelAdmin","accessServiceName":"Design Model","accessServiceFullName":"Design Model OMAS","accessServiceURLMarker":"design-model","accessServiceDescription":"Exchange design model content with tools and standard packages.","accessServiceWiki":"https://egeria-project.org/services/omas/design-model/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":223,"accessServiceDevelopmentStatus":"IN_DEVELOPMENT","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.securityofficer.server.admin.SecurityOfficerAdmin","accessServiceName":"Security Officer","accessServiceFullName":"Security Officer OMAS","accessServiceURLMarker":"security-officer","accessServiceDescription":"Set up rules and security tags to protect data.","accessServiceWiki":"https://egeria-project.org/services/omas/security-officer/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":204,"accessServiceDevelopmentStatus":"STABLE","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.assetmanager.admin.AssetManagerAdmin","accessServiceName":"Asset Manager","accessServiceFullName":"Asset Manager OMAS","accessServiceURLMarker":"asset-manager","accessServiceDescription":"Manage metadata from a third party asset manager","accessServiceWiki":"https://egeria-project.org/services/omas/asset-manager/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":208,"accessServiceDevelopmentStatus":"TECHNICAL_PREVIEW","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.itinfrastructure.admin.ITInfrastructureAdmin","accessServiceName":"IT Infrastructure","accessServiceFullName":"IT Infrastructure OMAS","accessServiceURLMarker":"it-infrastructure","accessServiceDescription":"Manage information about the deployed IT infrastructure.","accessServiceWiki":"https://egeria-project.org/services/omas/it-infrastructure/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":212,"accessServiceDevelopmentStatus":"IN_DEVELOPMENT","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.datascience.admin.DataScienceAdmin","accessServiceName":"Data Science","accessServiceFullName":"Data Science OMAS","accessServiceURLMarker":"data-science","accessServiceDescription":"Create and manage data science definitions and models.","accessServiceWiki":"https://egeria-project.org/services/omas/data-science/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":207,"accessServiceDevelopmentStatus":"STABLE","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.communityprofile.admin.CommunityProfileAdmin","accessServiceName":"Community Profile","accessServiceFullName":"Community Profile OMAS","accessServiceURLMarker":"community-profile","accessServiceDescription":"Define personal profile and collaborate.","accessServiceWiki":"https://egeria-project.org/services/omas/community-profile/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":209,"accessServiceDevelopmentStatus":"IN_DEVELOPMENT","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.dataengine.server.admin.DataEngineAdmin","accessServiceName":"Data Engine","accessServiceFullName":"Data Engine OMAS","accessServiceURLMarker":"data-engine","accessServiceDescription":"Exchange process models and lineage with a data engine.","accessServiceWiki":"https://egeria-project.org/services/omas/data-engine/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":215,"accessServiceDevelopmentStatus":"TECHNICAL_PREVIEW","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.digitalarchitecture.admin.DigitalArchitectureAdmin","accessServiceName":"Digital Architecture","accessServiceFullName":"Digital Architecture OMAS","accessServiceURLMarker":"digital-architecture","accessServiceDescription":"Design of the digital services for an organization","accessServiceWiki":"https://egeria-project.org/services/omas/digital-architecture/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":227,"accessServiceDevelopmentStatus":"STABLE","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.governanceserver.admin.GovernanceServerAdmin","accessServiceName":"Governance Server","accessServiceFullName":"Governance Server OMAS","accessServiceURLMarker":"governance-server","accessServiceDescription":"Supply the governance engine definitions to the engine hosts and the and integration group definitions to the integration daemons.","accessServiceWiki":"https://egeria-project.org/services/omas/governance-server/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":205,"accessServiceDevelopmentStatus":"STABLE","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.assetowner.admin.AssetOwnerAdmin","accessServiceName":"Asset Owner","accessServiceFullName":"Asset Owner OMAS","accessServiceURLMarker":"asset-owner","accessServiceDescription":"Manage an asset","accessServiceWiki":"https://egeria-project.org/services/omas/asset-owner/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":225,"accessServiceDevelopmentStatus":"TECHNICAL_PREVIEW","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.stewardshipaction.admin.StewardshipActionAdmin","accessServiceName":"Stewardship Action","accessServiceFullName":"Stewardship Action OMAS","accessServiceURLMarker":"stewardship-action","accessServiceDescription":"Manage exceptions and actions from open governance.","accessServiceWiki":"https://egeria-project.org/services/omas/stewardship-action/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":220,"accessServiceDevelopmentStatus":"TECHNICAL_PREVIEW","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.governanceprogram.admin.GovernanceProgramAdmin","accessServiceName":"Governance Program","accessServiceFullName":"Governance Program OMAS","accessServiceURLMarker":"governance-program","accessServiceDescription":"Manage the governance program.","accessServiceWiki":"https://egeria-project.org/services/omas/governance-program/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":216,"accessServiceDevelopmentStatus":"TECHNICAL_PREVIEW","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.digitalservice.admin.DigitalServiceAdmin","accessServiceName":"Digital Service","accessServiceFullName":"Digital Service OMAS","accessServiceURLMarker":"digital-service","accessServiceDescription":"Manage a digital service through its lifecycle.","accessServiceWiki":"https://egeria-project.org/services/omas/digital-service/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":203,"accessServiceDevelopmentStatus":"IN_DEVELOPMENT","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.assetlineage.admin.AssetLineageAdmin","accessServiceName":"Asset Lineage","accessServiceFullName":"Asset Lineage OMAS","accessServiceURLMarker":"asset-lineage","accessServiceDescription":"Publish asset lineage","accessServiceWiki":"https://egeria-project.org/services/omas/asset-lineage/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":201,"accessServiceDevelopmentStatus":"STABLE","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.assetconsumer.admin.AssetConsumerAdmin","accessServiceName":"Asset Consumer","accessServiceFullName":"Asset Consumer OMAS","accessServiceURLMarker":"asset-consumer","accessServiceDescription":"Access assets through connectors.","accessServiceWiki":"https://egeria-project.org/services/omas/asset-consumer/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":214,"accessServiceDevelopmentStatus":"IN_DEVELOPMENT","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.devops.admin.DevOpsAdmin","accessServiceName":"DevOps","accessServiceFullName":"DevOps OMAS","accessServiceURLMarker":"devops","accessServiceDescription":"Manage the metadata about the assets managed by a DevOps pipeline.","accessServiceWiki":"https://egeria-project.org/services/omas/dev-ops/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":224,"accessServiceDevelopmentStatus":"IN_DEVELOPMENT","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.softwaredeveloper.admin.SoftwareDeveloperAdmin","accessServiceName":"Software Developer","accessServiceFullName":"Software Developer OMAS","accessServiceURLMarker":"software-developer","accessServiceDescription":"Interact with software development tools.","accessServiceWiki":"https://egeria-project.org/services/omas/software-developer/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":221,"accessServiceDevelopmentStatus":"IN_DEVELOPMENT","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.projectmanagement.admin.ProjectManagementAdmin","accessServiceName":"Project Management","accessServiceFullName":"Project Management OMAS","accessServiceURLMarker":"project-management","accessServiceDescription":"Manage governance related projects.","accessServiceWiki":"https://egeria-project.org/services/omas/project-management/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":219,"accessServiceDevelopmentStatus":"STABLE","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.governanceengine.admin.GovernanceEngineAdmin","accessServiceName":"Governance Engine","accessServiceFullName":"Governance Engine OMAS","accessServiceURLMarker":"governance-engine","accessServiceDescription":"Provide metadata services and watch dog notification to the governance action services.","accessServiceWiki":"https://egeria-project.org/services/omas/governance-engine/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":211,"accessServiceDevelopmentStatus":"IN_DEVELOPMENT","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.dataprivacy.admin.DataPrivacyAdmin","accessServiceName":"Data Privacy","accessServiceFullName":"Data Privacy OMAS","accessServiceURLMarker":"data-privacy","accessServiceDescription":"Manage governance of privacy.","accessServiceWiki":"https://egeria-project.org/services/omas/data-privacy/overview/","accessServiceOperationalStatus":"ENABLED"},{"class":"AccessServiceConfig","accessServiceId":222,"accessServiceDevelopmentStatus":"IN_DEVELOPMENT","accessServiceAdminClass":"org.odpi.openmetadata.accessservices.securitymanager.admin.SecurityManagerAdmin","accessServiceName":"Security Manager","accessServiceFullName":"Security Manager OMAS","accessServiceURLMarker":"security-manager","accessServiceDescription":"Manages exchange of metadata with a security service.","accessServiceWiki":"https://egeria-project.org/services/omas/security-manager/overview/","accessServiceOperationalStatus":"ENABLED"}],"repositoryServicesConfig":{"class":"RepositoryServicesConfig","auditLogConnections":[{"class":"Connection","headerVersion":0,"qualifiedName":"Console- default","displayName":"Console","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.repositoryservices.auditlogstore.console.ConsoleAuditLogStoreProvider"},"configurationProperties":{"supportedSeverities":["Unknown","Information","Decision","Action","Error","Exception","Security","Startup","Shutdown","Asset","Cohort"]}}],"localRepositoryConfig":{"class":"LocalRepositoryConfig","metadataCollectionId":"319894fe-1aec-4658-9ce0-59ace042e481","localRepositoryMode":"OPEN_METADATA_NATIVE","localRepositoryLocalConnection":{"class":"Connection","headerVersion":0,"displayName":"In Memory Local Repository Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.repositoryservices.inmemory.repositoryconnector.InMemoryOMRSRepositoryConnectorProvider"}},"localRepositoryRemoteConnection":{"class":"Connection","headerVersion":0,"displayName":"Local Repository Remote Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.repositoryservices.rest.repositoryconnector.OMRSRESTRepositoryConnectorProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"https://localhost:9443/servers/simple-metadata-store"}},"eventsToSaveRule":"ALL","eventsToSendRule":"ALL"},"enterpriseAccessConfig":{"class":"EnterpriseAccessConfig","enterpriseMetadataCollectionName":"simple-metadata-store Enterprise Metadata Collection","enterpriseMetadataCollectionId":"5b605ee4-d5df-435b-99cf-8274754e5a8e","enterpriseOMRSTopicConnection":{"class":"VirtualConnection","headerVersion":0,"displayName":"Enterprise OMRS Topic Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.repositoryservices.connectors.omrstopic.OMRSTopicProvider"},"embeddedConnections":[{"class":"EmbeddedConnection","headerVersion":0,"position":0,"displayName":"Enterprise OMRS Events","embeddedConnection":{"class":"Connection","headerVersion":0,"displayName":"Kafka Event Bus Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.eventbus.topic.inmemory.InMemoryOpenMetadataTopicProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"simple-metadata-store.openmetadata.repositoryservices.enterprise.simple-metadata-store.OMRSTopic"},"configurationProperties":{"local.server.id":"28a514e6-d832-40ce-89d0-98d7ed7290b7","eventDirection":"inOut"}}}]},"enterpriseOMRSTopicProtocolVersion":"V1"}},"auditTrail":["Mon Mar 11 17:18:14 GMT 2024 garygeeke updated configuration for local server's userId to simplenpa.","Mon Mar 11 17:18:15 GMT 2024 garygeeke updated configuration for local server's description to A metadata store that supports Open Metadata Access Services (OMASs) without event notifications..","Mon Mar 11 17:18:15 GMT 2024 garygeeke updated configuration for the local repository.","Mon Mar 11 17:18:15 GMT 2024 garygeeke updated configuration for access services.","Mon Mar 11 17:18:15 GMT 2024 garygeeke updated configuration for enterprise repository services (used by access services)."]} \ No newline at end of file diff --git a/open-metadata-resources/open-metadata-deployment/sample-configs/view-server/config/view-server.config b/open-metadata-resources/open-metadata-deployment/sample-configs/view-server/config/view-server.config index a8afcc910c0..2866e620486 100644 --- a/open-metadata-resources/open-metadata-deployment/sample-configs/view-server/config/view-server.config +++ b/open-metadata-resources/open-metadata-deployment/sample-configs/view-server/config/view-server.config @@ -1 +1 @@ -{"class":"OMAGServerConfig","versionId":"V2.0","localServerId":"f577a95d-9554-495c-b522-d2277463f20d","localServerName":"view-server","localServerURL":"https://localhost:9443","localServerUserId":"viewnpa","maxPageSize":1000,"viewServicesConfig":[{"class":"IntegrationViewServiceConfig","viewServiceId":809,"viewServiceDevelopmentStatus":"IN_DEVELOPMENT","viewServiceAdminClass":"org.odpi.openmetadata.viewservices.automatedcuration.admin.AutomatedCurationAdmin","viewServiceName":"Automated Curation","viewServiceFullName":"Automated Curation OMVS","viewServiceURLMarker":"automated-curation","viewServiceDescription":"Manage Egeria's automation services.","viewServiceWiki":"https://egeria-project.org/services/omvs/automated-curation/overview/","viewServicePartnerService":"Asset Owner OMAS","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"https://localhost:9443","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Metadata server with XTDB repository and supporting Apache Kafka notifications.","serverName":"active-metadata-store","serverInstanceName":"Active Metadata Access Store","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Metadata server with in-memory repository and no event notifications.","serverName":"simple-metadata-store","serverInstanceName":"Simple Metadata Access Store","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Integration daemon supporting the synchronization of metadata with third party platforms and tools.","serverName":"integration-daemon","serverInstanceName":"Integration Daemon","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Engine host server running the AssetSurvey and Asset Governance governance engines.","serverName":"engine-host","serverInstanceName":"Engine Host","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"View server providing REST API support to user interfaces and non-Java environments.","serverName":"view-server","serverInstanceName":"View Server","platformName":"Platform:9443"}],"omagserverName":"active-metadata-store","omagserverPlatformRootURL":"https://localhost:9443"},{"class":"IntegrationViewServiceConfig","viewServiceId":800,"viewServiceDevelopmentStatus":"IN_DEVELOPMENT","viewServiceAdminClass":"org.odpi.openmetadata.viewservices.glossaryauthor.admin.GlossaryAuthorViewAdmin","viewServiceName":"Glossary Author","viewServiceFullName":"Glossary Author OMVS","viewServiceURLMarker":"glossary-author","viewServiceDescription":"View Service for glossary authoring.","viewServiceWiki":"https://egeria-project.org/services/omvs/glossary-author/overview","viewServicePartnerService":"Subject Area OMAS","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"https://localhost:9443","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Metadata server with XTDB repository and supporting Apache Kafka notifications.","serverName":"active-metadata-store","serverInstanceName":"Active Metadata Access Store","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Metadata server with in-memory repository and no event notifications.","serverName":"simple-metadata-store","serverInstanceName":"Simple Metadata Access Store","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Integration daemon supporting the synchronization of metadata with third party platforms and tools.","serverName":"integration-daemon","serverInstanceName":"Integration Daemon","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Engine host server running the AssetSurvey and Asset Governance governance engines.","serverName":"engine-host","serverInstanceName":"Engine Host","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"View server providing REST API support to user interfaces and non-Java environments.","serverName":"view-server","serverInstanceName":"View Server","platformName":"Platform:9443"}],"omagserverName":"active-metadata-store","omagserverPlatformRootURL":"https://localhost:9443"},{"class":"IntegrationViewServiceConfig","viewServiceId":803,"viewServiceDevelopmentStatus":"TECHNICAL_PREVIEW","viewServiceAdminClass":"org.odpi.openmetadata.viewservices.dino.admin.DinoViewAdmin","viewServiceName":"Dynamic Infrastructure and Operations","viewServiceFullName":"Dynamic Infrastructure and Operations OMVS","viewServiceURLMarker":"dino","viewServiceDescription":"Explore and operate an open metadata ecosystem.","viewServiceWiki":"https://egeria-project.org/services/omvs/dino/overview","viewServicePartnerService":"Server Operations","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"https://localhost:9443","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Metadata server with XTDB repository and supporting Apache Kafka notifications.","serverName":"active-metadata-store","serverInstanceName":"Active Metadata Access Store","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Metadata server with in-memory repository and no event notifications.","serverName":"simple-metadata-store","serverInstanceName":"Simple Metadata Access Store","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Integration daemon supporting the synchronization of metadata with third party platforms and tools.","serverName":"integration-daemon","serverInstanceName":"Integration Daemon","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Engine host server running the AssetSurvey and Asset Governance governance engines.","serverName":"engine-host","serverInstanceName":"Engine Host","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"View server providing REST API support to user interfaces and non-Java environments.","serverName":"view-server","serverInstanceName":"View Server","platformName":"Platform:9443"}],"omagserverName":"active-metadata-store","omagserverPlatformRootURL":"https://localhost:9443"},{"class":"IntegrationViewServiceConfig","viewServiceId":801,"viewServiceDevelopmentStatus":"TECHNICAL_PREVIEW","viewServiceAdminClass":"org.odpi.openmetadata.viewservices.rex.admin.RexViewAdmin","viewServiceName":"Repository Explorer","viewServiceFullName":"Repository Explorer OMVS","viewServiceURLMarker":"rex","viewServiceDescription":"Explore open metadata instances.","viewServiceWiki":"https://egeria-project.org/services/omvs/rex/overview","viewServicePartnerService":"Open Metadata Repository Services (OMRS)","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"https://localhost:9443","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Metadata server with XTDB repository and supporting Apache Kafka notifications.","serverName":"active-metadata-store","serverInstanceName":"Active Metadata Access Store","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Metadata server with in-memory repository and no event notifications.","serverName":"simple-metadata-store","serverInstanceName":"Simple Metadata Access Store","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Integration daemon supporting the synchronization of metadata with third party platforms and tools.","serverName":"integration-daemon","serverInstanceName":"Integration Daemon","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Engine host server running the AssetSurvey and Asset Governance governance engines.","serverName":"engine-host","serverInstanceName":"Engine Host","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"View server providing REST API support to user interfaces and non-Java environments.","serverName":"view-server","serverInstanceName":"View Server","platformName":"Platform:9443"}],"omagserverName":"active-metadata-store","omagserverPlatformRootURL":"https://localhost:9443"},{"class":"IntegrationViewServiceConfig","viewServiceId":806,"viewServiceDevelopmentStatus":"TECHNICAL_PREVIEW","viewServiceAdminClass":"org.odpi.openmetadata.viewservices.glossaryworkflow.admin.GlossaryWorkflowAdmin","viewServiceName":"Glossary Workflow","viewServiceFullName":"Glossary Workflow OMVS","viewServiceURLMarker":"glossary-workflow","viewServiceDescription":"Create glossary terms and organize them into categories as part of a controlled workflow process. It supports the editing glossary and multiple states.","viewServiceWiki":"https://egeria-project.org/services/omvs/glossary-workflow/overview/","viewServicePartnerService":"Asset Manager OMAS","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"https://localhost:9443","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Metadata server with XTDB repository and supporting Apache Kafka notifications.","serverName":"active-metadata-store","serverInstanceName":"Active Metadata Access Store","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Metadata server with in-memory repository and no event notifications.","serverName":"simple-metadata-store","serverInstanceName":"Simple Metadata Access Store","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Integration daemon supporting the synchronization of metadata with third party platforms and tools.","serverName":"integration-daemon","serverInstanceName":"Integration Daemon","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Engine host server running the AssetSurvey and Asset Governance governance engines.","serverName":"engine-host","serverInstanceName":"Engine Host","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"View server providing REST API support to user interfaces and non-Java environments.","serverName":"view-server","serverInstanceName":"View Server","platformName":"Platform:9443"}],"omagserverName":"active-metadata-store","omagserverPlatformRootURL":"https://localhost:9443"},{"class":"IntegrationViewServiceConfig","viewServiceId":807,"viewServiceDevelopmentStatus":"IN_DEVELOPMENT","viewServiceAdminClass":"org.odpi.openmetadata.viewservices.myprofile.admin.MyProfileAdmin","viewServiceName":"My Profile","viewServiceFullName":"My Profile OMVS","viewServiceURLMarker":"my-profile","viewServiceDescription":"Manage information about the logged on user as well as their preferences.","viewServiceWiki":"https://egeria-project.org/services/omvs/my-profile/overview/","viewServicePartnerService":"Community Profile OMAS","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"https://localhost:9443","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Metadata server with XTDB repository and supporting Apache Kafka notifications.","serverName":"active-metadata-store","serverInstanceName":"Active Metadata Access Store","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Metadata server with in-memory repository and no event notifications.","serverName":"simple-metadata-store","serverInstanceName":"Simple Metadata Access Store","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Integration daemon supporting the synchronization of metadata with third party platforms and tools.","serverName":"integration-daemon","serverInstanceName":"Integration Daemon","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Engine host server running the AssetSurvey and Asset Governance governance engines.","serverName":"engine-host","serverInstanceName":"Engine Host","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"View server providing REST API support to user interfaces and non-Java environments.","serverName":"view-server","serverInstanceName":"View Server","platformName":"Platform:9443"}],"omagserverName":"active-metadata-store","omagserverPlatformRootURL":"https://localhost:9443"},{"class":"IntegrationViewServiceConfig","viewServiceId":802,"viewServiceDevelopmentStatus":"TECHNICAL_PREVIEW","viewServiceAdminClass":"org.odpi.openmetadata.viewservices.tex.admin.TexViewAdmin","viewServiceName":"Type Explorer","viewServiceFullName":"Type Explorer OMVS","viewServiceURLMarker":"tex","viewServiceDescription":"Explore the open metadata types in a repository or cohort.","viewServiceWiki":"https://egeria-project.org/services/omvs/tex/overview","viewServicePartnerService":"Open Metadata Repository Services (OMRS)","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"https://localhost:9443","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Metadata server with XTDB repository and supporting Apache Kafka notifications.","serverName":"active-metadata-store","serverInstanceName":"Active Metadata Access Store","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Metadata server with in-memory repository and no event notifications.","serverName":"simple-metadata-store","serverInstanceName":"Simple Metadata Access Store","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Integration daemon supporting the synchronization of metadata with third party platforms and tools.","serverName":"integration-daemon","serverInstanceName":"Integration Daemon","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Engine host server running the AssetSurvey and Asset Governance governance engines.","serverName":"engine-host","serverInstanceName":"Engine Host","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"View server providing REST API support to user interfaces and non-Java environments.","serverName":"view-server","serverInstanceName":"View Server","platformName":"Platform:9443"}],"omagserverName":"active-metadata-store","omagserverPlatformRootURL":"https://localhost:9443"},{"class":"IntegrationViewServiceConfig","viewServiceId":804,"viewServiceDevelopmentStatus":"IN_DEVELOPMENT","viewServiceAdminClass":"org.odpi.openmetadata.viewservices.serverauthor.admin.ServerAuthorViewAdmin","viewServiceName":"Server Author","viewServiceFullName":"Server Author OMVS","viewServiceURLMarker":"server-author","viewServiceDescription":"Author server configuration.","viewServiceWiki":"https://egeria-project.org/services/omvs/server-author/overview/","viewServicePartnerService":"Administration Services","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"https://localhost:9443","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Metadata server with XTDB repository and supporting Apache Kafka notifications.","serverName":"active-metadata-store","serverInstanceName":"Active Metadata Access Store","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Metadata server with in-memory repository and no event notifications.","serverName":"simple-metadata-store","serverInstanceName":"Simple Metadata Access Store","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Integration daemon supporting the synchronization of metadata with third party platforms and tools.","serverName":"integration-daemon","serverInstanceName":"Integration Daemon","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Engine host server running the AssetSurvey and Asset Governance governance engines.","serverName":"engine-host","serverInstanceName":"Engine Host","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"View server providing REST API support to user interfaces and non-Java environments.","serverName":"view-server","serverInstanceName":"View Server","platformName":"Platform:9443"}],"omagserverName":"active-metadata-store","omagserverPlatformRootURL":"https://localhost:9443"},{"class":"IntegrationViewServiceConfig","viewServiceId":805,"viewServiceDevelopmentStatus":"TECHNICAL_PREVIEW","viewServiceAdminClass":"org.odpi.openmetadata.viewservices.glossarybrowser.admin.GlossaryBrowserAdmin","viewServiceName":"Glossary Browser","viewServiceFullName":"Glossary Browser OMVS","viewServiceURLMarker":"glossary-browser","viewServiceDescription":"View glossary terms and categories within a glossary.","viewServiceWiki":"https://egeria-project.org/services/omvs/glossary-browser/overview/","viewServicePartnerService":"Asset Manager OMAS","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"https://localhost:9443","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Metadata server with XTDB repository and supporting Apache Kafka notifications.","serverName":"active-metadata-store","serverInstanceName":"Active Metadata Access Store","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Metadata server with in-memory repository and no event notifications.","serverName":"simple-metadata-store","serverInstanceName":"Simple Metadata Access Store","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Integration daemon supporting the synchronization of metadata with third party platforms and tools.","serverName":"integration-daemon","serverInstanceName":"Integration Daemon","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Engine host server running the AssetSurvey and Asset Governance governance engines.","serverName":"engine-host","serverInstanceName":"Engine Host","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"View server providing REST API support to user interfaces and non-Java environments.","serverName":"view-server","serverInstanceName":"View Server","platformName":"Platform:9443"}],"omagserverName":"active-metadata-store","omagserverPlatformRootURL":"https://localhost:9443"},{"class":"IntegrationViewServiceConfig","viewServiceId":808,"viewServiceDevelopmentStatus":"IN_DEVELOPMENT","viewServiceAdminClass":"org.odpi.openmetadata.viewservices.assetcatalog.admin.AssetCatalogAdmin","viewServiceName":"Asset Catalog","viewServiceFullName":"Asset Catalog OMVS","viewServiceURLMarker":"asset-catalog","viewServiceDescription":"Search and understand your assets.","viewServiceWiki":"https://egeria-project.org/services/omvs/asset-catalog/overview/","viewServicePartnerService":"Asset Consumer OMAS","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"https://localhost:9443","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Metadata server with XTDB repository and supporting Apache Kafka notifications.","serverName":"active-metadata-store","serverInstanceName":"Active Metadata Access Store","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Metadata server with in-memory repository and no event notifications.","serverName":"simple-metadata-store","serverInstanceName":"Simple Metadata Access Store","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Integration daemon supporting the synchronization of metadata with third party platforms and tools.","serverName":"integration-daemon","serverInstanceName":"Integration Daemon","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Engine host server running the AssetSurvey and Asset Governance governance engines.","serverName":"engine-host","serverInstanceName":"Engine Host","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"View server providing REST API support to user interfaces and non-Java environments.","serverName":"view-server","serverInstanceName":"View Server","platformName":"Platform:9443"}],"omagserverName":"active-metadata-store","omagserverPlatformRootURL":"https://localhost:9443"}],"repositoryServicesConfig":{"class":"RepositoryServicesConfig","auditLogConnections":[{"class":"Connection","headerVersion":0,"qualifiedName":"Console- default","displayName":"Console","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.repositoryservices.auditlogstore.console.ConsoleAuditLogStoreProvider"},"configurationProperties":{"supportedSeverities":["Unknown","Information","Decision","Action","Error","Exception","Security","Startup","Shutdown","Asset","Cohort"]}}]},"auditTrail":["Wed Mar 06 14:57:12 GMT 2024 garygeeke updated configuration for local server's userId to viewnpa.","Wed Mar 06 14:57:12 GMT 2024 garygeeke updated configuration for view services."]} \ No newline at end of file +{"class":"OMAGServerConfig","versionId":"V2.0","localServerId":"4dd09f98-7a64-43c6-aba7-9500fb6d6fe0","localServerName":"view-server","localServerDescription":"A server that supplies REST API endpoints for User Interfaces and non-Java environments such as Python.","localServerURL":"https://localhost:9443","localServerUserId":"viewnpa","maxPageSize":1000,"eventBusConfig":{"class":"EventBusConfig","topicURLRoot":"egeria.omag","configurationProperties":{"producer":{"bootstrap.servers":"{{kafkaEndpoint}}"},"consumer":{"bootstrap.servers":"{{kafkaEndpoint}}"}}},"viewServicesConfig":[{"class":"IntegrationViewServiceConfig","viewServiceId":809,"viewServiceDevelopmentStatus":"IN_DEVELOPMENT","viewServiceAdminClass":"org.odpi.openmetadata.viewservices.automatedcuration.admin.AutomatedCurationAdmin","viewServiceName":"Automated Curation","viewServiceFullName":"Automated Curation OMVS","viewServiceURLMarker":"automated-curation","viewServiceDescription":"Manage Egeria's automation services.","viewServiceWiki":"https://egeria-project.org/services/omvs/automated-curation/overview/","viewServicePartnerService":"Asset Owner OMAS","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"https://localhost:9443","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Metadata server with XTDB repository and supporting Apache Kafka notifications.","serverName":"active-metadata-store","serverInstanceName":"Active Metadata Access Store","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Metadata server with in-memory repository and no event notifications.","serverName":"simple-metadata-store","serverInstanceName":"Simple Metadata Access Store","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Integration daemon supporting the synchronization of metadata with third party platforms and tools.","serverName":"integration-daemon","serverInstanceName":"Integration Daemon","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Engine host server running the AssetSurvey and Asset Governance governance engines.","serverName":"engine-host","serverInstanceName":"Engine Host","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"View server providing REST API support to user interfaces and non-Java environments.","serverName":"view-server","serverInstanceName":"View Server","platformName":"Platform:9443"}],"omagserverPlatformRootURL":"https://localhost:9443","omagserverName":"active-metadata-store"},{"class":"IntegrationViewServiceConfig","viewServiceId":800,"viewServiceDevelopmentStatus":"IN_DEVELOPMENT","viewServiceAdminClass":"org.odpi.openmetadata.viewservices.glossaryauthor.admin.GlossaryAuthorViewAdmin","viewServiceName":"Glossary Author","viewServiceFullName":"Glossary Author OMVS","viewServiceURLMarker":"glossary-author","viewServiceDescription":"View Service for glossary authoring.","viewServiceWiki":"https://egeria-project.org/services/omvs/glossary-author/overview","viewServicePartnerService":"Subject Area OMAS","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"https://localhost:9443","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Metadata server with XTDB repository and supporting Apache Kafka notifications.","serverName":"active-metadata-store","serverInstanceName":"Active Metadata Access Store","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Metadata server with in-memory repository and no event notifications.","serverName":"simple-metadata-store","serverInstanceName":"Simple Metadata Access Store","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Integration daemon supporting the synchronization of metadata with third party platforms and tools.","serverName":"integration-daemon","serverInstanceName":"Integration Daemon","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Engine host server running the AssetSurvey and Asset Governance governance engines.","serverName":"engine-host","serverInstanceName":"Engine Host","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"View server providing REST API support to user interfaces and non-Java environments.","serverName":"view-server","serverInstanceName":"View Server","platformName":"Platform:9443"}],"omagserverPlatformRootURL":"https://localhost:9443","omagserverName":"active-metadata-store"},{"class":"IntegrationViewServiceConfig","viewServiceId":803,"viewServiceDevelopmentStatus":"TECHNICAL_PREVIEW","viewServiceAdminClass":"org.odpi.openmetadata.viewservices.dino.admin.DinoViewAdmin","viewServiceName":"Dynamic Infrastructure and Operations","viewServiceFullName":"Dynamic Infrastructure and Operations OMVS","viewServiceURLMarker":"dino","viewServiceDescription":"Explore and operate an open metadata ecosystem.","viewServiceWiki":"https://egeria-project.org/services/omvs/dino/overview","viewServicePartnerService":"Server Operations","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"https://localhost:9443","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Metadata server with XTDB repository and supporting Apache Kafka notifications.","serverName":"active-metadata-store","serverInstanceName":"Active Metadata Access Store","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Metadata server with in-memory repository and no event notifications.","serverName":"simple-metadata-store","serverInstanceName":"Simple Metadata Access Store","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Integration daemon supporting the synchronization of metadata with third party platforms and tools.","serverName":"integration-daemon","serverInstanceName":"Integration Daemon","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Engine host server running the AssetSurvey and Asset Governance governance engines.","serverName":"engine-host","serverInstanceName":"Engine Host","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"View server providing REST API support to user interfaces and non-Java environments.","serverName":"view-server","serverInstanceName":"View Server","platformName":"Platform:9443"}],"omagserverPlatformRootURL":"https://localhost:9443","omagserverName":"active-metadata-store"},{"class":"IntegrationViewServiceConfig","viewServiceId":801,"viewServiceDevelopmentStatus":"TECHNICAL_PREVIEW","viewServiceAdminClass":"org.odpi.openmetadata.viewservices.rex.admin.RexViewAdmin","viewServiceName":"Repository Explorer","viewServiceFullName":"Repository Explorer OMVS","viewServiceURLMarker":"rex","viewServiceDescription":"Explore open metadata instances.","viewServiceWiki":"https://egeria-project.org/services/omvs/rex/overview","viewServicePartnerService":"Open Metadata Repository Services (OMRS)","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"https://localhost:9443","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Metadata server with XTDB repository and supporting Apache Kafka notifications.","serverName":"active-metadata-store","serverInstanceName":"Active Metadata Access Store","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Metadata server with in-memory repository and no event notifications.","serverName":"simple-metadata-store","serverInstanceName":"Simple Metadata Access Store","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Integration daemon supporting the synchronization of metadata with third party platforms and tools.","serverName":"integration-daemon","serverInstanceName":"Integration Daemon","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Engine host server running the AssetSurvey and Asset Governance governance engines.","serverName":"engine-host","serverInstanceName":"Engine Host","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"View server providing REST API support to user interfaces and non-Java environments.","serverName":"view-server","serverInstanceName":"View Server","platformName":"Platform:9443"}],"omagserverPlatformRootURL":"https://localhost:9443","omagserverName":"active-metadata-store"},{"class":"IntegrationViewServiceConfig","viewServiceId":806,"viewServiceDevelopmentStatus":"TECHNICAL_PREVIEW","viewServiceAdminClass":"org.odpi.openmetadata.viewservices.glossaryworkflow.admin.GlossaryWorkflowAdmin","viewServiceName":"Glossary Workflow","viewServiceFullName":"Glossary Workflow OMVS","viewServiceURLMarker":"glossary-workflow","viewServiceDescription":"Create glossary terms and organize them into categories as part of a controlled workflow process. It supports the editing glossary and multiple states.","viewServiceWiki":"https://egeria-project.org/services/omvs/glossary-workflow/overview/","viewServicePartnerService":"Asset Manager OMAS","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"https://localhost:9443","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Metadata server with XTDB repository and supporting Apache Kafka notifications.","serverName":"active-metadata-store","serverInstanceName":"Active Metadata Access Store","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Metadata server with in-memory repository and no event notifications.","serverName":"simple-metadata-store","serverInstanceName":"Simple Metadata Access Store","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Integration daemon supporting the synchronization of metadata with third party platforms and tools.","serverName":"integration-daemon","serverInstanceName":"Integration Daemon","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Engine host server running the AssetSurvey and Asset Governance governance engines.","serverName":"engine-host","serverInstanceName":"Engine Host","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"View server providing REST API support to user interfaces and non-Java environments.","serverName":"view-server","serverInstanceName":"View Server","platformName":"Platform:9443"}],"omagserverPlatformRootURL":"https://localhost:9443","omagserverName":"active-metadata-store"},{"class":"IntegrationViewServiceConfig","viewServiceId":807,"viewServiceDevelopmentStatus":"IN_DEVELOPMENT","viewServiceAdminClass":"org.odpi.openmetadata.viewservices.myprofile.admin.MyProfileAdmin","viewServiceName":"My Profile","viewServiceFullName":"My Profile OMVS","viewServiceURLMarker":"my-profile","viewServiceDescription":"Manage information about the logged on user as well as their preferences.","viewServiceWiki":"https://egeria-project.org/services/omvs/my-profile/overview/","viewServicePartnerService":"Community Profile OMAS","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"https://localhost:9443","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Metadata server with XTDB repository and supporting Apache Kafka notifications.","serverName":"active-metadata-store","serverInstanceName":"Active Metadata Access Store","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Metadata server with in-memory repository and no event notifications.","serverName":"simple-metadata-store","serverInstanceName":"Simple Metadata Access Store","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Integration daemon supporting the synchronization of metadata with third party platforms and tools.","serverName":"integration-daemon","serverInstanceName":"Integration Daemon","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Engine host server running the AssetSurvey and Asset Governance governance engines.","serverName":"engine-host","serverInstanceName":"Engine Host","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"View server providing REST API support to user interfaces and non-Java environments.","serverName":"view-server","serverInstanceName":"View Server","platformName":"Platform:9443"}],"omagserverPlatformRootURL":"https://localhost:9443","omagserverName":"active-metadata-store"},{"class":"IntegrationViewServiceConfig","viewServiceId":802,"viewServiceDevelopmentStatus":"TECHNICAL_PREVIEW","viewServiceAdminClass":"org.odpi.openmetadata.viewservices.tex.admin.TexViewAdmin","viewServiceName":"Type Explorer","viewServiceFullName":"Type Explorer OMVS","viewServiceURLMarker":"tex","viewServiceDescription":"Explore the open metadata types in a repository or cohort.","viewServiceWiki":"https://egeria-project.org/services/omvs/tex/overview","viewServicePartnerService":"Open Metadata Repository Services (OMRS)","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"https://localhost:9443","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Metadata server with XTDB repository and supporting Apache Kafka notifications.","serverName":"active-metadata-store","serverInstanceName":"Active Metadata Access Store","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Metadata server with in-memory repository and no event notifications.","serverName":"simple-metadata-store","serverInstanceName":"Simple Metadata Access Store","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Integration daemon supporting the synchronization of metadata with third party platforms and tools.","serverName":"integration-daemon","serverInstanceName":"Integration Daemon","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Engine host server running the AssetSurvey and Asset Governance governance engines.","serverName":"engine-host","serverInstanceName":"Engine Host","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"View server providing REST API support to user interfaces and non-Java environments.","serverName":"view-server","serverInstanceName":"View Server","platformName":"Platform:9443"}],"omagserverPlatformRootURL":"https://localhost:9443","omagserverName":"active-metadata-store"},{"class":"IntegrationViewServiceConfig","viewServiceId":804,"viewServiceDevelopmentStatus":"IN_DEVELOPMENT","viewServiceAdminClass":"org.odpi.openmetadata.viewservices.serverauthor.admin.ServerAuthorViewAdmin","viewServiceName":"Server Author","viewServiceFullName":"Server Author OMVS","viewServiceURLMarker":"server-author","viewServiceDescription":"Author server configuration.","viewServiceWiki":"https://egeria-project.org/services/omvs/server-author/overview/","viewServicePartnerService":"Administration Services","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"https://localhost:9443","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Metadata server with XTDB repository and supporting Apache Kafka notifications.","serverName":"active-metadata-store","serverInstanceName":"Active Metadata Access Store","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Metadata server with in-memory repository and no event notifications.","serverName":"simple-metadata-store","serverInstanceName":"Simple Metadata Access Store","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Integration daemon supporting the synchronization of metadata with third party platforms and tools.","serverName":"integration-daemon","serverInstanceName":"Integration Daemon","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Engine host server running the AssetSurvey and Asset Governance governance engines.","serverName":"engine-host","serverInstanceName":"Engine Host","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"View server providing REST API support to user interfaces and non-Java environments.","serverName":"view-server","serverInstanceName":"View Server","platformName":"Platform:9443"}],"omagserverPlatformRootURL":"https://localhost:9443","omagserverName":"active-metadata-store"},{"class":"IntegrationViewServiceConfig","viewServiceId":805,"viewServiceDevelopmentStatus":"TECHNICAL_PREVIEW","viewServiceAdminClass":"org.odpi.openmetadata.viewservices.glossarybrowser.admin.GlossaryBrowserAdmin","viewServiceName":"Glossary Browser","viewServiceFullName":"Glossary Browser OMVS","viewServiceURLMarker":"glossary-browser","viewServiceDescription":"View glossary terms and categories within a glossary.","viewServiceWiki":"https://egeria-project.org/services/omvs/glossary-browser/overview/","viewServicePartnerService":"Asset Manager OMAS","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"https://localhost:9443","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Metadata server with XTDB repository and supporting Apache Kafka notifications.","serverName":"active-metadata-store","serverInstanceName":"Active Metadata Access Store","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Metadata server with in-memory repository and no event notifications.","serverName":"simple-metadata-store","serverInstanceName":"Simple Metadata Access Store","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Integration daemon supporting the synchronization of metadata with third party platforms and tools.","serverName":"integration-daemon","serverInstanceName":"Integration Daemon","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Engine host server running the AssetSurvey and Asset Governance governance engines.","serverName":"engine-host","serverInstanceName":"Engine Host","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"View server providing REST API support to user interfaces and non-Java environments.","serverName":"view-server","serverInstanceName":"View Server","platformName":"Platform:9443"}],"omagserverPlatformRootURL":"https://localhost:9443","omagserverName":"active-metadata-store"},{"class":"IntegrationViewServiceConfig","viewServiceId":808,"viewServiceDevelopmentStatus":"IN_DEVELOPMENT","viewServiceAdminClass":"org.odpi.openmetadata.viewservices.assetcatalog.admin.AssetCatalogAdmin","viewServiceName":"Asset Catalog","viewServiceFullName":"Asset Catalog OMVS","viewServiceURLMarker":"asset-catalog","viewServiceDescription":"Search and understand your assets.","viewServiceWiki":"https://egeria-project.org/services/omvs/asset-catalog/overview/","viewServicePartnerService":"Asset Consumer OMAS","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"https://localhost:9443","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Metadata server with XTDB repository and supporting Apache Kafka notifications.","serverName":"active-metadata-store","serverInstanceName":"Active Metadata Access Store","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Metadata server with in-memory repository and no event notifications.","serverName":"simple-metadata-store","serverInstanceName":"Simple Metadata Access Store","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Integration daemon supporting the synchronization of metadata with third party platforms and tools.","serverName":"integration-daemon","serverInstanceName":"Integration Daemon","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"Engine host server running the AssetSurvey and Asset Governance governance engines.","serverName":"engine-host","serverInstanceName":"Engine Host","platformName":"Platform:9443"},{"class":"ResourceEndpointConfig","resourceCategory":"Server","description":"View server providing REST API support to user interfaces and non-Java environments.","serverName":"view-server","serverInstanceName":"View Server","platformName":"Platform:9443"}],"omagserverPlatformRootURL":"https://localhost:9443","omagserverName":"active-metadata-store"}],"repositoryServicesConfig":{"class":"RepositoryServicesConfig","auditLogConnections":[{"class":"Connection","headerVersion":0,"qualifiedName":"Console- default","displayName":"Console","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.repositoryservices.auditlogstore.console.ConsoleAuditLogStoreProvider"},"configurationProperties":{"supportedSeverities":["Unknown","Information","Decision","Action","Error","Exception","Security","Startup","Shutdown","Asset","Cohort"]}},{"class":"VirtualConnection","headerVersion":0,"qualifiedName":"EventTopic logging","displayName":"EventTopic logging","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.repositoryservices.auditlogstore.eventtopic.EventTopicAuditLogStoreProvider"},"configurationProperties":{"supportedSeverities":["Information","Decision","Action","Error","Exception","Security","Startup","Shutdown","Asset","Cohort","Activity"]},"embeddedConnections":[{"class":"EmbeddedConnection","headerVersion":0,"position":0,"displayName":"view-server Audit Log Event Topic Destination","embeddedConnection":{"class":"Connection","headerVersion":0,"displayName":"Kafka Event Bus Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.eventbus.topic.kafka.KafkaOpenMetadataTopicProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"egeria.omag.logging"},"configurationProperties":{"producer":{"bootstrap.servers":"{{kafkaEndpoint}}"},"local.server.id":"4dd09f98-7a64-43c6-aba7-9500fb6d6fe0","consumer":{"bootstrap.servers":"{{kafkaEndpoint}}"},"eventDirection":"outOnly"}}}]}]},"auditTrail":["Mon Mar 11 17:18:15 GMT 2024 garygeeke updated configuration for local server's userId to viewnpa.","Mon Mar 11 17:18:15 GMT 2024 garygeeke updated configuration for local server's description to A server that supplies REST API endpoints for User Interfaces and non-Java environments such as Python..","Mon Mar 11 17:18:16 GMT 2024 garygeeke updated configuration for view services.","Mon Mar 11 17:18:16 GMT 2024 garygeeke updated configuration for default event bus.","Mon Mar 11 17:18:16 GMT 2024 garygeeke added to list of audit log destinations."]} \ No newline at end of file