recipe v0.4.2 Recipe.Debug View Source

Built-in telemetry module which uses Logger to report events related to a recipe run.

Implements the Recipe.Telemetry behaviour.

Link to this section Summary

Functions

Invoked after failing to execute a step

Invoked at the end of a recipe execution, irrespectively of the success or failure of the last executed step

Invoked at the start of a recipe execution

Invoked after successfully executing a step

Link to this section Functions

Link to this function on_error(step, error, state, elapsed) View Source

Invoked after failing to execute a step.

Callback implementation for Recipe.Telemetry.on_error/4.

Invoked at the end of a recipe execution, irrespectively of the success or failure of the last executed step.

Callback implementation for Recipe.Telemetry.on_finish/1.

Invoked at the start of a recipe execution.

Callback implementation for Recipe.Telemetry.on_start/1.

Link to this function on_success(step, state, elapsed) View Source

Invoked after successfully executing a step.

Callback implementation for Recipe.Telemetry.on_success/3.