<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to group by in nested JSON? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-group-by-in-nested-JSON/m-p/497026#M194741</link>
    <description>&lt;P&gt;hi @kamlesh_vaghela i tried and i don't know why but the values are displaying twice in the table.&lt;/P&gt;</description>
    <pubDate>Wed, 29 Jan 2020 08:38:26 GMT</pubDate>
    <dc:creator>anooshac</dc:creator>
    <dc:date>2020-01-29T08:38:26Z</dc:date>
    <item>
      <title>How to group by in nested JSON?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-group-by-in-nested-JSON/m-p/497009#M194724</link>
      <description>&lt;P&gt;Hi all,&lt;BR /&gt;
i have a json file like this.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;{
 "JOB_NUM" : "1",
 "JOB_TIME" : "1/1/2020",
 "JOB_STATUS" : "PASS",
 "JOB_DURATION" : "304",
 "TESTCASES": 
  [
    { 
          "ID" : "a",
      "TIME" : "01.01.2020",
      "DURATION" : "126",
      "STATUS" : "PASS"
    },
    {
          "ID" : "b",
      "TIME" : "01.01.2020",
      "DURATION" : "62",
      "STATUS" : "FAIL"
        },
    {
          "ID" : "c",
      "TIME" : "01.01.2020",
      "DURATION" : "85",
      "STATUS" : "PASS" 
        },
        {
          "ID" : "d",
      "TIME" : "01.01.2020",
      "DURATION" : "135",
      "STATUS" : "PASS" 
        }
]
}
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I want to group by "ID" by "STATUS" (both are inner fields). I have tried a lot. But still i am not able to get the proper answer. Can anyone please help me in this.&lt;/P&gt;

&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jan 2020 11:46:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-group-by-in-nested-JSON/m-p/497009#M194724</guid>
      <dc:creator>anooshac</dc:creator>
      <dc:date>2020-01-28T11:46:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to group by in nested JSON?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-group-by-in-nested-JSON/m-p/497010#M194725</link>
      <description>&lt;P&gt;@anooshac &lt;/P&gt;

&lt;P&gt;You can have your required field by executing below search. Can you please try this ?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;YOUR_SEARCH
| rename TESTCASES{}.* as * 
| eval tmp = mvzip(mvzip(mvzip(ID,STATUS),TIME),DURATION) 
| mvexpand tmp 
| eval ID=mvindex(split(tmp,","),0),STATUS=mvindex(split(tmp,","),1),TIME=mvindex(split(tmp,","),2),DURATION=mvindex(split(tmp,","),3)
| table JOB_NUM JOB_TIME JOB_STATUS JOB_DURATION ID TIME DURATION STATUS
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;STRONG&gt;Sample Search:&lt;/STRONG&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| makeresults 
| eval _raw="{\"JOB_NUM\" : \"1\",\"JOB_TIME\" : \"1/1/2020\",\"JOB_STATUS\" : \"PASS\",\"JOB_DURATION\" : \"304\",\"TESTCASES\":[{\"ID\" : \"a\",\"TIME\" : \"01.01.2020\",\"DURATION\" : \"126\",\"STATUS\" : \"PASS\"},{\"ID\" : \"b\",\"TIME\" : \"01.01.2020\",\"DURATION\" : \"62\",\"STATUS\" : \"FAIL\"},{\"ID\" : \"c\",\"TIME\" : \"01.01.2020\",\"DURATION\" : \"85\",\"STATUS\" : \"PASS\"},{\"ID\" : \"d\",\"TIME\" : \"01.01.2020\",\"DURATION\" : \"135\",\"STATUS\" : \"PASS\"}]}" 
| extract 
| rename TESTCASES{}.* as * 
| eval tmp = mvzip(mvzip(mvzip(ID,STATUS),TIME),DURATION) 
| mvexpand tmp 
| eval ID=mvindex(split(tmp,","),0),STATUS=mvindex(split(tmp,","),1),TIME=mvindex(split(tmp,","),2),DURATION=mvindex(split(tmp,","),3)
| table JOB_NUM JOB_TIME JOB_STATUS JOB_DURATION ID TIME DURATION STATUS
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;With the proper data-set you can do any aggregation using &lt;CODE&gt;stats&lt;/CODE&gt; command.&lt;/P&gt;

&lt;P&gt;Adding into above sample search:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; | stats count by ID
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;OR&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| stats count by ID
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;OR &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| stats &amp;lt;&amp;lt;ANY LOGIC AS PER YOUR REQUIREMENT&amp;gt;&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Please let us know for further assistance.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jan 2020 14:03:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-group-by-in-nested-JSON/m-p/497010#M194725</guid>
      <dc:creator>kamlesh_vaghela</dc:creator>
      <dc:date>2020-01-28T14:03:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to group by in nested JSON?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-group-by-in-nested-JSON/m-p/497011#M194726</link>
      <description>&lt;P&gt;Sample:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| makeresults 
| eval _raw="{\"JOB_NUM\" : \"1\",\"JOB_TIME\" : \"1/1/2020\",\"JOB_STATUS\" : \"PASS\",\"JOB_DURATION\" : \"304\",\"TESTCASES\":[{\"ID\" : \"a\",\"TIME\" : \"01.01.2020\",\"DURATION\" : \"126\",\"STATUS\" : \"PASS\"},{\"ID\" : \"b\",\"TIME\" : \"01.01.2020\",\"DURATION\" : \"62\",\"STATUS\" : \"FAIL\"},{\"ID\" : \"c\",\"TIME\" : \"01.01.2020\",\"DURATION\" : \"85\",\"STATUS\" : \"PASS\"},{\"ID\" : \"d\",\"TIME\" : \"01.01.2020\",\"DURATION\" : \"135\",\"STATUS\" : \"PASS\"}]}" 
| spath 
| rename TESTCASES{}.* as * 
| eval _counter=mvrange(0,4) 
| stats list(*) as * by _counter 
| foreach * 
    [ eval &amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;=if(mvcount(&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;)=1,&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;,mvindex('&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;',_counter))] 
| table JOB_NUM JOB_TIME JOB_STATUS JOB_DURATION ID TIME DURATION STATUS 
| stats count by ID STATUS 
| where STATUS="PASS"
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;VIZ&amp;gt;Pie Chart with Trellis&lt;BR /&gt;
Recommend(4):&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index="abc"
| spath path=TESTCASES{} output=json
| spath input=json
| table ID TIME DURATION STATUS
| eval _counter=mvrange(0,mvcount(ID)) 
| stats list(*) as * by _counter 
| foreach * 
    [ eval &amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;=if(mvcount(&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;)=1,&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;,mvindex('&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;',_counter))] 
| table ID TIME DURATION STATUS
| stats sum(DURATION) as  DURATION  by  ID STATUS
| where STATUS="$status$"
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;viz&amp;gt;  Pie Chart with trellis.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jan 2020 14:15:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-group-by-in-nested-JSON/m-p/497011#M194726</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2020-01-28T14:15:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to group by in nested JSON?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-group-by-in-nested-JSON/m-p/497012#M194727</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/127939"&gt;@kamlesh_vaghela&lt;/a&gt; thank you so much for your response. It worked!!&lt;BR /&gt;
But when i execute |stats count(ID) by STATUS i get count more than the actual count of IDs. Is it event count?&lt;BR /&gt;
If i give distinct_count the IDs which are repeated will not be added into the count.What will be the problem here?&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 03:56:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-group-by-in-nested-JSON/m-p/497012#M194727</guid>
      <dc:creator>anooshac</dc:creator>
      <dc:date>2020-09-30T03:56:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to group by in nested JSON?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-group-by-in-nested-JSON/m-p/497013#M194728</link>
      <description>&lt;P&gt;Hi @to4kawa thank you so much for the response. It is working, but the output table is having only 3 rows. But the data has many testcases.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jan 2020 03:43:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-group-by-in-nested-JSON/m-p/497013#M194728</guid>
      <dc:creator>anooshac</dc:creator>
      <dc:date>2020-01-29T03:43:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to group by in nested JSON?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-group-by-in-nested-JSON/m-p/497014#M194729</link>
      <description>&lt;P&gt;hi @anooshac, my answer is updated.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jan 2020 04:01:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-group-by-in-nested-JSON/m-p/497014#M194729</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2020-01-29T04:01:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to group by in nested JSON?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-group-by-in-nested-JSON/m-p/497015#M194730</link>
      <description>&lt;P&gt;@anooshac yes it is event count. &lt;/P&gt;

&lt;P&gt;Try  this for distinct &lt;CODE&gt;ID&lt;/CODE&gt; count&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;|stats dc(ID) by STATUS
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 29 Jan 2020 04:07:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-group-by-in-nested-JSON/m-p/497015#M194730</guid>
      <dc:creator>kamlesh_vaghela</dc:creator>
      <dc:date>2020-01-29T04:07:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to group by in nested JSON?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-group-by-in-nested-JSON/m-p/497016#M194731</link>
      <description>&lt;P&gt;Hi @kamlesh_vaghela  It is working! Once again thanks a lot!&lt;BR /&gt;
I need one more help. I am trying to give one drill down from this result to display the IDs of respective status. I saved this result as pie chart. When i click on any status the drill down is displaying all the IDs instead of respective ID's of that status. My query is&lt;/P&gt;

&lt;P&gt;index=''abc"  STATUS="$state$" | table TESTCASES{}.ID,TESTCASES{}.DURATION,TESTCASES{}.STATUS&lt;/P&gt;

&lt;P&gt;How can i correct this? can you please help me!!&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jan 2020 04:35:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-group-by-in-nested-JSON/m-p/497016#M194731</guid>
      <dc:creator>anooshac</dc:creator>
      <dc:date>2020-01-29T04:35:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to group by in nested JSON?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-group-by-in-nested-JSON/m-p/497017#M194732</link>
      <description>&lt;P&gt;It is working , but some of the values are repeating in table. Why is that so?&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jan 2020 04:35:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-group-by-in-nested-JSON/m-p/497017#M194732</guid>
      <dc:creator>anooshac</dc:creator>
      <dc:date>2020-01-29T04:35:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to group by in nested JSON?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-group-by-in-nested-JSON/m-p/497018#M194733</link>
      <description>&lt;P&gt;JOB_NUM,JOB_TIME,JOB_STATUS,JOB_DURATION are dare to display multiple.&lt;BR /&gt;
Do not you need them?&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 03:50:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-group-by-in-nested-JSON/m-p/497018#M194733</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2020-09-30T03:50:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to group by in nested JSON?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-group-by-in-nested-JSON/m-p/497019#M194734</link>
      <description>&lt;P&gt;I need to group the IDs. Thanks a lot for responding. I got the answer using @kamlesh_vaghela's solution. I am trying to make a drill down from the pie chart .&lt;BR /&gt;
The query is,&lt;BR /&gt;
index=''abc" STATUS="$state$" | table TESTCASES{}.ID,TESTCASES{}.DURATION,TESTCASES{}.STATUS&lt;/P&gt;

&lt;P&gt;But i am not getting proper answer. Do you know how to solve this?&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jan 2020 05:28:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-group-by-in-nested-JSON/m-p/497019#M194734</guid>
      <dc:creator>anooshac</dc:creator>
      <dc:date>2020-01-29T05:28:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to group by in nested JSON?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-group-by-in-nested-JSON/m-p/497020#M194735</link>
      <description>&lt;P&gt;my answer is updated.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jan 2020 05:44:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-group-by-in-nested-JSON/m-p/497020#M194735</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2020-01-29T05:44:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to group by in nested JSON?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-group-by-in-nested-JSON/m-p/497021#M194736</link>
      <description>&lt;P&gt;hi @to4kawa I don't know why but i am getting only one value in the table&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jan 2020 06:18:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-group-by-in-nested-JSON/m-p/497021#M194736</guid>
      <dc:creator>anooshac</dc:creator>
      <dc:date>2020-01-29T06:18:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to group by in nested JSON?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-group-by-in-nested-JSON/m-p/497022#M194737</link>
      <description>&lt;P&gt;you want to select STATUS and display by Pie Chart ,ID count?&lt;BR /&gt;
what's this token $state$?&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jan 2020 06:23:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-group-by-in-nested-JSON/m-p/497022#M194737</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2020-01-29T06:23:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to group by in nested JSON?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-group-by-in-nested-JSON/m-p/497023#M194738</link>
      <description>&lt;P&gt;I see, I'll count &lt;EM&gt;total&lt;/EM&gt; DURATION.&lt;BR /&gt;
my answer is updated.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jan 2020 06:39:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-group-by-in-nested-JSON/m-p/497023#M194738</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2020-01-29T06:39:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to group by in nested JSON?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-group-by-in-nested-JSON/m-p/497024#M194739</link>
      <description>&lt;P&gt;hi @to4kawa i got pie chart using @kamlesh_vaghela's solution. Now i want a drill down from that pie chart. The token $state$ is STATUS. On clicking the respective STATUS it should lead to a table containing all the ID's. I am trying for that, if you know how to do it can you please help me in this!!&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jan 2020 07:12:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-group-by-in-nested-JSON/m-p/497024#M194739</guid>
      <dc:creator>anooshac</dc:creator>
      <dc:date>2020-01-29T07:12:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to group by in nested JSON?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-group-by-in-nested-JSON/m-p/497025#M194740</link>
      <description>&lt;P&gt;@anooshac&lt;/P&gt;

&lt;P&gt;Try this XML. You will get idea about drilldown.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;dashboard&amp;gt;
  &amp;lt;label&amp;gt;Pie Chart Drilldown Example&amp;lt;/label&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;chart&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;index="abc" | rename TESTCASES{}.* as * | eval tmp = mvzip(mvzip(mvzip(ID,STATUS),TIME),DURATION) | mvexpand tmp | eval ID=mvindex(split(tmp,","),0),STATUS=mvindex(split(tmp,","),1),TIME=mvindex(split(tmp,","),2),DURATION=mvindex(split(tmp,","),3)| table JOB_NUM JOB_TIME JOB_STATUS JOB_DURATION ID TIME DURATION STATUS | stats dc(ID) as ID_Count by STATUS&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;-24h@h&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
          &amp;lt;sampleRatio&amp;gt;1&amp;lt;/sampleRatio&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="charting.chart"&amp;gt;pie&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.drilldown"&amp;gt;all&amp;lt;/option&amp;gt;
        &amp;lt;drilldown&amp;gt;
          &amp;lt;link target="_blank"&amp;gt;search?q=index="abc" | rename TESTCASES{}.* as * | eval tmp = mvzip(mvzip(mvzip(ID,STATUS),TIME),DURATION) | mvexpand tmp | eval ID=mvindex(split(tmp,","),0),STATUS=mvindex(split(tmp,","),1),TIME=mvindex(split(tmp,","),2),DURATION=mvindex(split(tmp,","),3) | where STATUS="$click.value$"| table JOB_NUM JOB_TIME JOB_STATUS JOB_DURATION ID TIME DURATION STATUS&amp;lt;/link&amp;gt;
        &amp;lt;/drilldown&amp;gt;
      &amp;lt;/chart&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/dashboard&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 29 Jan 2020 07:14:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-group-by-in-nested-JSON/m-p/497025#M194740</guid>
      <dc:creator>kamlesh_vaghela</dc:creator>
      <dc:date>2020-01-29T07:14:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to group by in nested JSON?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-group-by-in-nested-JSON/m-p/497026#M194741</link>
      <description>&lt;P&gt;hi @kamlesh_vaghela i tried and i don't know why but the values are displaying twice in the table.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jan 2020 08:38:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-group-by-in-nested-JSON/m-p/497026#M194741</guid>
      <dc:creator>anooshac</dc:creator>
      <dc:date>2020-01-29T08:38:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to group by in nested JSON?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-group-by-in-nested-JSON/m-p/497027#M194742</link>
      <description>&lt;P&gt;@anooshac&lt;/P&gt;

&lt;P&gt;Can you please share search you implemented in drilldown? please mask confidential values if there.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jan 2020 10:05:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-group-by-in-nested-JSON/m-p/497027#M194742</guid>
      <dc:creator>kamlesh_vaghela</dc:creator>
      <dc:date>2020-01-29T10:05:44Z</dc:date>
    </item>
  </channel>
</rss>

