Last active
October 2, 2015 19:58
-
-
Save PanosJee/2309509 to your computer and use it in GitHub Desktop.
BugSense Sample data
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
| { | |
| "client": { | |
| "name": "bugsense-android", // Obligatory | |
| "version": "0.6" | |
| }, | |
| "request": { | |
| "custom_data": { | |
| "key1": "value1", | |
| "key2": "value2" | |
| } | |
| }, | |
| "exception": { | |
| "message": "java.lang.RuntimeException: exception requested", // Obligatory | |
| "where": "MainActivity.java:47", // Obligatory | |
| "klass": "java.lang.RuntimeException", // Type of exception | |
| "backtrace": "java.lang.RuntimeException: exception requested\r\nat com.sfalma.trace.example.MainActivity$1.onClick(MainActivity.java:47)\r\nat android.view.View.performClick(View.java:2408)\r\nat android.view.View$PerformClick.run(View.java:8816)\r\nat android.os.Handler.handleCallback(Handler.java:587)\r\nat android.os.Handler.dispatchMessage(Handler.java:92)\r\nat android.os.Looper.loop(Looper.java:123)\r\nat android.app.ActivityThread.main(ActivityThread.java:4627)\r\nat java.lang.reflect.Method.invokeNative(Native Method)\r\nat java.lang.reflect.Method.invoke(Method.java:521)\r\nat com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)\r\nat com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)\r\nat dalvik.system.NativeStart.main(Native Method)\\n" // Obligatory | |
| }, | |
| "application_environment": { | |
| "phone": "android", // Device model (could be PC or Max) Obligatory | |
| "appver": "1.2", // Obligatory | |
| "appname": "com.sfalma", // Obligatory | |
| "osver": "2.3", // Obligatory | |
| "wifi_on": "true", | |
| "mobile_net_on": "true", | |
| "gps_on": "true", | |
| "screen_dpi(x:y)": "120.0:120.0", | |
| "screen:width": "240", | |
| "screen:height": "400", | |
| "screen:orientation": "normal", | |
| "uid": "234243-2sdf345-sdfs3452345" // Unique identifier | |
| }, | |
| "feedback": { | |
| "email": "[email protected]", | |
| "description": "I just had a crash :(" | |
| } | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Awesome!