Skip to content

Instantly share code, notes, and snippets.

@brianr
Last active August 29, 2015 13:57
Show Gist options
  • Select an option

  • Save brianr/9924442 to your computer and use it in GitHub Desktop.

Select an option

Save brianr/9924442 to your computer and use it in GitHub Desktop.
Example Rollbar payload with arguments in stack frames
{
"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