diff --git a/.github/workflows/merge-v5.yml b/.github/workflows/merge-v5.yml index c5e977e1328..025014d4c81 100644 --- a/.github/workflows/merge-v5.yml +++ b/.github/workflows/merge-v5.yml @@ -87,8 +87,8 @@ jobs: # Publish container images(egeria) to quay.io and docker.io - name: Copy the distribution content to be used in docker copy command run: | - cp -f release.application.properties ./open-metadata-distribution/omag-server-platform/build/unpacked/egeria-platform-${{ env.VERSION }}-distribution.tar.gz/assembly/platform/application.properties - cp -r ./open-metadata-distribution/omag-server-platform/build/unpacked/egeria-platform-${{ env.VERSION }}-distribution.tar.gz/assembly/opt/sample-configs/*-* ./open-metadata-distribution/omag-server-platform/build/unpacked/egeria-platform-${{ env.VERSION }}-distribution.tar.gz/assembly/platform/data + cp -f container.application.properties ./open-metadata-distribution/omag-server-platform/build/unpacked/egeria-platform-${{ env.VERSION }}-distribution.tar.gz/assembly/platform/application.properties + cp -r ./open-metadata-distribution/omag-server-platform/build/unpacked/egeria-platform-${{ env.VERSION }}-distribution.tar.gz/assembly/opt/sample-configs/*-* ./open-metadata-distribution/omag-server-platform/build/unpacked/egeria-platform-${{ env.VERSION }}-distribution.tar.gz/assembly/platform/data/servers - name: Build and push(egeria) to quay.io and docker.io (tag latest only for main!) if: ${{ github.ref == 'refs/heads/main'}} uses: docker/build-push-action@v5 diff --git a/.github/workflows/release-v5.yml b/.github/workflows/release-v5.yml index f010a50da81..996b3eb0298 100644 --- a/.github/workflows/release-v5.yml +++ b/.github/workflows/release-v5.yml @@ -69,8 +69,8 @@ jobs: # Publish container images(egeria) to quay.io and docker.io - name: Copy the distribution content to be used in docker copy command run: | - cp -f release.application.properties ./open-metadata-distribution/omag-server-platform/build/unpacked/egeria-platform-${{ env.VERSION }}-distribution.tar.gz/assembly/platform/application.properties - cp -r ./open-metadata-distribution/omag-server-platform/build/unpacked/egeria-platform-${{ env.VERSION }}-distribution.tar.gz/assembly/opt/sample-configs/*-* ./open-metadata-distribution/omag-server-platform/build/unpacked/egeria-platform-${{ env.VERSION }}-distribution.tar.gz/assembly/platform/data + cp -f container.application.properties ./open-metadata-distribution/omag-server-platform/build/unpacked/egeria-platform-${{ env.VERSION }}-distribution.tar.gz/assembly/platform/application.properties + cp -r ./open-metadata-distribution/omag-server-platform/build/unpacked/egeria-platform-${{ env.VERSION }}-distribution.tar.gz/assembly/opt/sample-configs/*-* ./open-metadata-distribution/omag-server-platform/build/unpacked/egeria-platform-${{ env.VERSION }}-distribution.tar.gz/assembly/platform/data/servers - name: Build and push(egeria) to quay.io and docker.io uses: docker/build-push-action@v5 with: diff --git a/application.properties b/application.properties index 2b184eed640..1e8689bdebf 100644 --- a/application.properties +++ b/application.properties @@ -59,7 +59,8 @@ server.port=9443 ################################################ platform.placeholder.variables=\ {\ - "kafkaEndpoint" : "localhost:9092"\ + "kafkaEndpoint" : "localhost:9092",\ + "egeriaEndpoint" : "https://localhost:9443"\ } ################################################ diff --git a/container.application.properties b/container.application.properties new file mode 100755 index 00000000000..f8fa852e1cd --- /dev/null +++ b/container.application.properties @@ -0,0 +1,226 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright Contributors to the ODPi Egeria project. + +# ======================================================================================================== +# The application.properties file is used to configure the OMAG Server Platform which is implemented as +# a spring boot application. + +############################################### +### Default port for the OMAG Server Platform +################################################ +server.port=9443 + +############################################### +### Set up the configuration document store the OMAG Server Platform +### The values below will set up the clear text config document store +### (the default is the encrypted config document store). +################################################ +platform.configstore.provider=org.odpi.openmetadata.adapters.adminservices.configurationstore.file.FileBasedServerConfigStoreProvider +platform.configstore.endpoint=data/servers/{0}/config/{0}.config + +############################################### +### Set up the platform metadata security connector that provides authorization +### for platform administration, server operations and diagnostic calls. +### By default, there is no platform metadata security connector. +### The values below are for a sample platform metadata security connector where the only userId +### that is permitted to use the administration and platform services is `garygeeke`. +############################################### +platform.security.provider=org.odpi.openmetadata.metadatasecurity.samples.CocoPharmaPlatformSecurityProvider +platform.security.name=Coco Pharmaceuticals Platform + +############################################### +### Set up the default configuration document for any new OMAG Server configurations. +############################################### +#platform.default.config.document=\ +# {\ +# "class": "OMAGServerConfig",\ +# "organizationName": "myOrg",\ +# "maxPageSize": 1200,\ +# "eventBusConfig": \ +# {\ +# "class": "EventBusConfig",\ +# "topicURLRoot": "egeria.omag",\ +# "configurationProperties":\ +# {\ +# "producer": {"bootstrap.servers": "{{kafkaEndpoint}}"},\ +# "consumer": {"bootstrap.servers": "{{kafkaEndpoint}}"}\ +# }\ +# }\ +# } + +################################################ +### Placeholder variables are added to field values in the configuration document +### when the server is being configured using double curly braces. They are replaced by +### the values specified in platform.placeholder.variables each time the server starts up. +### +### The "kafkaEndpoint" value is the Apache Kafka endpoint, and it is used in the active-metadata-store +### sample configuration. If your Apache Kafka broker is listening on a different endpoint +### and you want to use active-metadata-store, change this variable to your Apache Kafka's address. +################################################ +platform.placeholder.variables=\ + {\ + "kafkaEndpoint" : "host.docker.internal:9092",\ + "egeriaEndpoint" : "https://host.docker.internal:9443"\ + } + +################################################ +### startup servers configuration +################################################ +#userId used to start up the list of configured servers default is 'system' +startup.user=system +# Comma separated names of servers to be started. The server names should be unquoted. +startup.server.list=active-metadata-store,engine-host,integration-daemon,view-server,simple-metadata-store + +################################################ +### SSL security. +# The keystore determines the information sent out by the server to identify itself. +# The truststore is where the certificates of trusted servers the platform is calling are located. +# (Note SSL certificate checking is performed on client-side only.) +################################################ +server.ssl.key-store=keystore.p12 +server.ssl.key-store-password=egeria +server.ssl.keyStoreType=PKCS12 +server.ssl.keyAlias=egeriaserverchassis + +server.ssl.trust-store=truststore.p12 +server.ssl.trust-store-password=egeria + +# WARNING! setting 'strict.ssl=false' allows java clients to open https connections without checking the validity of +# certificates from the servers it is calling. +# Alternate you can import self-signed certificates into java truststore or set up a truststore only for this app +# by adding the store into server.ssl.trust-store parameter +strict.ssl=false + + +################################################ +# User security +################################################ + +# Authentication source (possible values: demo, ldap, ad) +authentication.source=demo +# Authentication mode (possible values: session,token,redis) +authentication.mode=token + +#token timeout in minutes +token.timeout=15 +token.absolute.timeout=720 +token.secret=doNotTell + +#LDAP authentication + +ldap.domain= +ldap.user.search.base=ou=people,dc=egeria,dc=com +ldap.user.search.filter=uid={0} +ldap.group.search.base=ou=Groups,dc=egeria,dc=com +ldap.group.search.filter=member={0} +ldap.url=ldap://localhost:389 +ldap.group.role.attribute= +ldap.npa.dn= +ldap.npa.password= +#ldap.user.dn.patterns patterns is a list of values separated by ";" as comma is used in the ldap pattern +ldap.user.dn.patterns= + +# Redis configuration +#redis.host=localhost +#redis.port=6379 + +################################################ +### Additional demo users configuration for when authentication.source=demo +### This file is located in the resources folder of the user-authn module and built into its runtime jar +################################################ +spring.config.import=classpath:demo-users.yml + +################################################ +### Comma separated list of header names to extract from incoming HTTP requests and add to thread local. +### The default value is null and adds no headers. +### Setting the list to * means all headers are captured. +### Otherwise, list the header name in use. +################################################ +authn.header.name.list= + +################################################ +### CORS +################################################ +# Comma-separated list of origins. +# Example configuration below is for setting up local development environment where egeria-ui is hosted on one of the two urls. +# cors.allowed-origins=http://localhost,http://localhost:8081 +cors.allowed-origins=* + +################################################ +# landing page (/api/public/app/info) +################################################ +app.description=Have a question? || Get in touch via our Slack community https://slack.lfai.foundation/ @@What is Open Metadata? || Find out more on our website https://egeria-project.org/ @@Have more cool ideas? || Feel free to let us know your ideas so we can make it better. +app.title=Egeria Open Metadata | Find the right data with governance + +# ############################################################## +# Component visibility for Role based access ################### +# ############################################################## +# How it works? +# +# The roles are defined in external authentication source (provider) configured with `authentication.source`. +# For demo purposes, we are providing simple file based authentication provider. See demo-users.yml +# The matrix controlling what components are allowed on the UI views for specific role is defined in the 'role.visibleComponents' prefixed properties as follows" +# +# role.visibleComponents.{ROLE-1}={component-name-1} +# role.visibleComponents.{ROLE-2}={component-name-1},{component-name-2} +# +# This will configure the application to show the component named 'component-name-1' for all uses assigned to 'ROLE-1' +# In the same way, users that have assigned 'ROLE-2' can see more 'component-name-1' and 'component-name-2'. +# It is also possible to use wildcard '*' to enable full visibility of all components to users in the given role. +# +# Complete list of components names that can be used: +# +# about +# asset-catalog +# asset-details +# asset-details-print +# glossary +# repository-explorer +# type-explorer +# asset-lineage +# asset-lineage-print +# end-to-end +# ultimate-source +# ultimate-destination +# vertical-lineage +# +# Below is the default configuration for the two COCO_PHARMA roles we use for demo: + +role.visibleComponents.COCO_PHARMA_USER=about,asset-catalog,asset-details,asset-details-print,asset-lineage,asset-lineage-print,end-to-end,ultimate-source,ultimate-destination,vertical-lineage,glossary,repository-explorer +role.visibleComponents.COCO_PHARMA_ADMIN=* + +################################################ +### Which java packages should be scanned to locate the Spring resource definitions that define the REST APIs? +################################################ +scan.packages=org.odpi.openmetadata.* + +################################################ +### Logging +################################################ +logging.level.root=OFF +logging.level.org.springframework=ERROR +logging.level.org.springframework.boot.web.embedded.tomcat=INFO +logging.level.org.odpi.openmetadata.platformchassis.springboot=INFO +#tracing REST calls +#logging.level.org.odpi.openmetadata.commonservices.ffdc.RESTCallLogger=DEBUG + +################################################ +### Swagger Docs +################################################ +springdoc.version='@springdoc.version@' +springdoc.api-docs.enabled=true +springdoc.api-docs.path=/v3/api-docs +springdoc.swagger-ui.path=/swagger-ui.html +springdoc.swagger-ui.displayRequestDuration=true +springdoc.swagger-ui.tagsSorter=alpha +springdoc.swagger-ui.operationsSorter=alpha +springdoc.swagger-ui.docExpansion=none + +################################################ +### Spring Boot Actuator +################################################ +# Endpoints web configuration +#management.endpoints.web.exposure.include=* +management.health.cassandra.enabled=false +management.health.redis.enabled=false +management.health.ldap.enabled=false \ No newline at end of file diff --git a/open-metadata-implementation/admin-services/admin-services-api/src/main/java/org/odpi/openmetadata/adminservices/configuration/properties/OMAGServerConfig.java b/open-metadata-implementation/admin-services/admin-services-api/src/main/java/org/odpi/openmetadata/adminservices/configuration/properties/OMAGServerConfig.java index 26e6455d3c5..f21b558a6ad 100644 --- a/open-metadata-implementation/admin-services/admin-services-api/src/main/java/org/odpi/openmetadata/adminservices/configuration/properties/OMAGServerConfig.java +++ b/open-metadata-implementation/admin-services/admin-services-api/src/main/java/org/odpi/openmetadata/adminservices/configuration/properties/OMAGServerConfig.java @@ -69,7 +69,7 @@ public class OMAGServerConfig extends AdminServicesConfigHeader */ public static final String defaultLocalServerType = null; private static final String defaultLocalOrganizationName = null; - private static final String defaultLocalServerURL = "https://localhost:9443"; + private static final String defaultLocalServerURL = "{{egeriaEndpoint}}"; private static final String defaultLocalServerUserId = "OMAGServer"; public static final int defaultMaxPageSize = 1000; diff --git a/open-metadata-implementation/platform-services/Egeria-platform-services.http b/open-metadata-implementation/platform-services/Egeria-platform-services.http index ada056e944d..2168cee8705 100644 --- a/open-metadata-implementation/platform-services/Egeria-platform-services.http +++ b/open-metadata-implementation/platform-services/Egeria-platform-services.http @@ -8,13 +8,13 @@ GET {{baseURL}}/open-metadata/platform-services/users/{{adminUserId}}/server-pla ### # @name Get Platform Security Connection # Retrieve the Connection object used to create the connector that verifies the authorization of users calling the platform and admin services. -GET {{baseURL}}/open-metadata/platform-services/users/{{adminUserId}}/platform/security/connection +GET {{baseURL}}/open-metadata/platform-services/users/{{adminUserId}}/server-platform/security/connection ### # @name Set Platform Security Connection # Set up the connection for the platform security connector. This connector verifies the authorization of any user calling the platform or admin services. This call is preconfigured to set up the sample platform security connector. This allows only the Coco Pharmaceuticals IT administrator, `garygeeke`, to issue platform calls. # Once you have set up this security connector in your OMAG Server Platform, the default user `me` in the `Egeria` environment will no longer be authorized to issue REST calls to the server (try some of the requests that were "working" earlier to verify this). To switch the user to one that the OMAG Server Platform will accept, click on the eye symbol (top right), then click on `edit` and change the current value of `user` to `garygeeke`. -POST {{baseURL}}/open-metadata/platform-services/users/{{adminUserId}}/platform/security/connection +POST {{baseURL}}/open-metadata/platform-services/users/{{adminUserId}}/server-platform/security/connection Content-Type: application/json { @@ -32,7 +32,7 @@ Content-Type: application/json ### # @name Delete Platform Security Connection # Remove the currently configured Platform Security Connection. This means that no security checks will be performed by the OMAG Server Platform. -DELETE {{baseURL}}/open-metadata/platform-services/users/{{adminUserId}}/platform/security/connection +DELETE {{baseURL}}/open-metadata/platform-services/users/{{adminUserId}}/server-platform/security/connection ### # @name Get registered access services diff --git a/open-metadata-implementation/view-services/asset-catalog/asset-catalog-spring/src/main/java/org/odpi/openmetadata/viewservices/assetcatalog/server/spring/AssetCatalogResource.java b/open-metadata-implementation/view-services/asset-catalog/asset-catalog-spring/src/main/java/org/odpi/openmetadata/viewservices/assetcatalog/server/spring/AssetCatalogResource.java index cc933e99612..456b0ae0b2f 100644 --- a/open-metadata-implementation/view-services/asset-catalog/asset-catalog-spring/src/main/java/org/odpi/openmetadata/viewservices/assetcatalog/server/spring/AssetCatalogResource.java +++ b/open-metadata-implementation/view-services/asset-catalog/asset-catalog-spring/src/main/java/org/odpi/openmetadata/viewservices/assetcatalog/server/spring/AssetCatalogResource.java @@ -9,6 +9,7 @@ import org.odpi.openmetadata.accessservices.assetconsumer.rest.AssetSearchMatchesListResponse; import org.odpi.openmetadata.commonservices.ffdc.rest.FilterRequestBody; import org.odpi.openmetadata.frameworkservices.ocf.metadatamanagement.rest.AssetsResponse; +import org.odpi.openmetadata.viewservices.assetcatalog.rest.AssetCatalogSupportedTypes; import org.odpi.openmetadata.viewservices.assetcatalog.server.AssetCatalogRESTServices; import org.springframework.web.bind.annotation.*; @@ -38,6 +39,29 @@ public AssetCatalogResource() } + /** + * Returns the list with supported types for search, including the subtypes supported + * + * @param serverName name of the server to route the request to + * @return the supported types from Asset Consumer OMAS or + * PropertyServerException if a configuration on the backend + * InvalidParameterException if parameter validation fails + * UserNotAuthorizedException security access problem + */ + @GetMapping( path = "/assets/types") + + @Operation(summary="getAssetTypes", + description="Return the subtypes for asset.", + externalDocs=@ExternalDocumentation(description="Assets", + url="https://egeria-project.org/concepts/asset/")) + + public AssetCatalogSupportedTypes getSupportedTypes(@PathVariable String serverName) + { + return restAPI.getSupportedTypes(serverName); + } + + + /** * Return all the elements that are anchored to an asset plus relationships between these elements and to other elements. * 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 7605a089261..58565beed7d 100644 --- a/open-metadata-resources/open-metadata-deployment/sample-configs/BuildSampleConfigs.http +++ b/open-metadata-resources/open-metadata-deployment/sample-configs/BuildSampleConfigs.http @@ -108,13 +108,13 @@ Content-Type: application/json { "class": "ViewServiceRequestBody", "omagserverName": "active-metadata-store", - "omagserverPlatformRootURL": "{{baseURL}}", + "omagserverPlatformRootURL": "{{egeriaEndpoint}}", "resourceEndpoints": [ { "class": "ResourceEndpointConfig", "resourceCategory": "Platform", "platformName": "Platform:9443", - "platformRootURL": "{{baseURL}}", + "platformRootURL": "{{egeriaEndpoint}}", "description": "This is the default OMAG Server Platform." }, { @@ -209,7 +209,7 @@ Content-Type: application/json "engineUserId": "generalnpa" } ], - "omagserverPlatformRootURL": "{{baseURL}}", + "omagserverPlatformRootURL": "{{egeriaEndpoint}}", "omagserverName": "active-metadata-store" } @@ -236,7 +236,7 @@ Content-Type: application/json { "class": "IntegrationGroupConfig", - "omagserverPlatformRootURL": "{{baseURL}}", + "omagserverPlatformRootURL": "{{egeriaEndpoint}}", "omagserverName" : "active-metadata-store", "integrationGroupQualifiedName" : "Egeria:IntegrationGroup:DefaultIntegrationGroup" } 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 42111ae9ee0..300e3e15ee7 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":"471954f2-4c36-4bc9-9e18-e1644bb0e61a","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":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":"471954f2-4c36-4bc9-9e18-e1644bb0e61a","consumer":{"bootstrap.servers":"{{kafkaEndpoint}}"}}}},{"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":"471954f2-4c36-4bc9-9e18-e1644bb0e61a","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":"471954f2-4c36-4bc9-9e18-e1644bb0e61a","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":"471954f2-4c36-4bc9-9e18-e1644bb0e61a","consumer":{"bootstrap.servers":"{{kafkaEndpoint}}"}}}},{"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":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":"471954f2-4c36-4bc9-9e18-e1644bb0e61a","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":"471954f2-4c36-4bc9-9e18-e1644bb0e61a","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":"471954f2-4c36-4bc9-9e18-e1644bb0e61a","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":"471954f2-4c36-4bc9-9e18-e1644bb0e61a","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":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":"471954f2-4c36-4bc9-9e18-e1644bb0e61a","consumer":{"bootstrap.servers":"{{kafkaEndpoint}}"}}}},{"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":"471954f2-4c36-4bc9-9e18-e1644bb0e61a","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":"471954f2-4c36-4bc9-9e18-e1644bb0e61a","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":"471954f2-4c36-4bc9-9e18-e1644bb0e61a","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":"471954f2-4c36-4bc9-9e18-e1644bb0e61a","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/CoreContentPack.omarchive Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.repositoryservices.archiveconnector.file.FileBasedOpenMetadataArchiveStoreProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"content-packs/CoreContentPack.omarchive"}}],"localRepositoryConfig":{"class":"LocalRepositoryConfig","metadataCollectionId":"04d9d035-53f1-4ebc-8ded-03d2d0554471","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":"b1012424-c047-405a-95d2-9492886440ce","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":"471954f2-4c36-4bc9-9e18-e1644bb0e61a","eventDirection":"inOut"}}}]},"enterpriseOMRSTopicProtocolVersion":"V1"}},"auditTrail":["Thu Jun 06 08:28:54 BST 2024 garygeeke updated configuration for local server's userId to activenpa.","Thu Jun 06 08:28:54 BST 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..","Thu Jun 06 08:28:54 BST 2024 garygeeke updated configuration for the local repository.","Thu Jun 06 08:28:54 BST 2024 garygeeke updated configuration for default event bus.","Thu Jun 06 08:28:54 BST 2024 garygeeke updated configuration for access services.","Thu Jun 06 08:28:54 BST 2024 garygeeke updated configuration for enterprise repository services (used by access services).","Thu Jun 06 08:28:54 BST 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":"43248b93-854f-44a8-91a8-a37303fd29c7","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":"{{egeriaEndpoint}}","localServerUserId":"activenpa","maxPageSize":1000,"eventBusConfig":{"class":"EventBusConfig","topicURLRoot":"egeria.omag","configurationProperties":{"producer":{"bootstrap.servers":"{{kafkaEndpoint}}"},"consumer":{"bootstrap.servers":"{{kafkaEndpoint}}"}}},"accessServicesConfig":[{"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":"43248b93-854f-44a8-91a8-a37303fd29c7","consumer":{"bootstrap.servers":"{{kafkaEndpoint}}"}}}},{"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":"43248b93-854f-44a8-91a8-a37303fd29c7","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":"43248b93-854f-44a8-91a8-a37303fd29c7","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":"43248b93-854f-44a8-91a8-a37303fd29c7","consumer":{"bootstrap.servers":"{{kafkaEndpoint}}"}}}},{"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":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":"43248b93-854f-44a8-91a8-a37303fd29c7","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":"43248b93-854f-44a8-91a8-a37303fd29c7","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":"43248b93-854f-44a8-91a8-a37303fd29c7","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":"43248b93-854f-44a8-91a8-a37303fd29c7","consumer":{"bootstrap.servers":"{{kafkaEndpoint}}"}}}},{"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":"43248b93-854f-44a8-91a8-a37303fd29c7","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":"43248b93-854f-44a8-91a8-a37303fd29c7","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":"43248b93-854f-44a8-91a8-a37303fd29c7","consumer":{"bootstrap.servers":"{{kafkaEndpoint}}"}}}},{"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":"43248b93-854f-44a8-91a8-a37303fd29c7","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/CoreContentPack.omarchive Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.repositoryservices.archiveconnector.file.FileBasedOpenMetadataArchiveStoreProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"content-packs/CoreContentPack.omarchive"}}],"localRepositoryConfig":{"class":"LocalRepositoryConfig","metadataCollectionId":"2db00226-8512-45eb-9828-0d3fb9377b50","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":"{{egeriaEndpoint}}/servers/active-metadata-store"}},"eventsToSaveRule":"ALL","eventsToSendRule":"ALL"},"enterpriseAccessConfig":{"class":"EnterpriseAccessConfig","enterpriseMetadataCollectionName":"active-metadata-store Enterprise Metadata Collection","enterpriseMetadataCollectionId":"490741dc-2a2c-4800-9a23-5e505cf297ed","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":"43248b93-854f-44a8-91a8-a37303fd29c7","eventDirection":"inOut"}}}]},"enterpriseOMRSTopicProtocolVersion":"V1"}},"auditTrail":["Tue Jun 11 17:20:33 BST 2024 garygeeke updated configuration for local server's userId to activenpa.","Tue Jun 11 17:20:33 BST 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..","Tue Jun 11 17:20:33 BST 2024 garygeeke updated configuration for the local repository.","Tue Jun 11 17:20:33 BST 2024 garygeeke updated configuration for default event bus.","Tue Jun 11 17:20:33 BST 2024 garygeeke updated configuration for access services.","Tue Jun 11 17:20:33 BST 2024 garygeeke updated configuration for enterprise repository services (used by access services).","Tue Jun 11 17:20:33 BST 2024 garygeeke updated list of open metadata archives loaded at server start up."]} \ 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 68891f44056..fcfcb4108ae 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":"dfd8115a-5d16-40fa-87f4-d921621d521b","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,"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"}],"omagserverPlatformRootURL":"https://localhost:9443","omagserverName":"active-metadata-store"},"auditTrail":["Thu Jun 06 08:28:54 BST 2024 garygeeke updated configuration for local server's userId to enginenpa.","Thu Jun 06 08:28:54 BST 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.."]} \ No newline at end of file +{"class":"OMAGServerConfig","versionId":"V2.0","localServerId":"435cd6f3-daae-4fec-8915-9545fca0b206","localServerName":"engine-host","localServerDescription":"A server that runs governance service requests, triggered by engine actions created in active-metadata-store.","localServerURL":"{{egeriaEndpoint}}","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":"{{egeriaEndpoint}}"},"auditTrail":["Tue Jun 11 17:20:33 BST 2024 garygeeke updated configuration for local server's userId to enginenpa.","Tue Jun 11 17:20:33 BST 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.."]} \ 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 2e0bdbc0069..ba1ba6b47eb 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":"27c542fc-609a-445d-9f4f-198a6e3b680e","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,"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"]}}]},"auditTrail":["Thu Jun 06 08:28:54 BST 2024 garygeeke updated configuration for local server's userId to daemonnpa.","Thu Jun 06 08:28:55 BST 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..","Thu Jun 06 08:28:55 BST 2024 garygeeke updated configuration for integration group Egeria:IntegrationGroup:DefaultIntegrationGroup."]} \ No newline at end of file +{"class":"OMAGServerConfig","versionId":"V2.0","localServerId":"b4467f3c-de19-4a63-b239-0ca4ceb0ef65","localServerName":"integration-daemon","localServerDescription":"A server that runs integration connectors that synchronize and exchange metadata with different types of technologies and tools.","localServerURL":"{{egeriaEndpoint}}","localServerUserId":"daemonnpa","maxPageSize":1000,"dynamicIntegrationGroupsConfig":[{"class":"IntegrationGroupConfig","integrationGroupQualifiedName":"Egeria:IntegrationGroup:DefaultIntegrationGroup","omagserverName":"active-metadata-store","omagserverPlatformRootURL":"{{egeriaEndpoint}}"}],"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":["Tue Jun 11 17:20:34 BST 2024 garygeeke updated configuration for local server's userId to daemonnpa.","Tue Jun 11 17:20:34 BST 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..","Tue Jun 11 17:20:34 BST 2024 garygeeke updated configuration for integration group Egeria:IntegrationGroup:DefaultIntegrationGroup."]} \ 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 960a69c2cb0..7053ac46745 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":"da1cfa79-bbbb-4bb7-9fcf-2ca35c3ce995","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":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":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":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":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":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":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":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":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":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":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":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":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"]}}],"openMetadataArchiveConnections":[{"class":"Connection","headerVersion":0,"displayName":"Open Metadata Archive File content-packs/SimpleCatalog.omarchive Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.repositoryservices.archiveconnector.file.FileBasedOpenMetadataArchiveStoreProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"content-packs/SimpleCatalog.omarchive"}}],"localRepositoryConfig":{"class":"LocalRepositoryConfig","metadataCollectionId":"be874d73-43b7-4071-a062-72d31eb3e1a2","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":"1cf5ae90-c1f5-44e1-8d1d-4d930384dd0c","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":"da1cfa79-bbbb-4bb7-9fcf-2ca35c3ce995","eventDirection":"inOut"}}}]},"enterpriseOMRSTopicProtocolVersion":"V1"}},"auditTrail":["Thu Jun 06 08:28:53 BST 2024 garygeeke updated configuration for local server's userId to simplenpa.","Thu Jun 06 08:28:53 BST 2024 garygeeke updated configuration for local server's description to A metadata store that supports Open Metadata Access Services (OMASs) without event notifications..","Thu Jun 06 08:28:54 BST 2024 garygeeke updated configuration for the local repository.","Thu Jun 06 08:28:54 BST 2024 garygeeke updated configuration for access services.","Thu Jun 06 08:28:54 BST 2024 garygeeke updated configuration for enterprise repository services (used by access services).","Thu Jun 06 08:28:54 BST 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":"18322660-07d0-49ae-b5f6-62b481962b2f","localServerName":"simple-metadata-store","localServerDescription":"A metadata store that supports Open Metadata Access Services (OMASs) without event notifications.","localServerURL":"{{egeriaEndpoint}}","localServerUserId":"simplenpa","maxPageSize":1000,"accessServicesConfig":[{"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":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":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":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":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":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":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":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":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":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"]}}],"openMetadataArchiveConnections":[{"class":"Connection","headerVersion":0,"displayName":"Open Metadata Archive File content-packs/SimpleCatalog.omarchive Connection","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.repositoryservices.archiveconnector.file.FileBasedOpenMetadataArchiveStoreProvider"},"endpoint":{"class":"Endpoint","headerVersion":0,"address":"content-packs/SimpleCatalog.omarchive"}}],"localRepositoryConfig":{"class":"LocalRepositoryConfig","metadataCollectionId":"20e5f15a-4891-40e5-8bd6-e216c620cb6c","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":"{{egeriaEndpoint}}/servers/simple-metadata-store"}},"eventsToSaveRule":"ALL","eventsToSendRule":"ALL"},"enterpriseAccessConfig":{"class":"EnterpriseAccessConfig","enterpriseMetadataCollectionName":"simple-metadata-store Enterprise Metadata Collection","enterpriseMetadataCollectionId":"00a9fb71-438e-413c-b337-f3f4c5c0f615","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":"18322660-07d0-49ae-b5f6-62b481962b2f","eventDirection":"inOut"}}}]},"enterpriseOMRSTopicProtocolVersion":"V1"}},"auditTrail":["Tue Jun 11 17:20:32 BST 2024 garygeeke updated configuration for local server's userId to simplenpa.","Tue Jun 11 17:20:32 BST 2024 garygeeke updated configuration for local server's description to A metadata store that supports Open Metadata Access Services (OMASs) without event notifications..","Tue Jun 11 17:20:32 BST 2024 garygeeke updated configuration for the local repository.","Tue Jun 11 17:20:32 BST 2024 garygeeke updated configuration for access services.","Tue Jun 11 17:20:32 BST 2024 garygeeke updated configuration for enterprise repository services (used by access services).","Tue Jun 11 17:20:33 BST 2024 garygeeke updated list of open metadata archives loaded at server start up."]} \ 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 6b2cb54a865..2a1ff0c9948 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":"5bde1e04-07b4-428c-8127-7de339885885","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,"viewServicesConfig":[{"class":"IntegrationViewServiceConfig","viewServiceId":818,"viewServiceDevelopmentStatus":"IN_DEVELOPMENT","viewServiceAdminClass":"org.odpi.openmetadata.viewservices.classificationmanager.admin.ClassificationManagerAdmin","viewServiceName":"Classification Manager","viewServiceFullName":"Classification Manager OMVS","viewServiceURLMarker":"classification-manager","viewServiceDescription":"Maintain classifications and relationships used to organize open metadata elements.","viewServiceWiki":"https://egeria-project.org/services/omvs/valid-metadata/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":809,"viewServiceDevelopmentStatus":"TECHNICAL_PREVIEW","viewServiceAdminClass":"org.odpi.openmetadata.viewservices.collectionmanager.admin.CollectionManagerAdmin","viewServiceName":"Collection Manager","viewServiceFullName":"Collection Manager OMVS","viewServiceURLMarker":"collection-manager","viewServiceDescription":"Build collections of asset and other metadata.","viewServiceWiki":"https://egeria-project.org/services/omvs/collection-manager/overview/","viewServicePartnerService":"Digital Service 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":814,"viewServiceDevelopmentStatus":"IN_DEVELOPMENT","viewServiceAdminClass":"org.odpi.openmetadata.viewservices.datadiscovery.admin.DataDiscoveryAdmin","viewServiceName":"Data Discovery","viewServiceFullName":"Data Discovery OMVS","viewServiceURLMarker":"data-discovery","viewServiceDescription":"Define and search for new data resources.","viewServiceWiki":"https://egeria-project.org/services/omvs/data-discovery/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"},{"class":"IntegrationViewServiceConfig","viewServiceId":811,"viewServiceDevelopmentStatus":"IN_DEVELOPMENT","viewServiceAdminClass":"org.odpi.openmetadata.viewservices.feedbackmanager.admin.FeedbackManagerAdmin","viewServiceName":"Feedback Manager","viewServiceFullName":"Feedback Manager OMVS","viewServiceURLMarker":"feedback-manager","viewServiceDescription":"Work with note logs, comments, informal tags, ratings/reviews and likes.","viewServiceWiki":"https://egeria-project.org/services/omvs/feedback-manager/overview/","viewServicePartnerService":"Governance Action Framework 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":816,"viewServiceDevelopmentStatus":"IN_DEVELOPMENT","viewServiceAdminClass":"org.odpi.openmetadata.viewservices.referencedata.admin.ReferenceDataAdmin","viewServiceName":"Reference Data","viewServiceFullName":"Reference Data OMVS","viewServiceURLMarker":"reference-data","viewServiceDescription":"Work with code tables and associated reference data.","viewServiceWiki":"https://egeria-project.org/services/omvs/reference-data/overview/","viewServicePartnerService":"Digital Architecture 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":"TECHNICAL_PREVIEW","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":812,"viewServiceDevelopmentStatus":"TECHNICAL_PREVIEW","viewServiceAdminClass":"org.odpi.openmetadata.viewservices.actionauthor.admin.ActionAuthorAdmin","viewServiceName":"Action Author","viewServiceFullName":"Action Author OMVS","viewServiceURLMarker":"action-author","viewServiceDescription":"Maintain definitions of governance actions such as governance action processes and governance action types.","viewServiceWiki":"https://egeria-project.org/services/omvs/action-author/overview/","viewServicePartnerService":"Governance Program 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":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"},{"class":"IntegrationViewServiceConfig","viewServiceId":815,"viewServiceDevelopmentStatus":"IN_DEVELOPMENT","viewServiceAdminClass":"org.odpi.openmetadata.viewservices.templatemanager.admin.TemplateManagerAdmin","viewServiceName":"Template Manager","viewServiceFullName":"Template Manager OMVS","viewServiceURLMarker":"template-manager","viewServiceDescription":"Retrieve and refine the templates for use during cataloguing.","viewServiceWiki":"https://egeria-project.org/services/omvs/template-manager/overview/","viewServicePartnerService":"Digital Architecture 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":810,"viewServiceDevelopmentStatus":"TECHNICAL_PREVIEW","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":813,"viewServiceDevelopmentStatus":"TECHNICAL_PREVIEW","viewServiceAdminClass":"org.odpi.openmetadata.viewservices.projectmanager.admin.ProjectManagerAdmin","viewServiceName":"Project Manager","viewServiceFullName":"Project Manager OMVS","viewServiceURLMarker":"project-manager","viewServiceDescription":"Set up and manage projects.","viewServiceWiki":"https://egeria-project.org/services/omvs/project-manager/overview/","viewServicePartnerService":"Project Management 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":806,"viewServiceDevelopmentStatus":"TECHNICAL_PREVIEW","viewServiceAdminClass":"org.odpi.openmetadata.viewservices.glossarymanager.admin.GlossaryManagerAdmin","viewServiceName":"Glossary Manager","viewServiceFullName":"Glossary Manager OMVS","viewServiceURLMarker":"glossary-manager","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-manager/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":817,"viewServiceDevelopmentStatus":"TECHNICAL_PREVIEW","viewServiceAdminClass":"org.odpi.openmetadata.viewservices.validmetadata.admin.ValidMetadataAdmin","viewServiceName":"Valid Metadata","viewServiceFullName":"Valid Metadata OMVS","viewServiceURLMarker":"valid-metadata","viewServiceDescription":"Maintain and query valid values for metadata.","viewServiceWiki":"https://egeria-project.org/services/omvs/valid-metadata/overview/","viewServicePartnerService":"Digital Architecture 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"]}}]},"auditTrail":["Thu Jun 06 08:28:54 BST 2024 garygeeke updated configuration for local server's userId to viewnpa.","Thu Jun 06 08:28:54 BST 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..","Thu Jun 06 08:28:54 BST 2024 garygeeke updated configuration for view services."]} \ No newline at end of file +{"class":"OMAGServerConfig","versionId":"V2.0","localServerId":"9a5947a6-1d8f-4123-bcd5-59d07137c1e6","localServerName":"view-server","localServerDescription":"A server that supplies REST API endpoints for User Interfaces and non-Java environments such as Python.","localServerURL":"{{egeriaEndpoint}}","localServerUserId":"viewnpa","maxPageSize":1000,"viewServicesConfig":[{"class":"IntegrationViewServiceConfig","viewServiceId":818,"viewServiceDevelopmentStatus":"IN_DEVELOPMENT","viewServiceAdminClass":"org.odpi.openmetadata.viewservices.classificationmanager.admin.ClassificationManagerAdmin","viewServiceName":"Classification Manager","viewServiceFullName":"Classification Manager OMVS","viewServiceURLMarker":"classification-manager","viewServiceDescription":"Maintain classifications and relationships used to organize open metadata elements.","viewServiceWiki":"https://egeria-project.org/services/omvs/valid-metadata/overview/","viewServicePartnerService":"Asset Manager OMAS","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"{{egeriaEndpoint}}","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":"{{egeriaEndpoint}}"},{"class":"IntegrationViewServiceConfig","viewServiceId":809,"viewServiceDevelopmentStatus":"TECHNICAL_PREVIEW","viewServiceAdminClass":"org.odpi.openmetadata.viewservices.collectionmanager.admin.CollectionManagerAdmin","viewServiceName":"Collection Manager","viewServiceFullName":"Collection Manager OMVS","viewServiceURLMarker":"collection-manager","viewServiceDescription":"Build collections of asset and other metadata.","viewServiceWiki":"https://egeria-project.org/services/omvs/collection-manager/overview/","viewServicePartnerService":"Digital Service OMAS","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"{{egeriaEndpoint}}","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":"{{egeriaEndpoint}}"},{"class":"IntegrationViewServiceConfig","viewServiceId":814,"viewServiceDevelopmentStatus":"IN_DEVELOPMENT","viewServiceAdminClass":"org.odpi.openmetadata.viewservices.datadiscovery.admin.DataDiscoveryAdmin","viewServiceName":"Data Discovery","viewServiceFullName":"Data Discovery OMVS","viewServiceURLMarker":"data-discovery","viewServiceDescription":"Define and search for new data resources.","viewServiceWiki":"https://egeria-project.org/services/omvs/data-discovery/overview/","viewServicePartnerService":"Asset Consumer OMAS","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"{{egeriaEndpoint}}","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":"{{egeriaEndpoint}}"},{"class":"IntegrationViewServiceConfig","viewServiceId":811,"viewServiceDevelopmentStatus":"IN_DEVELOPMENT","viewServiceAdminClass":"org.odpi.openmetadata.viewservices.feedbackmanager.admin.FeedbackManagerAdmin","viewServiceName":"Feedback Manager","viewServiceFullName":"Feedback Manager OMVS","viewServiceURLMarker":"feedback-manager","viewServiceDescription":"Work with note logs, comments, informal tags, ratings/reviews and likes.","viewServiceWiki":"https://egeria-project.org/services/omvs/feedback-manager/overview/","viewServicePartnerService":"Governance Action Framework Services","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"{{egeriaEndpoint}}","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":"{{egeriaEndpoint}}"},{"class":"IntegrationViewServiceConfig","viewServiceId":816,"viewServiceDevelopmentStatus":"IN_DEVELOPMENT","viewServiceAdminClass":"org.odpi.openmetadata.viewservices.referencedata.admin.ReferenceDataAdmin","viewServiceName":"Reference Data","viewServiceFullName":"Reference Data OMVS","viewServiceURLMarker":"reference-data","viewServiceDescription":"Work with code tables and associated reference data.","viewServiceWiki":"https://egeria-project.org/services/omvs/reference-data/overview/","viewServicePartnerService":"Digital Architecture OMAS","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"{{egeriaEndpoint}}","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":"{{egeriaEndpoint}}"},{"class":"IntegrationViewServiceConfig","viewServiceId":807,"viewServiceDevelopmentStatus":"TECHNICAL_PREVIEW","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":"{{egeriaEndpoint}}","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":"{{egeriaEndpoint}}"},{"class":"IntegrationViewServiceConfig","viewServiceId":812,"viewServiceDevelopmentStatus":"TECHNICAL_PREVIEW","viewServiceAdminClass":"org.odpi.openmetadata.viewservices.actionauthor.admin.ActionAuthorAdmin","viewServiceName":"Action Author","viewServiceFullName":"Action Author OMVS","viewServiceURLMarker":"action-author","viewServiceDescription":"Maintain definitions of governance actions such as governance action processes and governance action types.","viewServiceWiki":"https://egeria-project.org/services/omvs/action-author/overview/","viewServicePartnerService":"Governance Program OMAS","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"{{egeriaEndpoint}}","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":"{{egeriaEndpoint}}"},{"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":"{{egeriaEndpoint}}","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":"{{egeriaEndpoint}}"},{"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":"{{egeriaEndpoint}}","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":"{{egeriaEndpoint}}"},{"class":"IntegrationViewServiceConfig","viewServiceId":815,"viewServiceDevelopmentStatus":"IN_DEVELOPMENT","viewServiceAdminClass":"org.odpi.openmetadata.viewservices.templatemanager.admin.TemplateManagerAdmin","viewServiceName":"Template Manager","viewServiceFullName":"Template Manager OMVS","viewServiceURLMarker":"template-manager","viewServiceDescription":"Retrieve and refine the templates for use during cataloguing.","viewServiceWiki":"https://egeria-project.org/services/omvs/template-manager/overview/","viewServicePartnerService":"Digital Architecture OMAS","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"{{egeriaEndpoint}}","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":"{{egeriaEndpoint}}"},{"class":"IntegrationViewServiceConfig","viewServiceId":810,"viewServiceDevelopmentStatus":"TECHNICAL_PREVIEW","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":"{{egeriaEndpoint}}","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":"{{egeriaEndpoint}}"},{"class":"IntegrationViewServiceConfig","viewServiceId":813,"viewServiceDevelopmentStatus":"TECHNICAL_PREVIEW","viewServiceAdminClass":"org.odpi.openmetadata.viewservices.projectmanager.admin.ProjectManagerAdmin","viewServiceName":"Project Manager","viewServiceFullName":"Project Manager OMVS","viewServiceURLMarker":"project-manager","viewServiceDescription":"Set up and manage projects.","viewServiceWiki":"https://egeria-project.org/services/omvs/project-manager/overview/","viewServicePartnerService":"Project Management OMAS","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"{{egeriaEndpoint}}","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":"{{egeriaEndpoint}}"},{"class":"IntegrationViewServiceConfig","viewServiceId":806,"viewServiceDevelopmentStatus":"TECHNICAL_PREVIEW","viewServiceAdminClass":"org.odpi.openmetadata.viewservices.glossarymanager.admin.GlossaryManagerAdmin","viewServiceName":"Glossary Manager","viewServiceFullName":"Glossary Manager OMVS","viewServiceURLMarker":"glossary-manager","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-manager/overview/","viewServicePartnerService":"Asset Manager OMAS","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"{{egeriaEndpoint}}","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":"{{egeriaEndpoint}}"},{"class":"IntegrationViewServiceConfig","viewServiceId":817,"viewServiceDevelopmentStatus":"TECHNICAL_PREVIEW","viewServiceAdminClass":"org.odpi.openmetadata.viewservices.validmetadata.admin.ValidMetadataAdmin","viewServiceName":"Valid Metadata","viewServiceFullName":"Valid Metadata OMVS","viewServiceURLMarker":"valid-metadata","viewServiceDescription":"Maintain and query valid values for metadata.","viewServiceWiki":"https://egeria-project.org/services/omvs/valid-metadata/overview/","viewServicePartnerService":"Digital Architecture OMAS","viewServiceOperationalStatus":"ENABLED","resourceEndpoints":[{"class":"ResourceEndpointConfig","resourceCategory":"Platform","description":"This is the default OMAG Server Platform.","platformRootURL":"{{egeriaEndpoint}}","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":"{{egeriaEndpoint}}"}],"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":["Tue Jun 11 17:20:33 BST 2024 garygeeke updated configuration for local server's userId to viewnpa.","Tue Jun 11 17:20:33 BST 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..","Tue Jun 11 17:20:33 BST 2024 garygeeke updated configuration for view services."]} \ No newline at end of file diff --git a/test.application.properties b/test.application.properties index 90929b2625a..b37d168ff45 100644 --- a/test.application.properties +++ b/test.application.properties @@ -5,6 +5,21 @@ # This application.properties file is for the FVTs. It uses a relative path name to find the # default certificates. +################################################ +### Placeholder variables are added to field values in the configuration document +### when the server is being configured using double curly braces. They are replaced by +### the values specified in platform.placeholder.variables each time the server starts up. +### +### The "kafkaEndpoint" value is the Apache Kafka endpoint, and it is used in the active-metadata-store +### sample configuration. If your Apache Kafka broker is listening on a different endpoint +### and you want to use active-metadata-store, change this variable to your Apache Kafka's address. +################################################ +platform.placeholder.variables=\ + {\ + "egeriaEndpoint" : "https://localhost:9443"\ + } + + ################################################ ### SSL security. # The keystore determines the information sent out by the server to identify itself.