Hello. Is there an option to get statistics of job...
# ask-community
v
Hello. Is there an option to get statistics of jobs that run/running from dagster DB according run configuration? For example I have flow from jobs A --> B --> C -->D that work on some file with specific configuration. I want to know run time of jobs that run with certain configuration, how much jobs finished with status SUCCESS and FAILED. Can I get these statistics and how?
d
Hi Vlad - we don't support filtering stats by runs with a certain config like this, but you could fetch statistics about runs using the graphql API and compute stats yourself: https://docs.dagster.io/concepts/dagit/graphql#get-a-list-of-dagster-runs
v
Thank you