We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f9cd93 commit 7a66260Copy full SHA for 7a66260
1 file changed
observability.go
@@ -15,6 +15,12 @@ import (
15
type EventKind string
16
17
const (
18
+ // EventDispatchStarted indicates workflow dispatch began.
19
+ EventDispatchStarted EventKind = "dispatch_started"
20
+ // EventDispatchSucceeded indicates workflow dispatch completed successfully.
21
+ EventDispatchSucceeded EventKind = "dispatch_succeeded"
22
+ // EventDispatchFailed indicates workflow dispatch failed before handler execution.
23
+ EventDispatchFailed EventKind = "dispatch_failed"
24
// EventEnqueueAccepted indicates a job was accepted for enqueue.
25
EventEnqueueAccepted EventKind = "enqueue_accepted"
26
// EventEnqueueRejected indicates enqueue failed.
0 commit comments