Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Default behaviour for entities not enabled specifically
  • A list of entities that are enabled for notification. These entities are identified with their name. Regular expressions car be provided to specify multiple names. For application type, such a list is not needed.

Snippet below represents notification configuration section from application.yaml file.

Code Block
languageyml
titleapplication.properties
linenumberstrue
notification:
  data-updated:
    configuration:
      appapplication:
        default-enabled: false
      dataspace:
        default-enabled: false
        specific-enabled:
          - .*-published
      schema-set:
        default-enabled: false
        specific-enabled:
          - .*-published
      anchor:
        default-enabled: false
        specific-enabled:
          - .*-published
  topic: ${CPS_CHANGE_EVENT_TOPIC:cps.cfg-state-events}

...