Skip to content

Commit

Permalink
docs: updated README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
VonDerBeck committed Nov 24, 2023
1 parent 4a21bd6 commit 2e421b7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Add the Maven dependency to your `pom.xml`
<dependency>
<groupId>io.zeebe.redis</groupId>
<artifactId>zeebe-redis-connector</artifactId>
<version>0.9.8</version>
<version>0.9.9</version>
</dependency>
```

Expand Down Expand Up @@ -132,7 +132,7 @@ var redisClient = RedisClient.create(
A docker image is published to [GitHub Packages](https://github.com/orgs/camunda-community-hub/packages/container/package/zeebe-with-redis-exporter) that is based on the Zeebe image and includes the Redis exporter (the exporter is enabled by default).

```
docker pull ghcr.io/camunda-community-hub/zeebe-with-redis-exporter:8.2.16-0.9.8
docker pull ghcr.io/camunda-community-hub/zeebe-with-redis-exporter:8.3.3-0.9.9
```

For a local setup, the repository contains a [docker-compose file](docker/docker-compose.yml). It starts a Zeebe broker with the Redis exporter.
Expand All @@ -148,12 +148,12 @@ docker-compose up -d
1. Download the latest [Zeebe distribution](https://github.com/camunda-cloud/zeebe/releases) _(camunda-zeebe-%{VERSION}.tar.gz
)_

1. Download the latest [exporter JAR](https://github.com/camunda-community-hub/zeebe-redis-exporter/releases) (_zeebe-redis-exporter-0.9.8-jar-with-dependencies.jar_)
1. Download the latest [exporter JAR](https://github.com/camunda-community-hub/zeebe-redis-exporter/releases) (_zeebe-redis-exporter-0.9.9-jar-with-dependencies.jar_)

1. Copy the exporter JAR into the broker folder `~/zeebe-broker-%{VERSION}/exporters`.

```
cp exporter/target/zeebe-redis-exporter-0.9.8-jar-with-dependencies.jar ~/zeebe-broker-%{VERSION}/exporters/
cp exporter/target/zeebe-redis-exporter-0.9.9-jar-with-dependencies.jar ~/zeebe-broker-%{VERSION}/exporters/
```
1. Add the exporter to the broker configuration `~/zeebe-broker-%{VERSION}/config/application.yaml`:
Expand All @@ -164,7 +164,7 @@ docker-compose up -d
exporters:
redis:
className: io.zeebe.redis.exporter.RedisExporter
jarPath: exporters/zeebe-redis-exporter-0.9.8-jar-with-dependencies.jar
jarPath: exporters/zeebe-redis-exporter-0.9.9-jar-with-dependencies.jar
```
1. Set the environment variable `ZEEBE_REDIS_REMOTE_ADDRESS` to your Redis URL.
Expand Down Expand Up @@ -261,7 +261,7 @@ services:
- "26500:26500"
- "9600:9600"
volumes:
- ../exporter/target/zeebe-redis-exporter-0.9.8-jar-with-dependencies.jar:/usr/local/zeebe/exporters/zeebe-redis-exporter.jar
- ../exporter/target/zeebe-redis-exporter-0.9.9-jar-with-dependencies.jar:/usr/local/zeebe/exporters/zeebe-redis-exporter.jar
- ./application.yaml:/usr/local/zeebe/config/application.yaml
networks:
- zeebe_network
Expand Down

0 comments on commit 2e421b7

Please sign in to comment.