Warning
DO NOT MERGE this branch to main or upstream!
Note
Please update the Existing patches section when creating new patches.
This README describes our process to patch the original zeebe-simple-monitor
.
This branch exists solely for the purpose to be the default branch in Git, so this section is displayed
per default.
The original fork is maintained in branch main
as usual; that branch is the source of truth.
This repository is a fork from https://github.com/camunda-community-hub/zeebe-simple-monitor ("upstream").
As of 11/2024, upstream seems to be dead. It did not get attention anymore from the maintainers, maybe due to the lack of time, relevance and Camunda's license change.
Due to that license change (commercial use of Zeebe requires a license), it became highly unlikely that a community will spend any further efforts on the extensions like Zeebe Exporters or Monitors.
This repository maintains
- a fork of upstream in
main
- this is the source of truth for all work
- the branch
local-main
is used to display this section, only.
- release branches on the tag of the upstream releases,
- branches for certain patches / additional features / bugfixes that have not been merged upstream, yet
- e.g. https://github.com/enercity/zeebe-simple-monitor-patches/tree/feature/importer-metrics
- these are based on top of a release branch
- so upon new releases, they can be rebased or recreated on top of the new release branch
- branches on top of the official release branches, that merges the features, e.g. https://github.com/enercity/zeebe-simple-monitor-patches/tree/release/v2.7.2-with-patches
Tip
You must be able to check out every branch and run it locally.
See this example:
- there's some work done in
upstream
which leads to releasev2.7.2
- we create a
release/official/v2.7.2
branch on that tag - as well as a
release/v2.7.2-with-patches
branch on that tag - we develop some
feature/
s on top of the official branch - we merge these
feature
branches into ourrelease/-with-patches
branch - we release from that
release/
branch.
Additional branches to try out things are possible.
---
title: Tree of Branches (example, 'main' = upstream)
---
%%{init: { 'gitGraph': {'showCommitLabel': false}} }%%
gitGraph
commit
commit
commit tag: "v2.7.2"
branch release/official/v2.7.2
commit tag: "v2.7.2"
checkout main
commit
checkout release/official/v2.7.2
branch feature/auto-delete-old-process-instances
commit
commit
checkout release/official/v2.7.2
branch feature/search-processes
commit
checkout release/official/v2.7.2
branch release/v2.7.2-with-patches
merge feature/auto-delete-old-process-instances
merge feature/search-processes
commit tag: "v1.10.0 (example)"
checkout release/official/v2.7.2
branch feature/redis-compat-8.5.9
commit
commit
checkout release/v2.7.2-with-patches
branch release/v2.7.2-with-patches-for-redis
merge feature/redis-compat-8.5.9
commit tag: "v2.0.0-dev0 (example)"
This enables this workflow:
- pull in new releases from upstream
- create a new branch from the official release with prefix
release/upstream/v...
- create a new branch on top of that
release/v...-with-patches
- apply the missing features from the
feature
-branches a. fix any issues - build a release from the
release/v...-with-patches
branch.
This process provides us with:
- a baseline to add new features/bugfixes by simply creating a
feature
branch from the official release branch - a ready-to-be-build release branch that contains all patches
- a history in that branch that shows the applied patches
- the possibility to rebase the
feature
branches upon newrelease/upstream
branches - a simple "sync from upstream" process, since no conflicts on
main
expected
feature/auto-delete-old-process-instances
- delete old process instances from database.feature/importer-metrics
- Collect metrics about the import processfeature/search-processes
- server side search for processesfeature/apt-plugin-deprecated
- fix for the deprecated apt-maven-plugin (incompatible with JDK 23)feature/compat-zeebe-8.5.9
- update dependencies to current Zeebe 8.5.9feature/redis-compat-8.5.9
- integrate Redis on top of Zeebe 8.5.9
That being said, please head over to main branch