Skip to content

Commit

Permalink
Fixed docs according to current features
Browse files Browse the repository at this point in the history
related to  #80
  • Loading branch information
berndruecker authored Jul 25, 2022
1 parent 3a20e07 commit 125b7e0
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,13 +106,18 @@ Under the hood, the connector will create one [job worker](https://docs.camunda.

### Filtering Variables

You can filter the variables being sent to Kafka by adding a custom header to the "sendMessage" task with the configuration option "job.variables".

Set the value of this key to a comma-separated list of variables to pass to Kafka.

If this custom header is not present, then all variables in the scope will be sent to Kafka by default.

![Filter Variables](doc/images/variables-custom-header.png)
You can filter the variables being sent to Kafka by adding a configuration option "job.variables" to your source properties. It must contain a comma-separated list of variables to pass to Kafka.

If this property is not present, then all variables in the scope will be sent to Kafka by default.

```properties
{
"name": "ping",
"config": {
...
"job.variables": "a, b, andSomeVariableC",
...
```

## Configuring Error Handling of Kafka Connect, e.g. Logging or Dead Letter Queues

Expand Down

0 comments on commit 125b7e0

Please sign in to comment.