Replies: 1 comment 3 replies
-
|
hey @thepratt! I gave this a spin a while back - as I wanted to get errors properly propagated (FatalError vs Retryableerror etc showing up correctly on Sentry) and also to get otel spans working (datadog traces already work out of the box with workflow but I couldn't easily figure out sentry). Ultimately we use datadog here at Vercel so we haven't felt the pain enough Seems like like something claud should easily be able to open a PR for if you ask it in the workflow source code. wanna give it a shot? i'd be happy it review and merge something to make jt work well :) |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
We're in a situation that Sentry receives error logs from workflow runs (within
"use workflow"and"use step"stages) but isn't creating issues without manual instrumentation ofcaptureException. We could enablecaptureConsoleIntegration, but that would likely result in quite a lot of duplicates across the rest of the codebase.Has anyone done anything special to get automatic instrumentation of workflow errors? Or is manual the way? I know errors for retry and the like are thrown, and I'd be fine with some of that noise in Sentry - I can always filter out on the Sentry side. For additional context: the rest of the application is fine, it's only code run within workflows that has this issue.
We're using the
@sentry/nextjsSentry adapter, withworkflow/next, and Vercel as the workflow world.Beta Was this translation helpful? Give feedback.
All reactions