Hi all, I am new to Splunk. Right now I am trying to make a table out of a log, which contains different fields like Level = INFO etc., there's a field
Log = {"objects":[object1, object2 ...
See more...
Hi all, I am new to Splunk. Right now I am trying to make a table out of a log, which contains different fields like Level = INFO etc., there's a field
Log = {"objects":[object1, object2 ...], "info": "some strings", "id1": someInt, "id2": someInt}
Log = {"objects":[object1, object2 ...], "info": "some other strings", "id1": someOtherInt, "id2": someOtherInt}
Log = { "info": "some log strings"}
Log = "some string"
I have tried a few rex and spath but it seems that it's not working well
I would like to extract "objects" field by different "info", for example, I need objects from Log but sometimes I need objects from the first Log above, and sometimes I need them from second Log ( for different panels in dashboard), and the way to separate them is by using "info" And need to display objects in it in a chart under a column. Any help/hints are appreciated!