Seems like the guid would be associated with the n...
# marvin-in-the-wild
r
Seems like the guid would be associated with the name. Are both required?
k
deployments are uniquely identified by a combination of the flow name and the deployment name, since one flow can have many deployments. it's more straightforward to use the deployment id
like so
Copy code
"match": {
  "prefect.resource.id": "prefect.flow-run.*"
},
"match_related": {
  "prefect.resource.id": "prefect.deployment.<your-deployment-id>"
},