Documentation Index
Fetch the complete documentation index at: https://docs.prefect.io/llms.txt
Use this file to discover all available pages before exploring further.
Customize a workflow’s name
Give your workflow a name with thename parameter:
Customize a workflow’s description
Give your workflow a description with thedescription parameter:
Customize run names
Give a custom name to each flow run for a flow with theflow_run_name parameter:
flow_run_name template string.
You can also provide a flow_run_name as a function that returns a string:
Custom flow run names are applied at runtimeWhen a flow run is created via a schedule or the API, the
flow_run_name defined on the flow is not immediately applied. The name is set just before the flow enters the Running state, so the Running event and all subsequent events reflect the custom name.