Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -142,10 +142,10 @@ exporters:
elasticsearch:
args:
index:
variableNameInclusionStartWith:
- business_
variableNameExclusionStartWith:
- business_debug
variableNameInclusionStartWith:
- business_
variableNameExclusionStartWith:
- business_debug
```

The exporter first matches variable names against inclusion rules (if present), then against exclusion rules. If a variable matches both, the exclusion wins.
Expand All @@ -163,12 +163,12 @@ Configuration:
exporters:
elasticsearch:
args:
index:
variableValueTypeInclusion:
- Object
- String
variableValueTypeExclusion:
- Object
index:
variableValueTypeInclusion:
- Object
- String
variableValueTypeExclusion:
- Object
```

Use this filter to drop large object or array payloads at export time. Type inference is similar to what Optimize uses. For details on which types to include or exclude for reporting, see
Expand All @@ -184,11 +184,11 @@ Configuration:
exporters:
elasticsearch:
args:
index:
bpmnProcessIdInclusion:
- orderProcess
bpmnProcessIdExclusion:
- debugProcess
index:
bpmnProcessIdInclusion:
- orderProcess
bpmnProcessIdExclusion:
- debugProcess
```

Processes listed under `inclusion` are candidates; `exclusion` removes any of those candidates again.
Expand Down
Loading
Loading