Last active
August 29, 2015 13:57
-
-
Save brianr/9924442 to your computer and use it in GitHub Desktop.
Example Rollbar payload with arguments in stack frames
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "access_token": "token here", | |
| "data": { | |
| "body": { | |
| "trace": { | |
| "exception": {"class": "MyException", "message": "The message"}, | |
| "frames": [ | |
| { | |
| "filename": "foo.erl", | |
| "method": "do_foo", | |
| "args": ["first arg value", "second arg value"], | |
| "kwargs": { | |
| "argname": "arg value", | |
| "otherarg": "its value" | |
| } | |
| } | |
| ] | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment