Hey team! Regarding <https://github.com/dagster-io...
# deployment-ecs
b
Hey team! Regarding https://github.com/dagster-io/dagster/discussions/7332 - I wonder if there is a way to measure the time it takes from starting a dagster job to the time it takes to actually start it? In order to understand how much of a problem this is and be metric-driven, we’d like to measure first, improve it, then measure again to understand if running on ECS instead of Fargate has any impact.
d
hi bianca - you could look at the events for the run using the graphql API for some of this information:
Copy code
query RunEvents {
  logsForRun(runId:"12345") {
    ... on EventConnection {
      events {
        ...
      }
    }
  }
}
dagster yay 1