Hi - I'm trying to fetch the full stack trace show...
# ask-community
a
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
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
Ah ok - I'll see what I can find there. Thank you