kestra-io / plugin-azure

Apache License 2.0
2 stars 5 forks source link

Implement Realtime Trigger #91

Closed iNikitaGricenko closed 4 months ago

iNikitaGricenko commented 4 months ago

What changes are being made and why?

How the changes have been QAed?

triggers:
  - id: watch
    type: io.kestra.plugin.azure.eventhubs.RealtimeTrigger
    interval: PT10S
    eventHubName: "{{ globals.azure.eventhubs['eventhub-name'] }}"
    connectionString: "{{ globals.azure.eventhubs['connection-string'] }}"
    bodyDeserializer: STRING
    consumerGroup: "$Default"
    checkpointStoreProperties:
      containerName: "{{ globals.azure.eventhubs.checkpointstore['container-name'] }}"
      connectionString: "{{ globals.azure.eventhubs.checkpointstore['connection-string'] }}"