file watch source File Watch Source

Provided by: "Apache Software Foundation"

Support Level for this Kamelet is: "Stable"

Receive events related to a file or folder. It may require a volume mounting on Kubernetes.

Configuration Options

The following table summarizes the configuration options available for the file-watch-source Kamelet:

Property Name Description Type Default Example

events

Events

Required The type of events to consume.

string

CREATE,MODIFY,DELETE

filePath

Path to Watch

Required Path of file or folder to watch.

string

Dependencies

At runtime, the file-watch-source Kamelet relies upon the presence of the following dependencies:

  • camel:file-watch

  • camel:kamelet

Camel JBang usage

Prerequisites

  • You’ve installed JBang.

  • You have executed the following command:

jbang app install camel@apache/camel

Supposing you have a file named route.yaml with this content:

- route:
    from:
      uri: "kamelet:file-watch-source"
      parameters:
        .
        .
        .
      steps:
        - to:
            uri: "kamelet:log-sink"

You can now run it directly through the following command

camel run route.yaml