kymr / conductor

Conductor is a microservices orchestration engine - https://netflix.github.io/conductor/
Apache License 2.0
0 stars 0 forks source link

Summary - Event Handlers #6

Closed kymr closed 6 years ago

kymr commented 6 years ago

Link

kymr commented 6 years ago

Introduction

kymr commented 6 years ago

Event Task

kymr commented 6 years ago

Event Handler

Configuration

Structure

{
  "name" : "descriptive unique name",
  "event": "event_type:event_location",
  "condition": "boolean condition",
  "actions": ["see examples below"]
}

Condition

Example

Expression Result
$.version > 1 TRUE
$.version > 10 FALSE
$.metadata.length == 300 TRUE

Actions

kymr commented 6 years ago

Extending

kymr commented 6 years ago

Check It