@hauptmedia/zeebe-exporter-types
v1.3.1
Published
Typescript type definitions for JSON encoded export data used by the Zeebe Workflow Automation Engine.
Downloads
11
Maintainers
Readme
Zeebe JSON Export Typescript Types
Typescript type & JSON Schema definitions for JSON encoded export data used by the Zeebe Workflow Automation Engine.
You can find the JSON Schema definitions of the Zeebe Events here.
Installation
npm i --save @hauptmedia/zeebe-exporter-types
Kafka example
This example shows how to leverage this library to process JSON encoded Zeebe event data coming from Kafka.
Use the zeebe-kafka-exporter for Zeebe to export event data to Kafka.
You can find the example project in examples/kafka.
import {
dispatchZeebeRecordToHandler,
NoOpZeebeRecordHandler,
ProcessInstanceRecordValue,
ValueType,
ZeebeRecord,
ZeebeRecordHandlerInterface
} from "@hauptmedia/zeebe-exporter-types";
import {Kafka} from 'kafkajs';
class MyRecordHandler extends NoOpZeebeRecordHandler implements ZeebeRecordHandlerInterface {
// Override the methods for the records you want to process or implement ZeebeRecordHandlerInterface
processInstance(record: ZeebeRecord<ProcessInstanceRecordValue>) {
console.log(`${record.intent} ${record.value.bpmnElementType} ${record.value.elementId}`);
}
}
const kafka = new Kafka({
clientId: 'exampleClientId',
brokers: ['localhost:9093']
}),
zbRecordHandler = new MyRecordHandler(),
consumer = kafka.consumer({groupId: 'exampleGroupId'});
const run = async () => {
await consumer.connect()
await consumer.subscribe({topic: "zeebe"})
await consumer.run({
eachMessage: async ({topic, partition, message, heartbeat, pause}) => {
if (!message.value)
return;
dispatchZeebeRecordToHandler(
JSON.parse(message.value.toString()) as ZeebeRecord<ValueType>,
zbRecordHandler
);
},
})
}
run().catch(console.error);
Structure of Zeebe export data
Please follow the links for the detailed documentation of the data structure.
Base Record
Value Types
- DecisionEvaluationRecordValue
- DecisionRecordValue
- DecisionRequirementsRecordValue
- DeploymentDistributionRecordValue
- DeploymentRecordValue
- ErrorRecordValue
- EscalationRecordValue
- IncidentRecordValue
- JobBatchRecordValue
- JobRecordValue
- MessageRecordValue
- MessageStartEventSubscriptionRecordValue
- MessageSubscriptionRecordValue
- ProcessEventRecordValue
- ProcessInstanceCreationRecordValue
- ProcessInstanceRecordValue
- ProcessInstanceModificationRecordValue
- ProcessInstanceResultRecordValue
- Process
- ProcessMessageSubscriptionRecordValue
- TimerRecordValue
- VariableDocumentRecordValue
- VariableRecordValue