Skip to content

Commit

Permalink
merge: #9474
Browse files Browse the repository at this point in the history
9474: Export all records to ES by default r=saig0 a=remcowesterhoud

## Description

<!-- Please explain the changes you made here. -->
These records get consumed by Operate, Tasklist and Optimize. They also proof useful for debugging purposes in Zeebe as we can't always access records from the log stream.

jobBatch has been ignored as there is usually a high number of these records, and they are not very valuable for debugging.

## Related issues

<!-- Which issues are closed by this PR or are related -->

closes #8338 



Co-authored-by: Remco Westerhoud <remco@westerhoud.nl>
  • Loading branch information
zeebe-bors-camunda[bot] and remcowesterhoud committed Jun 1, 2022
2 parents e848940 + e9b8c57 commit 4c1f931
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,19 +116,19 @@ public static class IndexConfiguration {
public boolean rejection = false;

// value types to export
public boolean deployment = false;
public boolean deployment = true;
public boolean process = true;
public boolean error = true;
public boolean incident = true;
public boolean job = true;
public boolean jobBatch = false;
public boolean message = false;
public boolean messageSubscription = false;
public boolean message = true;
public boolean messageSubscription = true;
public boolean variable = true;
public boolean variableDocument = true;
public boolean processInstance = true;
public boolean processInstanceCreation = false;
public boolean processMessageSubscription = false;
public boolean processMessageSubscription = true;
public boolean decisionRequirements = true;
public boolean decision = true;
public boolean decisionEvaluation = true;
Expand Down

0 comments on commit 4c1f931

Please sign in to comment.