-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add initial event logging for step execution #74
Conversation
type EventType string | ||
|
||
const ( | ||
STEP_STARTED EventType = "STEP_STARTED" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this mean there is only 4 events now? what happen to the other events? can lmk if anything needs to be changed/added to the existing events for the service request dashboard status column.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the dashboard status column should show the overall status of the service request. The EventType
you see here is more granular, and shows the event that has happened for this particular step. You won't be using this EventType
for the status column
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Only have a qn regarding the events.
Description
Added event logging for each step of each pipeline (
STEP STARTED
andSTEP COMPLETED
). I'll add more logging for the subsequent steps and other events in another PR.Others
NOT STARTED
status