-
Notifications
You must be signed in to change notification settings - Fork 120
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No designated place for traceback in message item #471
Comments
@ArturMoczulski FWIW: at the API level, the current idea for these is that "message" items that contain tracebacks would be reported as tracebacks containing an explicit message. In those the message goes in |
+1 Please, this would be really great and I personally need it to go alongside SQL errors that I catch, and can only get the backtrace to appear in occurrences as @ArturMoczulski mentions |
This is good enough for me atm
|
Glad I'm not the only one suffering this issue, but so sad to see it's been like this for 4+ years!? I don't understand why the backtrace can't be used identically to what happens when there's an exception thrown? Is there any movement on this from the Rollbar PHP maintainers? |
Let me see if I can get this in either v4.1 or v4.2. For now, I will aim at v4.1. |
Any movement on this? As a stopgap, are there any tools that can prettify the data contained in the backtrace field? I thought it was PHP serialized, but I'm unable to deserialize it, so I must be missing something. |
Steps to reproduce:
send_message_trace
to true,Rollbar::log(Level::INFO, 'Message from app');
Expected result
The trace back should be visible in the Rollbar item details page just as when reporting an exception.
Result
The trace back is not visible in the Rollbar item details page. It's under
body.message.backtrace
in unformatted and hard to read in occurrence details.Impact across SDKs
This is a problem that will appear across other SDKs as well as currently we just don't support
backtrace
for message items. Support for that needs to be implemented.The text was updated successfully, but these errors were encountered: