diff --git a/bom/build.gradle b/bom/build.gradle index 93dc18fd6c5..348d805f09a 100644 --- a/bom/build.gradle +++ b/bom/build.gradle @@ -34,7 +34,7 @@ ext { commonsconfigurationVersion = '1.10' commonsioVersion = '2.13.0' commonsloggingVersion = '1.3.0' - commonstextVersion = '1.10.0' + commonstextVersion = '1.11.0' commonscliVersion = '1.6.0' elasticsearchVersion = '8.7.1' findbugsVersion = '3.0.2' @@ -60,7 +60,7 @@ ext { javassistVersion = '3.29.2-GA' jaxbVersion = '2.3.1' jenaVersion = '4.7.0' - jodatimeVersion = '2.12.5' + jodatimeVersion = '2.12.6' jsonldVersion = '0.13.6' junitVersion = '4.13.2' junitjupiterVersion = '5.10.0' @@ -69,10 +69,10 @@ ext { jwtApiVersion = '0.11.5' jwtImplVersion = '0.11.5' jwtJacksonVersion = '0.11.5' - kafkaVersion = '3.6.0' + kafkaVersion = '3.6.1' lang3Version = '3.14.0' logbackVersion = '1.4.5' - lettuceVersion = '6.2.6.RELEASE' + lettuceVersion = '6.3.1.RELEASE' // TODO: Version 9 now available luceneVersion = '8.11.2' openlineageVersion = '1.8.0' @@ -101,16 +101,16 @@ ext { testngVersion = '7.8.0' thriftVersion = '0.19.0' springwebVersion = '6.0.6' - tinkVersion = '1.11.0' + tinkVersion = '1.12.0' tomcatVersion = '10.1.13' validationVersion = '2.0.1.Final' gsonVersion = '2.10.1' antVersion = '1.10.14' jnrVersion = '3.1.18' cassandraVersion = '4.1.3' - protobufVersion = '3.25.1' + protobufVersion = '3.25.2' osgiVersion = '8.0.0' - log4jVersion = '2.22.0' + log4jVersion = '2.22.1' jacksonjdk8Version = '2.16.1' reactivestreamsVersion = '1.0.4' springdocStarterVersion = '2.2.0' diff --git a/open-metadata-implementation/adapters/open-connectors/survey-action-connectors/src/main/java/org/odpi/openmetadata/adapters/connectors/surveyaction/surveyfolder/FolderSurveyService.java b/open-metadata-implementation/adapters/open-connectors/survey-action-connectors/src/main/java/org/odpi/openmetadata/adapters/connectors/surveyaction/surveyfolder/FolderSurveyService.java index efb5548411e..4bc388841c8 100644 --- a/open-metadata-implementation/adapters/open-connectors/survey-action-connectors/src/main/java/org/odpi/openmetadata/adapters/connectors/surveyaction/surveyfolder/FolderSurveyService.java +++ b/open-metadata-implementation/adapters/open-connectors/survey-action-connectors/src/main/java/org/odpi/openmetadata/adapters/connectors/surveyaction/surveyfolder/FolderSurveyService.java @@ -251,13 +251,14 @@ private String setUpExternalLogFile(String surveyReportGUID, File logFile = new File(logFileName); - if (logFile.exists()) + try { + FileUtils.sizeOf(logFile); auditLog.logMessage(methodName, SurveyServiceAuditCode.REUSING_LOG_FILE.getMessageDefinition(surveyActionServiceName, logFileName)); } - else + catch (IllegalArgumentException notFound) { auditLog.logMessage(methodName, SurveyServiceAuditCode.CREATING_LOG_FILE.getMessageDefinition(surveyActionServiceName, diff --git a/open-metadata-implementation/admin-services/admin-services-api/src/main/java/org/odpi/openmetadata/adminservices/configuration/registration/GovernanceServicesDescription.java b/open-metadata-implementation/admin-services/admin-services-api/src/main/java/org/odpi/openmetadata/adminservices/configuration/registration/GovernanceServicesDescription.java index 5b9488cf972..6089b29d07c 100644 --- a/open-metadata-implementation/admin-services/admin-services-api/src/main/java/org/odpi/openmetadata/adminservices/configuration/registration/GovernanceServicesDescription.java +++ b/open-metadata-implementation/admin-services/admin-services-api/src/main/java/org/odpi/openmetadata/adminservices/configuration/registration/GovernanceServicesDescription.java @@ -18,12 +18,12 @@ public enum GovernanceServicesDescription implements Serializable /** * Store and query asset lineage. */ - OPEN_LINEAGE_SERVICES (190, - ComponentDevelopmentStatus.STABLE, - "Open Lineage Services", - "open-lineage", - "Store and query asset lineage", - "https://egeria-project.org/services/open-lineage-services/"), + LINEAGE_WAREHOUSE_SERVICES(190, + ComponentDevelopmentStatus.STABLE, + "Lineage Warehouse Services", + "open-lineage", + "Store and query asset lineage", + "https://egeria-project.org/services/lineage-warehouse-services/"), /** * Run automated open metadata conformance suite services. @@ -86,7 +86,7 @@ public static List getGovernanceServersDescriptio { List serviceDescriptionList = new ArrayList<>(); - serviceDescriptionList.add(GovernanceServicesDescription.OPEN_LINEAGE_SERVICES); + serviceDescriptionList.add(GovernanceServicesDescription.LINEAGE_WAREHOUSE_SERVICES); serviceDescriptionList.add(GovernanceServicesDescription.INTEGRATION_DAEMON_SERVICES); serviceDescriptionList.add(GovernanceServicesDescription.CONFORMANCE_SUITE_SERVICES); serviceDescriptionList.add(GovernanceServicesDescription.DATA_ENGINE_PROXY_SERVICES); diff --git a/open-metadata-implementation/admin-services/admin-services-server/src/main/java/org/odpi/openmetadata/adminservices/classifier/ServerTypeClassifier.java b/open-metadata-implementation/admin-services/admin-services-server/src/main/java/org/odpi/openmetadata/adminservices/classifier/ServerTypeClassifier.java index 90024d225a6..bd4f8e19139 100644 --- a/open-metadata-implementation/admin-services/admin-services-server/src/main/java/org/odpi/openmetadata/adminservices/classifier/ServerTypeClassifier.java +++ b/open-metadata-implementation/admin-services/admin-services-server/src/main/java/org/odpi/openmetadata/adminservices/classifier/ServerTypeClassifier.java @@ -133,7 +133,7 @@ else if (localRepositoryMode == LocalRepositoryMode.REPOSITORY_PROXY) this.validateSubsystemNotConfigured(serverName, serverTypeClassification.getServerTypeName(), - GovernanceServicesDescription.OPEN_LINEAGE_SERVICES.getServiceName(), + GovernanceServicesDescription.LINEAGE_WAREHOUSE_SERVICES.getServiceName(), openLineageServerConfig); this.validateSubsystemNotConfigured(serverName, @@ -183,7 +183,7 @@ else if (localRepositoryMode == LocalRepositoryMode.REPOSITORY_PROXY) this.validateSubsystemNotConfigured(serverName, serverTypeClassification.getServerTypeName(), - GovernanceServicesDescription.OPEN_LINEAGE_SERVICES.getServiceName(), + GovernanceServicesDescription.LINEAGE_WAREHOUSE_SERVICES.getServiceName(), openLineageServerConfig); } @@ -218,7 +218,7 @@ else if (localRepositoryMode == LocalRepositoryMode.REPOSITORY_PROXY) this.validateSubsystemNotConfigured(serverName, serverTypeClassification.getServerTypeName(), - GovernanceServicesDescription.OPEN_LINEAGE_SERVICES.getServiceName(), + GovernanceServicesDescription.LINEAGE_WAREHOUSE_SERVICES.getServiceName(), openLineageServerConfig); } @@ -253,7 +253,7 @@ else if (localRepositoryMode == LocalRepositoryMode.REPOSITORY_PROXY) this.validateSubsystemNotConfigured(serverName, serverTypeClassification.getServerTypeName(), - GovernanceServicesDescription.OPEN_LINEAGE_SERVICES.getServiceName(), + GovernanceServicesDescription.LINEAGE_WAREHOUSE_SERVICES.getServiceName(), openLineageServerConfig); } @@ -288,7 +288,7 @@ else if (localRepositoryMode == LocalRepositoryMode.REPOSITORY_PROXY) this.validateSubsystemNotConfigured(serverName, serverTypeClassification.getServerTypeName(), - GovernanceServicesDescription.OPEN_LINEAGE_SERVICES.getServiceName(), + GovernanceServicesDescription.LINEAGE_WAREHOUSE_SERVICES.getServiceName(), openLineageServerConfig); } @@ -358,7 +358,7 @@ else if (localRepositoryMode == LocalRepositoryMode.REPOSITORY_PROXY) this.validateSubsystemNotConfigured(serverName, serverTypeClassification.getServerTypeName(), - GovernanceServicesDescription.OPEN_LINEAGE_SERVICES.getServiceName(), + GovernanceServicesDescription.LINEAGE_WAREHOUSE_SERVICES.getServiceName(), openLineageServerConfig); } diff --git a/open-metadata-implementation/admin-services/admin-services-server/src/main/java/org/odpi/openmetadata/adminservices/server/OMAGServerConfigOpenLineage.java b/open-metadata-implementation/admin-services/admin-services-server/src/main/java/org/odpi/openmetadata/adminservices/server/OMAGServerConfigOpenLineage.java index 0b56cb8726c..d696e532f4e 100644 --- a/open-metadata-implementation/admin-services/admin-services-server/src/main/java/org/odpi/openmetadata/adminservices/server/OMAGServerConfigOpenLineage.java +++ b/open-metadata-implementation/admin-services/admin-services-server/src/main/java/org/odpi/openmetadata/adminservices/server/OMAGServerConfigOpenLineage.java @@ -20,7 +20,7 @@ public class OMAGServerConfigOpenLineage { private final OMAGServerAdminStoreServices configStore = new OMAGServerAdminStoreServices(); - private static final String serviceName = GovernanceServicesDescription.OPEN_LINEAGE_SERVICES.getServiceName(); + private static final String serviceName = GovernanceServicesDescription.LINEAGE_WAREHOUSE_SERVICES.getServiceName(); private static final String defaultInTopicName = "inTopic"; diff --git a/open-metadata-implementation/framework-services/gaf-metadata-management/gaf-metadata-spring/src/main/java/org/odpi/openmetadata/frameworkservices/gaf/server/spring/OpenGovernanceResource.java b/open-metadata-implementation/framework-services/gaf-metadata-management/gaf-metadata-spring/src/main/java/org/odpi/openmetadata/frameworkservices/gaf/server/spring/OpenGovernanceResource.java index 61a42de5058..22f3b8a45c8 100644 --- a/open-metadata-implementation/framework-services/gaf-metadata-management/gaf-metadata-spring/src/main/java/org/odpi/openmetadata/frameworkservices/gaf/server/spring/OpenGovernanceResource.java +++ b/open-metadata-implementation/framework-services/gaf-metadata-management/gaf-metadata-spring/src/main/java/org/odpi/openmetadata/frameworkservices/gaf/server/spring/OpenGovernanceResource.java @@ -59,7 +59,7 @@ public class OpenGovernanceResource /* ===================================================================================================================== - * A governance action governanceActionType describes a step in a governance action process + * A governance action type describes a step in a governance action process */ /** diff --git a/open-metadata-implementation/governance-servers/open-lineage-services/open-lineage-services-server/src/main/java/org/odpi/openmetadata/governanceservers/openlineage/admin/OpenLineageServerOperationalServices.java b/open-metadata-implementation/governance-servers/open-lineage-services/open-lineage-services-server/src/main/java/org/odpi/openmetadata/governanceservers/openlineage/admin/OpenLineageServerOperationalServices.java index d4049d14260..7cfed378c8c 100644 --- a/open-metadata-implementation/governance-servers/open-lineage-services/open-lineage-services-server/src/main/java/org/odpi/openmetadata/governanceservers/openlineage/admin/OpenLineageServerOperationalServices.java +++ b/open-metadata-implementation/governance-servers/open-lineage-services/open-lineage-services-server/src/main/java/org/odpi/openmetadata/governanceservers/openlineage/admin/OpenLineageServerOperationalServices.java @@ -156,7 +156,7 @@ private void initializeOLS(OpenLineageServerConfig openLineageServerConfig) thro this.openLineageServerInstance = new OpenLineageServerInstance( localServerName, - GovernanceServicesDescription.OPEN_LINEAGE_SERVICES.getServiceName(), + GovernanceServicesDescription.LINEAGE_WAREHOUSE_SERVICES.getServiceName(), maxPageSize, openLineageHandler); diff --git a/open-metadata-implementation/governance-servers/open-lineage-services/open-lineage-services-server/src/main/java/org/odpi/openmetadata/governanceservers/openlineage/server/OpenLineageInstanceHandler.java b/open-metadata-implementation/governance-servers/open-lineage-services/open-lineage-services-server/src/main/java/org/odpi/openmetadata/governanceservers/openlineage/server/OpenLineageInstanceHandler.java index d704bf648d0..efcc40a8fd0 100644 --- a/open-metadata-implementation/governance-servers/open-lineage-services/open-lineage-services-server/src/main/java/org/odpi/openmetadata/governanceservers/openlineage/server/OpenLineageInstanceHandler.java +++ b/open-metadata-implementation/governance-servers/open-lineage-services/open-lineage-services-server/src/main/java/org/odpi/openmetadata/governanceservers/openlineage/server/OpenLineageInstanceHandler.java @@ -22,7 +22,7 @@ class OpenLineageInstanceHandler extends OMAGServerServiceInstanceHandler { * Default constructor registers the governance server */ OpenLineageInstanceHandler() { - super(GovernanceServicesDescription.OPEN_LINEAGE_SERVICES.getServiceName()); + super(GovernanceServicesDescription.LINEAGE_WAREHOUSE_SERVICES.getServiceName()); } diff --git a/open-metadata-implementation/server-operations/server-operations-server/src/main/java/org/odpi/openmetadata/serveroperations/server/OMAGServerOperationalServices.java b/open-metadata-implementation/server-operations/server-operations-server/src/main/java/org/odpi/openmetadata/serveroperations/server/OMAGServerOperationalServices.java index 20a518f51ef..9f5fc0d5c70 100644 --- a/open-metadata-implementation/server-operations/server-operations-server/src/main/java/org/odpi/openmetadata/serveroperations/server/OMAGServerOperationalServices.java +++ b/open-metadata-implementation/server-operations/server-operations-server/src/main/java/org/odpi/openmetadata/serveroperations/server/OMAGServerOperationalServices.java @@ -1142,7 +1142,7 @@ else if (ServerTypeClassification.INTEGRATION_DAEMON.equals(serverTypeClassifica */ else if (ServerTypeClassification.OPEN_LINEAGE_SERVER.equals(serverTypeClassification)) { - instance.setServerServiceActiveStatus(GovernanceServicesDescription.OPEN_LINEAGE_SERVICES.getServiceName(), ServerActiveStatus.STARTING); + instance.setServerServiceActiveStatus(GovernanceServicesDescription.LINEAGE_WAREHOUSE_SERVICES.getServiceName(), ServerActiveStatus.STARTING); OpenLineageServerOperationalServices operationalOpenLineageServer = new OpenLineageServerOperationalServices(configuration.getLocalServerId(), @@ -1153,14 +1153,14 @@ else if (ServerTypeClassification.OPEN_LINEAGE_SERVER.equals(serverTypeClassific instance.setOpenLineageOperationalServices(operationalOpenLineageServer); operationalOpenLineageServer.initialize(configuration.getOpenLineageServerConfig(), operationalRepositoryServices.getAuditLog( - GovernanceServicesDescription.OPEN_LINEAGE_SERVICES.getServiceCode(), - GovernanceServicesDescription.OPEN_LINEAGE_SERVICES.getServiceDevelopmentStatus(), - GovernanceServicesDescription.OPEN_LINEAGE_SERVICES.getServiceName(), - GovernanceServicesDescription.OPEN_LINEAGE_SERVICES.getServiceDescription(), - GovernanceServicesDescription.OPEN_LINEAGE_SERVICES.getServiceWiki())); + GovernanceServicesDescription.LINEAGE_WAREHOUSE_SERVICES.getServiceCode(), + GovernanceServicesDescription.LINEAGE_WAREHOUSE_SERVICES.getServiceDevelopmentStatus(), + GovernanceServicesDescription.LINEAGE_WAREHOUSE_SERVICES.getServiceName(), + GovernanceServicesDescription.LINEAGE_WAREHOUSE_SERVICES.getServiceDescription(), + GovernanceServicesDescription.LINEAGE_WAREHOUSE_SERVICES.getServiceWiki())); - activatedServiceList.add(GovernanceServicesDescription.OPEN_LINEAGE_SERVICES.getServiceName()); - instance.setServerServiceActiveStatus(GovernanceServicesDescription.OPEN_LINEAGE_SERVICES.getServiceName(), ServerActiveStatus.RUNNING); + activatedServiceList.add(GovernanceServicesDescription.LINEAGE_WAREHOUSE_SERVICES.getServiceName()); + instance.setServerServiceActiveStatus(GovernanceServicesDescription.LINEAGE_WAREHOUSE_SERVICES.getServiceName(), ServerActiveStatus.RUNNING); } } @@ -1340,11 +1340,11 @@ public void deactivateRunningServiceInstances(String u */ if (instance.getOpenLineageOperationalServices() != null) { - instance.setServerServiceActiveStatus(GovernanceServicesDescription.OPEN_LINEAGE_SERVICES.getServiceName(), ServerActiveStatus.STOPPING); + instance.setServerServiceActiveStatus(GovernanceServicesDescription.LINEAGE_WAREHOUSE_SERVICES.getServiceName(), ServerActiveStatus.STOPPING); instance.getOpenLineageOperationalServices().shutdown(); - instance.setServerServiceActiveStatus(GovernanceServicesDescription.OPEN_LINEAGE_SERVICES.getServiceName(), ServerActiveStatus.INACTIVE); + instance.setServerServiceActiveStatus(GovernanceServicesDescription.LINEAGE_WAREHOUSE_SERVICES.getServiceName(), ServerActiveStatus.INACTIVE); } /* 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 eed6be14a9e..d39f83aa42d 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":"cd509b1f-cd7f-471e-a31b-b4c8ca811e6e","localServerName":"view-server","localServerURL":"https://localhost:9443","localServerUserId":"viewservernpa","maxPageSize":1000,"viewServicesConfig":[{"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","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"http://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 thrid party platfrms 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":"http://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","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"http://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 thrid party platfrms 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":"http://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","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"http://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 thrid party platfrms 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":"http://localhost:9443"},{"class":"IntegrationViewServiceConfig","viewServiceId":806,"viewServiceDevelopmentStatus":"IN_DEVELOPMENT","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/","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"http://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 thrid party platfrms 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":"http://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/","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"http://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 thrid party platfrms 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":"http://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","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"http://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 thrid party platfrms 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":"http://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/","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"http://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 thrid party platfrms 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":"http://localhost:9443"},{"class":"IntegrationViewServiceConfig","viewServiceId":805,"viewServiceDevelopmentStatus":"IN_DEVELOPMENT","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/","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"http://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 thrid party platfrms 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":"http://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/","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"http://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 thrid party platfrms 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":"http://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":["Sun Jan 28 14:50:06 GMT 2024 garygeeke updated configuration for local server's userId to viewservernpa.","Sun Jan 28 14:50:26 GMT 2024 garygeeke updated configuration for view services."]} \ No newline at end of file +{"class":"OMAGServerConfig","versionId":"V2.0","localServerId":"37b790c5-9678-4c9a-950b-54e55d6ee5af","localServerName":"view-server","organizationName":"myOrg","localServerURL":"https://localhost:9443","localServerUserId":"viewservernpa","maxPageSize":1200,"eventBusConfig":{"class":"EventBusConfig","topicURLRoot":"egeria.omag","configurationProperties":{"producer":{"bootstrap.servers":"{{kafkaep}}"},"consumer":{"bootstrap.servers":"{{kafkaep}}"}}},"viewServicesConfig":[{"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","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"http://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 thrid party platfrms 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","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"http://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 thrid party platfrms 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","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"http://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 thrid party platfrms 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":"IN_DEVELOPMENT","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/","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"http://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 thrid party platfrms 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/","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"http://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 thrid party platfrms 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","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"http://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 thrid party platfrms 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/","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"http://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 thrid party platfrms 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":"IN_DEVELOPMENT","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/","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"http://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 thrid party platfrms 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/","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"http://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 thrid party platfrms 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":["Thu Feb 01 17:10:42 GMT 2024 garygeeke updated configuration for local server's userId to viewservernpa.","Thu Feb 01 17:10:59 GMT 2024 garygeeke updated configuration for view services."]} \ No newline at end of file diff --git a/open-metadata-resources/open-metadata-reports/egeria-platform-report/src/main/java/org/odpi/openmetadata/reports/platform/EgeriaPlatformReport.java b/open-metadata-resources/open-metadata-reports/egeria-platform-report/src/main/java/org/odpi/openmetadata/reports/platform/EgeriaPlatformReport.java index 1bc017a49a1..558ff640c3e 100644 --- a/open-metadata-resources/open-metadata-reports/egeria-platform-report/src/main/java/org/odpi/openmetadata/reports/platform/EgeriaPlatformReport.java +++ b/open-metadata-resources/open-metadata-reports/egeria-platform-report/src/main/java/org/odpi/openmetadata/reports/platform/EgeriaPlatformReport.java @@ -610,18 +610,18 @@ void setConfiguration(OMAGServerConfig configuration) if (configuration.getOpenLineageServerConfig() != null) { - OMAGServiceDetails currentDetails = serviceDetailsMap.get(GovernanceServicesDescription.OPEN_LINEAGE_SERVICES.getServiceName()); + OMAGServiceDetails currentDetails = serviceDetailsMap.get(GovernanceServicesDescription.LINEAGE_WAREHOUSE_SERVICES.getServiceName()); if (currentDetails == null) { - currentDetails = new OMAGServiceDetails(GovernanceServicesDescription.OPEN_LINEAGE_SERVICES.getServiceName()); + currentDetails = new OMAGServiceDetails(GovernanceServicesDescription.LINEAGE_WAREHOUSE_SERVICES.getServiceName()); } currentDetails.setPartnerService(configuration.getOpenLineageServerConfig().getAccessServiceConfig().getServerName(), configuration.getOpenLineageServerConfig().getAccessServiceConfig().getServerPlatformUrlRoot(), AccessServiceDescription.ASSET_LINEAGE_OMAS.getAccessServiceFullName()); - serviceDetailsMap.put(GovernanceServicesDescription.OPEN_LINEAGE_SERVICES.getServiceName(), + serviceDetailsMap.put(GovernanceServicesDescription.LINEAGE_WAREHOUSE_SERVICES.getServiceName(), currentDetails); } }