https://dagster.io/ logo
Title
a

Adam Ward

05/04/2023, 10:57 PM
Hi - I'm trying to fetch the full stack trace shown in a job step failure event using GraphQL, however, I'm only finding the lowest level of the stack trace in the
eventConnection.events[n].message
or
eventConnection.events[n].error
for
ExecutionStepFailureEvent
events. Would someone be able to tell me how to query the same info shown in Dagit (when it offers for you to click "Full Message" on the run step itself)? TIA!
y

yuhan

05/05/2023, 6:45 PM
here’s a similar question but through instance object in python api. https://github.com/dagster-io/dagster/discussions/8428 it should go through the same path (the event storage), so you should be able to reuse the
dagster_event.event_specific_data.error
piece in graphql layer.
a

Adam Ward

05/08/2023, 1:39 PM
Ah ok - I'll see what I can find there. Thank you