Is it possible for a job to add a "dynamic tag" to...
# ask-community
j
Is it possible for a job to add a "dynamic tag" to a job run? Context: We want to run jobs for different "domains" and it would be helpful to tag the job with the name of the domain (which can be calculated programmatically based on the job inputs). This will help us search for jobs for that domain in the Dagster UI.
🤖 1
r
Check out this example: https://docs.dagster.io/guides/dagster/run-attribution Basically, you can use the Run Coordinator abstraction to inject whatever hooks you want before the job is run (e.g. adding custom tags based on the `DagsterRun`’s run configuration
❤️ 1