Created
June 24, 2011 02:54
-
-
Save deverton/1044127 to your computer and use it in GitHub Desktop.
Nested ES document example
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
{ | |
"exception" : { | |
"message" : "Exceptional circumstances", | |
"stackTrace" : [ | |
{ "file" : "Test.java", "class" : "Test", "method" : "foo", "line" : 100, "native" : false }, | |
{ "file" : "Test.java", "class" : "Test", "method" : "bar", "line" : 99, "native" : false } | |
], | |
"causedBy" : { | |
"message" : "Special Circumstances", | |
"stackTrace" : [ | |
{ "file" : "Test2.java", "class" : "Test", "method" : "foo", "line" : 100, "native" : false }, | |
{ "file" : "Test2.java", "class" : "Test", "method" : "bar", "line" : 99, "native" : false } | |
], | |
"causedBy" : { | |
"message" : "Mind the gap", | |
"stackTrace" : [ | |
{ "file" : "Test3.java", "class" : "Test", "method" : "foo", "line" : 100, "native" : false }, | |
{ "file" : "Test3.java", "class" : "Test", "method" : "bar", "line" : 99, "native" : false } | |
], | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment