<?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 format JSON data into a table? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-format-JSON-data-into-a-table/m-p/633534#M51918</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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How to use the query if the data is dynamic. That is&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{
    "Info": {
        "Unit": "ABC",
        "Project": "XYZ",
        "Analysis Summary": {
            "DB1": {
                "Available": "1088kB",
                "Used": "173.23kB",
                "Used(%)": "15.92%",
                "Status": "OK"
            },
            "DB2": {
                "Available": "4096kB",
                "Used": "1591.85kB",
                "Used(%)": "38.86%",
                "Status": "OK"
            },
            "DB3": {
                "Available": "128kB",
                "Used(%)": "2.6%",
                "Status": "OK"
            },
            "DB4": {
                "Available": "16500kB",
                "Used": "6696.0",
                "Used(%)": "40.58%",
                "Status": "OK"
            },
            "DB5": {
                "Available": "22000kB",
                "Used": "9800.0",
                "Used(%)": "44.55%",
                "Status": "OK"
            }
        },
        "RAM_Tracking": {
            "a": "2",
            "b": "1088.0",
            "c": "32.1220703125",
        },
        "Database2_info": {
            "a": "4",
            "b": "4096.0",
            "c": "654.3212890625",
        },
        "Database3_info": {
            "a": "5",
            "b": "6696",
            "c": "9800",
        },
        "Database4_info": {
            "a": "6",
            "b": "128.0",
            "c": "21.086",
        }
    }
}&lt;/LI-CODE&gt;&lt;P&gt;As you see in the data "Used" is missing in DB3.But when i use this query i am not able to see any data related to DB3. In such cases how can i modify the query?can you please explain..&lt;/P&gt;</description>
    <pubDate>Tue, 07 Mar 2023 09:47:34 GMT</pubDate>
    <dc:creator>anooshac</dc:creator>
    <dc:date>2023-03-07T09:47:34Z</dc:date>
    <item>
      <title>How to format JSON data into a table?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-format-JSON-data-into-a-table/m-p/611738#M50145</link>
      <description>&lt;P&gt;Hi all, i have the json data as below.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;{
    "Info": 
        {
            "Unit": "ABC",
            "Project": "XYZ",
            "Analysis Summary": {
				"DB 1":{"available": "1088kB","used": "172.8kB","used%": "15.88%","status":"OK"},
                "DB2 2":{"available": "4096KB","used": "1582.07kB","used%": "38.62%","status":"OK"},
                "DB3 3":{"available": "128KB","used": "0","used%": "0%","status":"OK"},
                "DB4 4":{"available": "16500KB","used": "6696.0KB","used%": "40.58%","status":"OK"},
                "DB5 5":{"available": "22000KB","used": "9800.0KB","used%": "44.55%","status":"OK"}
			}
}}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want to create a table like this&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Database available  used	used%	status
DB1     4096KB	    1582.07kB	38.62%	OK
DB2	1088kB	    172.8kB	15.88%	OK
DB3     16500KB	    6696.0KB	40.58%	OK
DB4	22000KB	    9800.0KB	44.55%	OK
DB5     128KB	     0	         0%	OK&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I know how to extract the data but i am not able to put data in this format in table. Anyone have idea on this?&lt;/P&gt;</description>
      <pubDate>Fri, 02 Sep 2022 14:31:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-format-JSON-data-into-a-table/m-p/611738#M50145</guid>
      <dc:creator>anooshac</dc:creator>
      <dc:date>2022-09-02T14:31:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to format JSON data into a table?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-format-JSON-data-into-a-table/m-p/611787#M50150</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/30057"&gt;@anooshac&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you please try this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;YOUR_SEARCH
| rex field=_raw "\"(?&amp;lt;Database&amp;gt;[^\"]+)\":{" max_match=0 
| rex field=_raw "\"available\"\:\s\"(?&amp;lt;available&amp;gt;[^,]+)\",\"used\"\:\s\"(?&amp;lt;used&amp;gt;[^,]+)\",\"used%\"\:\s\"(?&amp;lt;used_p&amp;gt;[^,]+)\",\"status\"\:\"(?&amp;lt;status&amp;gt;[^}]+)\"}" max_match=0 
| eval tmp = mvzip(mvzip(mvzip(mvzip(Database,available),used),used_p),status) 
| mvexpand tmp 
| eval Database=mvindex(split(tmp,","),0), available=mvindex(split(tmp,","),1), used=mvindex(split(tmp,","),2), used_p=mvindex(split(tmp,","),3), status=mvindex(split(tmp,","),4)
| table Database available used used_p status&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2022-09-02 at 8.57.13 PM.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/21295iA2A243721C1193AA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2022-09-02 at 8.57.13 PM.png" alt="Screenshot 2022-09-02 at 8.57.13 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope this will help you. &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;BR /&gt;KV&lt;BR /&gt;If any of my replies help you to solve the problem Or gain knowledge, an upvote would be appreciated.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Sep 2022 15:27:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-format-JSON-data-into-a-table/m-p/611787#M50150</guid>
      <dc:creator>kamlesh_vaghela</dc:creator>
      <dc:date>2022-09-02T15:27:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to format JSON data into a table?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-format-JSON-data-into-a-table/m-p/611887#M50160</link>
      <description>&lt;P&gt;Thank you so much.. It is working fine..&lt;/P&gt;</description>
      <pubDate>Mon, 05 Sep 2022 05:54:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-format-JSON-data-into-a-table/m-p/611887#M50160</guid>
      <dc:creator>anooshac</dc:creator>
      <dc:date>2022-09-05T05:54:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to format JSON data into a table?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-format-JSON-data-into-a-table/m-p/614868#M50435</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; , I have changed the file format to this,&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{
    "Info": 
        {
            "Unit": "ABC",
            "Project": "XYZ",
            "Analysis Summary": {
			"DB 1":{
                             "available": "1088kB",
                             "used": "172.8kB",
                             "used%": "15.88%",
                             "status":"OK"
                             },
                "DB2 2":
                             {
                              "available": "4096KB",
                              "used": "1582.07kB",
                              "used%": "38.62%",
                              "status":"OK"
                              },
                "DB3 3":
                             {
                              "available": "128KB",
                              "used": "0",
                              "used%": "0%",
                              "status":"OK"
                              },
                "DB4 4":
                              {
                               "available": "16500KB",
                               "used": "6696.0KB",
                               "used%": "40.58%",
                               "status":"OK"
                               },
                "DB5 5":
                              {
                               "available": "22000KB",
                               "used": "9800.0KB",
                               "used%": "44.55%",
                               "status":"OK"
                               }
			}
}}&lt;/LI-CODE&gt;&lt;P&gt;And Changed the query to&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| spath output=Analysis_Summary Info.Analysis_Summary
| rex field=Analysis_Summary "\"(?&amp;lt;Database&amp;gt;[^\"]+)\":{ \"available\"\:\s\"(?&amp;lt;available&amp;gt;[^,]+)\",\"used\"\:\s\"(?&amp;lt;used&amp;gt;[^,]+)\",\"used%\"\:\s\"(?&amp;lt;used_p&amp;gt;[^,]+)\",\"status\"\:\"(?&amp;lt;status&amp;gt;[^}]+)\"}" max_match=0 
| eval tmp = mvzip(mvzip(mvzip(mvzip(Database,available),used),used_p),status) 
| mvexpand tmp 
| eval Database=mvindex(split(tmp,","),0), available=mvindex(split(tmp,","),1), used=mvindex(split(tmp,","),2), used_p=mvindex(split(tmp,","),3), status=mvindex(split(tmp,","),4)
| table Database available used used_p status&lt;/LI-CODE&gt;&lt;P&gt;But i am not able to collect the data.It says tmp does not exist.Is there any mistake in the regular expression?&lt;/P&gt;</description>
      <pubDate>Wed, 28 Sep 2022 06:24:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-format-JSON-data-into-a-table/m-p/614868#M50435</guid>
      <dc:creator>anooshac</dc:creator>
      <dc:date>2022-09-28T06:24:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to format JSON data into a table?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-format-JSON-data-into-a-table/m-p/614872#M50436</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/30057"&gt;@anooshac&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think you should try this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;YOUR_SEARCH
| rex field=_raw "\"(?&amp;lt;Database&amp;gt;[^\"]+)\":{" max_match=0 
| rex field=_raw "\"available\"\:\s\"(?&amp;lt;available&amp;gt;[^,]+)\",\"used\"\:\s\"(?&amp;lt;used&amp;gt;[^,]+)\",\"used%\"\:\s\"(?&amp;lt;used_p&amp;gt;[^,]+)\",\"status\"\:\"(?&amp;lt;status&amp;gt;[^}]+)\"}" max_match=0 
| eval tmp = mvzip(mvzip(mvzip(mvzip(Database,available),used),used_p),status) 
| mvexpand tmp 
| eval Database=mvindex(split(tmp,","),0), available=mvindex(split(tmp,","),1), used=mvindex(split(tmp,","),2), used_p=mvindex(split(tmp,","),3), status=mvindex(split(tmp,","),4)
| table Database available used used_p status&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;My Sample Search :&lt;/STRONG&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| makeresults | eval _raw="{\"Info\": {\"Unit\": \"ABC\",\"Project\": \"XYZ\",\"Analysis Summary\": {\"DB 1\":{\"available\": \"1088kB\",\"used\": \"172.8kB\",\"used%\": \"15.88%\",\"status\":\"OK\"},\"DB2 2\":{\"available\": \"4096KB\",\"used\": \"1582.07kB\",\"used%\": \"38.62%\",\"status\":\"OK\"},\"DB3 3\":{\"available\": \"128KB\",\"used\": \"0\",\"used%\": \"0%\",\"status\":\"OK\"},\"DB4 4\":{\"available\": \"16500KB\",\"used\": \"6696.0KB\",\"used%\": \"40.58%\",\"status\":\"OK\"},\"DB5 5\":{\"available\": \"22000KB\",\"used\": \"9800.0KB\",\"used%\": \"44.55%\",\"status\":\"OK\"}}}}"
| rex field=_raw "\"(?&amp;lt;Database&amp;gt;[^\"]+)\":{" max_match=0 
| rex field=_raw "\"available\"\:\s\"(?&amp;lt;available&amp;gt;[^,]+)\",\"used\"\:\s\"(?&amp;lt;used&amp;gt;[^,]+)\",\"used%\"\:\s\"(?&amp;lt;used_p&amp;gt;[^,]+)\",\"status\"\:\"(?&amp;lt;status&amp;gt;[^}]+)\"}" max_match=0 
| eval tmp = mvzip(mvzip(mvzip(mvzip(Database,available),used),used_p),status) 
| mvexpand tmp 
| eval Database=mvindex(split(tmp,","),0), available=mvindex(split(tmp,","),1), used=mvindex(split(tmp,","),2), used_p=mvindex(split(tmp,","),3), status=mvindex(split(tmp,","),4)
| table Database available used used_p status&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2022-09-28 at 12.12.35 PM.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/21719i84FD87312BC2FD24/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2022-09-28 at 12.12.35 PM.png" alt="Screenshot 2022-09-28 at 12.12.35 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I hope this will help you.&lt;/P&gt;&lt;P&gt;Thanks&lt;BR /&gt;KV&lt;BR /&gt;If any of my replies help you to solve the problem Or gain knowledge, an upvote would be appreciated.&lt;/P&gt;</description>
      <pubDate>Wed, 28 Sep 2022 06:43:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-format-JSON-data-into-a-table/m-p/614872#M50436</guid>
      <dc:creator>kamlesh_vaghela</dc:creator>
      <dc:date>2022-09-28T06:43:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to format JSON data into a table?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-format-JSON-data-into-a-table/m-p/614879#M50437</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; , still im getting as temp not found.. is it due to the new format of the data? is it becuase of new line?&lt;/P&gt;</description>
      <pubDate>Wed, 28 Sep 2022 07:13:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-format-JSON-data-into-a-table/m-p/614879#M50437</guid>
      <dc:creator>anooshac</dc:creator>
      <dc:date>2022-09-28T07:13:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to format JSON data into a table?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-format-JSON-data-into-a-table/m-p/614899#M50441</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/30057"&gt;@anooshac&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yeah, maybe a new line can be an issue.&amp;nbsp;&amp;nbsp;Can you please try this?&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;YOUR_SEARCH
| rex field=_raw mode=sed "s/(\t+|\s)//g" max_match=0
| rex field=_raw "\"(?&amp;lt;Database&amp;gt;[^\"]+)\":{" max_match=0 
| rex field=_raw "\"available\"\:\"(?&amp;lt;available&amp;gt;[^,]+)\",\"used\"\:\"(?&amp;lt;used&amp;gt;[^,]+)\",\"used%\"\:\"(?&amp;lt;used_p&amp;gt;[^,]+)\",\"status\"\:\"(?&amp;lt;status&amp;gt;[^}]+)\"}" max_match=0
| eval tmp = mvzip(mvzip(mvzip(mvzip(Database,available),used),used_p),status) 
| mvexpand tmp 
| eval Database=mvindex(split(tmp,","),0), available=mvindex(split(tmp,","),1), used=mvindex(split(tmp,","),2), used_p=mvindex(split(tmp,","),3), status=mvindex(split(tmp,","),4)
| table Database available used used_p status&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;My Sample Search :&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| makeresults | eval _raw="{
    \"Info\": 
        {
            \"Unit\": \"ABC\",
            \"Project\": \"XYZ\",
            \"Analysis Summary\": {
			\"DB 1\":{
                             \"available\": \"1088kB\",
                             \"used\": \"172.8kB\",
                             \"used%\": \"15.88%\",
                             \"status\":\"OK\"
                             },
                \"DB2 2\":
                             {
                              \"available\": \"4096KB\",
                              \"used\": \"1582.07kB\",
                              \"used%\": \"38.62%\",
                              \"status\":\"OK\"
                              },
                \"DB3 3\":
                             {
                              \"available\": \"128KB\",
                              \"used\": \"0\",
                              \"used%\": \"0%\",
                              \"status\":\"OK\"
                              },
                \"DB4 4\":
                              {
                               \"available\": \"16500KB\",
                               \"used\": \"6696.0KB\",
                               \"used%\": \"40.58%\",
                               \"status\":\"OK\"
                               },
                \"DB5 5\":
                              {
                               \"available\": \"22000KB\",
                               \"used\": \"9800.0KB\",
                               \"used%\": \"44.55%\",
                               \"status\":\"OK\"
                               }
			}
}}"
| rex field=_raw mode=sed "s/(\t+|\s)//g" max_match=0
| rex field=_raw "\"(?&amp;lt;Database&amp;gt;[^\"]+)\":{" max_match=0 
| rex field=_raw "\"available\"\:\"(?&amp;lt;available&amp;gt;[^,]+)\",\"used\"\:\"(?&amp;lt;used&amp;gt;[^,]+)\",\"used%\"\:\"(?&amp;lt;used_p&amp;gt;[^,]+)\",\"status\"\:\"(?&amp;lt;status&amp;gt;[^}]+)\"}" max_match=0
| eval tmp = mvzip(mvzip(mvzip(mvzip(Database,available),used),used_p),status) 
| mvexpand tmp 
| eval Database=mvindex(split(tmp,","),0), available=mvindex(split(tmp,","),1), used=mvindex(split(tmp,","),2), used_p=mvindex(split(tmp,","),3), status=mvindex(split(tmp,","),4)
| table Database available used used_p status&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2022-09-28 at 1.37.45 PM.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/21728i0BC8B85BFBB0FDB8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2022-09-28 at 1.37.45 PM.png" alt="Screenshot 2022-09-28 at 1.37.45 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;I hope this will help you.&lt;/P&gt;&lt;P&gt;Thanks&lt;BR /&gt;KV&lt;BR /&gt;If any of my replies help you to solve the problem Or gain knowledge, an upvote would be appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Sep 2022 08:08:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-format-JSON-data-into-a-table/m-p/614899#M50441</guid>
      <dc:creator>kamlesh_vaghela</dc:creator>
      <dc:date>2022-09-28T08:08:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to format JSON data into a table?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-format-JSON-data-into-a-table/m-p/614909#M50445</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; ,still it is the same. Actually my data is more, i have only written a few part of it in the question. if i use&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| spath output=Analysis_Summary Info.Analysis_Summary
| rex field=Analysis_Summary .....&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;will this be able to help?&lt;/P&gt;&lt;P&gt;Below is my data.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{
    "Info": 
        {
            "Unit": "ABC",
            "Project": "XYZ",
            "Analysis Summary": {
			"DB 1":{
                             "available": "1088kB",
                             "used": "172.8kB",
                             "used%": "15.88%",
                             "status":"OK"
                             },
                "DB2 2":
                             {
                              "available": "4096KB",
                              "used": "1582.07kB",
                              "used%": "38.62%",
                              "status":"OK"
                              },
                "DB3 3":
                             {
                              "available": "128KB",
                              "used": "0",
                              "used%": "0%",
                              "status":"OK"
                              },
                "DB4 4":
                              {
                               "available": "16500KB",
                               "used": "6696.0KB",
                               "used%": "40.58%",
                               "status":"OK"
                               },
                "DB5 5":
                              {
                               "available": "22000KB",
                               "used": "9800.0KB",
                               "used%": "44.55%",
                               "status":"OK"
                               }
			},
"Database1_info":{
},
"Database2_info":{
},
"Database3_info":{
}
}}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you please help me. Not able to find out the mistake.&lt;/P&gt;</description>
      <pubDate>Wed, 28 Sep 2022 09:25:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-format-JSON-data-into-a-table/m-p/614909#M50445</guid>
      <dc:creator>anooshac</dc:creator>
      <dc:date>2022-09-28T09:25:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to format JSON data into a table?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-format-JSON-data-into-a-table/m-p/614987#M50456</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/30057"&gt;@anooshac&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Even your provided data works for me.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| makeresults | eval _raw="{
    \"Info\": 
        {
            \"Unit\": \"ABC\",
            \"Project\": \"XYZ\",
            \"Analysis Summary\": {
            \"DB 1\":{
                             \"available\": \"1088kB\",
                             \"used\": \"172.8kB\",
                             \"used%\": \"15.88%\",
                             \"status\":\"OK\"
                             },
                \"DB2 2\":
                             {
                              \"available\": \"4096KB\",
                              \"used\": \"1582.07kB\",
                              \"used%\": \"38.62%\",
                              \"status\":\"OK\"
                              },
                \"DB3 3\":
                             {
                              \"available\": \"128KB\",
                              \"used\": \"0\",
                              \"used%\": \"0%\",
                              \"status\":\"OK\"
                              },
                \"DB4 4\":
                              {
                               \"available\": \"16500KB\",
                               \"used\": \"6696.0KB\",
                               \"used%\": \"40.58%\",
                               \"status\":\"OK\"
                               },
                \"DB5 5\":
                              {
                               \"available\": \"22000KB\",
                               \"used\": \"9800.0KB\",
                               \"used%\": \"44.55%\",
                               \"status\":\"OK\"
                               }
            },
\"Database1_info\":{
},
\"Database2_info\":{
},
\"Database3_info\":{
}
}}"
| rex field=_raw mode=sed "s/(\t+|\s)//g" max_match=0
| rex field=_raw "\"(?&amp;lt;Database&amp;gt;[^\"]+)\":{" max_match=0 
| rex field=_raw "\"available\"\:\"(?&amp;lt;available&amp;gt;[^,]+)\",\"used\"\:\"(?&amp;lt;used&amp;gt;[^,]+)\",\"used%\"\:\"(?&amp;lt;used_p&amp;gt;[^,]+)\",\"status\"\:\"(?&amp;lt;status&amp;gt;[^}]+)\"}" max_match=0
| eval tmp = mvzip(mvzip(mvzip(mvzip(Database,available),used),used_p),status) 
| mvexpand tmp 
| eval Database=mvindex(split(tmp,","),0), available=mvindex(split(tmp,","),1), used=mvindex(split(tmp,","),2), used_p=mvindex(split(tmp,","),3), status=mvindex(split(tmp,","),4)
| table Database available used used_p status&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you please share _raw from search.like&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;YOUR_INDEX | table _raw&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;KV&lt;/P&gt;</description>
      <pubDate>Wed, 28 Sep 2022 12:11:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-format-JSON-data-into-a-table/m-p/614987#M50456</guid>
      <dc:creator>kamlesh_vaghela</dc:creator>
      <dc:date>2022-09-28T12:11:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to format JSON data into a table?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-format-JSON-data-into-a-table/m-p/615115#M50466</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; ,This is what the&amp;nbsp; "index | table _raw " looks like. I am not sure whats causing to be tmp to be not found in the query.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{
    "Info": {
        "Unit": "ABC",
        "Project": "XYZ",
        "Analysis Summary": {
            "DB1": {
                "Available": "1088kB",
                "Used": "173.23kB",
                "Used(%)": "15.92%",
                "Status": "OK"
            },
            "DB2": {
                "Available": "4096kB",
                "Used": "1591.85kB",
                "Used(%)": "38.86%",
                "Status": "OK"
            },
            "DB3": {
                "Available": "128kB",
                "Used": "0",
                "Used(%)": "2.6%",
                "Status": "OK"
            },
            "DB4": {
                "Available": "16500kB",
                "Used": "6696.0",
                "Used(%)": "40.58%",
                "Status": "OK"
            },
            "DB5": {
                "Available": "22000kB",
                "Used": "9800.0",
                "Used(%)": "44.55%",
                "Status": "OK"
            }
        },
        "RAM_Tracking": {
            "a": "2",
            "b": "1088.0",
            "c": "32.1220703125",
        },
        "Database2_info": {
            "a": "4",
            "b": "4096.0",
            "c": "654.3212890625",
        },
        "Database3_info": {
            "a": "5",
            "b": "6696",
            "c": "9800",
        },
        "Database4_info": {
            "a": "6",
            "b": "128.0",
            "c": "21.086",
        }
    }
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Sep 2022 11:01:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-format-JSON-data-into-a-table/m-p/615115#M50466</guid>
      <dc:creator>anooshac</dc:creator>
      <dc:date>2022-09-29T11:01:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to format JSON data into a table?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-format-JSON-data-into-a-table/m-p/615175#M50468</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/30057"&gt;@anooshac&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you please try this?&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;YOUR_SEARCH
| rex field=_raw mode=sed "s/(\t+|\s)//g" max_match=0
| rex field=_raw "\"(?&amp;lt;Database&amp;gt;[^\"]+)\":{" max_match=0 
| rex field=_raw "\"Available\"\:\"(?&amp;lt;available&amp;gt;[^,]+)\",\"Used\"\:\"(?&amp;lt;used&amp;gt;[^,]+)\",\"Used\(%\)\"\:\"(?&amp;lt;used_p&amp;gt;[^,]+)\",\"Status\"\:\"(?&amp;lt;status&amp;gt;[^}]+)\"}" max_match=0
| eval tmp = mvzip(mvzip(mvzip(mvzip(Database,available),used),used_p),status) 
| mvexpand tmp 
| eval Database=mvindex(split(tmp,","),0), available=mvindex(split(tmp,","),1), used=mvindex(split(tmp,","),2), used_p=mvindex(split(tmp,","),3), status=mvindex(split(tmp,","),4)
| table Database available used used_p status&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| makeresults | eval _raw="{
    \"Info\": {
        \"Unit\": \"ABC\",
        \"Project\": \"XYZ\",
        \"Analysis Summary\": {
            \"DB1\": {
                \"Available\": \"1088kB\",
                \"Used\": \"173.23kB\",
                \"Used(%)\": \"15.92%\",
                \"Status\": \"OK\"
            },
            \"DB2\": {
                \"Available\": \"4096kB\",
                \"Used\": \"1591.85kB\",
                \"Used(%)\": \"38.86%\",
                \"Status\": \"OK\"
            },
            \"DB3\": {
                \"Available\": \"128kB\",
                \"Used\": \"0\",
                \"Used(%)\": \"2.6%\",
                \"Status\": \"OK\"
            },
            \"DB4\": {
                \"Available\": \"16500kB\",
                \"Used\": \"6696.0\",
                \"Used(%)\": \"40.58%\",
                \"Status\": \"OK\"
            },
            \"DB5\": {
                \"Available\": \"22000kB\",
                \"Used\": \"9800.0\",
                \"Used(%)\": \"44.55%\",
                \"Status\": \"OK\"
            }
        },
        \"RAM_Tracking\": {
            \"a\": \"2\",
            \"b\": \"1088.0\",
            \"c\": \"32.1220703125\",
        },
        \"Database2_info\": {
            \"a\": \"4\",
            \"b\": \"4096.0\",
            \"c\": \"654.3212890625\",
        },
        \"Database3_info\": {
            \"a\": \"5\",
            \"b\": \"6696\",
            \"c\": \"9800\",
        },
        \"Database4_info\": {
            \"a\": \"6\",
            \"b\": \"128.0\",
            \"c\": \"21.086\",
        }
    }
}"
| rex field=_raw mode=sed "s/(\t+|\s)//g" max_match=0
| rex field=_raw "\"(?&amp;lt;Database&amp;gt;[^\"]+)\":{" max_match=0 
| rex field=_raw "\"Available\"\:\"(?&amp;lt;available&amp;gt;[^,]+)\",\"Used\"\:\"(?&amp;lt;used&amp;gt;[^,]+)\",\"Used\(%\)\"\:\"(?&amp;lt;used_p&amp;gt;[^,]+)\",\"Status\"\:\"(?&amp;lt;status&amp;gt;[^}]+)\"}" max_match=0
| eval tmp = mvzip(mvzip(mvzip(mvzip(Database,available),used),used_p),status) 
| mvexpand tmp 
| eval Database=mvindex(split(tmp,","),0), available=mvindex(split(tmp,","),1), used=mvindex(split(tmp,","),2), used_p=mvindex(split(tmp,","),3), status=mvindex(split(tmp,","),4)
| table Database available used used_p status&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;there is a minor variation between previous events and last events. Just update regular expression if required.&lt;/P&gt;&lt;P&gt;I hope this will help you.&lt;/P&gt;&lt;P&gt;Thanks&lt;BR /&gt;KV&lt;BR /&gt;If any of my replies help you to solve the problem Or gain knowledge, an upvote would be appreciated.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Sep 2022 11:34:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-format-JSON-data-into-a-table/m-p/615175#M50468</guid>
      <dc:creator>kamlesh_vaghela</dc:creator>
      <dc:date>2022-09-29T11:34:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to format JSON data into a table?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-format-JSON-data-into-a-table/m-p/615303#M50482</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/127939"&gt;@kamlesh_vaghela&lt;/a&gt;, thank you so much.. this helped me a lot. As you said i made some changes in the regular expression. Thank you so much once again.&lt;/P&gt;</description>
      <pubDate>Fri, 30 Sep 2022 06:44:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-format-JSON-data-into-a-table/m-p/615303#M50482</guid>
      <dc:creator>anooshac</dc:creator>
      <dc:date>2022-09-30T06:44:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to format JSON data into a table?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-format-JSON-data-into-a-table/m-p/615304#M50483</link>
      <description>&lt;P&gt;Glad to help you&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/30057"&gt;@anooshac&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;BR /&gt;KV&lt;BR /&gt;If any of my replies help you to solve the problem Or gain knowledge, an upvote would be appreciated.&lt;/P&gt;</description>
      <pubDate>Fri, 30 Sep 2022 06:47:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-format-JSON-data-into-a-table/m-p/615304#M50483</guid>
      <dc:creator>kamlesh_vaghela</dc:creator>
      <dc:date>2022-09-30T06:47:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to format JSON data into a table?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-format-JSON-data-into-a-table/m-p/633534#M51918</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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How to use the query if the data is dynamic. That is&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{
    "Info": {
        "Unit": "ABC",
        "Project": "XYZ",
        "Analysis Summary": {
            "DB1": {
                "Available": "1088kB",
                "Used": "173.23kB",
                "Used(%)": "15.92%",
                "Status": "OK"
            },
            "DB2": {
                "Available": "4096kB",
                "Used": "1591.85kB",
                "Used(%)": "38.86%",
                "Status": "OK"
            },
            "DB3": {
                "Available": "128kB",
                "Used(%)": "2.6%",
                "Status": "OK"
            },
            "DB4": {
                "Available": "16500kB",
                "Used": "6696.0",
                "Used(%)": "40.58%",
                "Status": "OK"
            },
            "DB5": {
                "Available": "22000kB",
                "Used": "9800.0",
                "Used(%)": "44.55%",
                "Status": "OK"
            }
        },
        "RAM_Tracking": {
            "a": "2",
            "b": "1088.0",
            "c": "32.1220703125",
        },
        "Database2_info": {
            "a": "4",
            "b": "4096.0",
            "c": "654.3212890625",
        },
        "Database3_info": {
            "a": "5",
            "b": "6696",
            "c": "9800",
        },
        "Database4_info": {
            "a": "6",
            "b": "128.0",
            "c": "21.086",
        }
    }
}&lt;/LI-CODE&gt;&lt;P&gt;As you see in the data "Used" is missing in DB3.But when i use this query i am not able to see any data related to DB3. In such cases how can i modify the query?can you please explain..&lt;/P&gt;</description>
      <pubDate>Tue, 07 Mar 2023 09:47:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-format-JSON-data-into-a-table/m-p/633534#M51918</guid>
      <dc:creator>anooshac</dc:creator>
      <dc:date>2023-03-07T09:47:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to format JSON data into a table?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-format-JSON-data-into-a-table/m-p/633736#M51954</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/30057"&gt;@anooshac&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you please try this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;YOUR_SEARCH
| rex field=_raw mode=sed "s/(^.*\"Analysis Summary\"\: )//g" max_match=0
| rex field=_raw mode=sed "s/(,\"RAM_Tracking.*)//g" max_match=0
| rex field=_raw "\"(?&amp;lt;Database&amp;gt;[^\"]+)\": \{\"Available" max_match=0
| rex field=_raw ":\s?(?&amp;lt;Data&amp;gt;\{.+?})" max_match=0
| eval tmp = mvzip(Database,Data,"|")
| mvexpand tmp
| eval Database=mvindex(split(tmp,"|"),0), Data=mvindex(split(tmp,"|"),1)
| rex field=Data "{\"Available\"\:\s?\"(?&amp;lt;available&amp;gt;[^,]+)\",(\"Used\"\:\s?\"(?&amp;lt;used&amp;gt;[^,]+)\",)?\"Used\(%\)\"\:\s?\"(?&amp;lt;used_p&amp;gt;[^,]+)\",\"Status\"\:\s?\"(?&amp;lt;status&amp;gt;[^}]+)\"}"
| table Database available used used_p status&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;My Sample Search :&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| makeresults 
| eval _raw="{\"Info\": {\"Unit\": \"ABC\",\"Project\": \"XYZ\",\"Analysis Summary\": {\"DB1\": {\"Available\": \"1088kB\",\"Used\": \"173.23kB\",\"Used(%)\": \"15.92%\",\"Status\": \"OK\"},\"DB2\": {\"Available\": \"4096kB\",\"Used\": \"1591.85kB\",\"Used(%)\": \"38.86%\",\"Status\": \"OK\"},\"DB3\": {\"Available\": \"128kB\",\"Used(%)\": \"2.6%\",\"Status\": \"OK\"},\"DB4\": {\"Available\": \"16500kB\",\"Used\": \"6696.0\",\"Used(%)\": \"40.58%\",\"Status\": \"OK\"},\"DB5\": {\"Available\": \"22000kB\",\"Used\": \"9800.0\",\"Used(%)\": \"44.55%\",\"Status\": \"OK\"}},\"RAM_Tracking\": {\"a\": \"2\",\"b\": \"1088.0\",\"c\": \"32.1220703125\"},\"Database2_info\": {\"a\": \"4\",\"b\": \"4096.0\",\"c\": \"654.3212890625\"},\"Database3_info\": {\"a\": \"5\",\"b\": \"6696\",\"c\": \"9800\"},\"Database4_info\": {\"a\": \"6\",\"b\": \"128.0\",\"c\": \"21.086\"}}}" 
| rex field=_raw mode=sed "s/(^.*\"Analysis Summary\"\: )//g" max_match=0
| rex field=_raw mode=sed "s/(,\"RAM_Tracking.*)//g" max_match=0
| rex field=_raw "\"(?&amp;lt;Database&amp;gt;[^\"]+)\": \{\"Available" max_match=0
| rex field=_raw ":\s?(?&amp;lt;Data&amp;gt;\{.+?})" max_match=0
| eval tmp = mvzip(Database,Data,"|")
| mvexpand tmp
| eval Database=mvindex(split(tmp,"|"),0), Data=mvindex(split(tmp,"|"),1)
| rex field=Data "{\"Available\"\:\s?\"(?&amp;lt;available&amp;gt;[^,]+)\",(\"Used\"\:\s?\"(?&amp;lt;used&amp;gt;[^,]+)\",)?\"Used\(%\)\"\:\s?\"(?&amp;lt;used_p&amp;gt;[^,]+)\",\"Status\"\:\s?\"(?&amp;lt;status&amp;gt;[^}]+)\"}"
| table Database available used used_p status&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope this will help you.&lt;/P&gt;&lt;P&gt;Thanks&lt;BR /&gt;KV&lt;BR /&gt;If any of my replies help you to solve the problem Or gain knowledge, an upvote would be appreciated.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Mar 2023 14:30:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-format-JSON-data-into-a-table/m-p/633736#M51954</guid>
      <dc:creator>kamlesh_vaghela</dc:creator>
      <dc:date>2023-03-08T14:30:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to format JSON data into a table?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-format-JSON-data-into-a-table/m-p/633738#M51955</link>
      <description>&lt;P&gt; &lt;/P&gt;&lt;P&gt;Attaching Screenshot&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2023-03-08 at 8.01.43 PM.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/24245i46C80DC2E2FBD2E8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2023-03-08 at 8.01.43 PM.png" alt="Screenshot 2023-03-08 at 8.01.43 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Mar 2023 14:32:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-format-JSON-data-into-a-table/m-p/633738#M51955</guid>
      <dc:creator>kamlesh_vaghela</dc:creator>
      <dc:date>2023-03-08T14:32:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to format JSON data into a table?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-format-JSON-data-into-a-table/m-p/634898#M52044</link>
      <description>&lt;P&gt;I have changed the data as this in every section.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;                "Available": 1088,
                "Used": 173.23,
                "Used(%)": 15.92,
                "Status": "OK"&lt;/LI-CODE&gt;&lt;P&gt;I have modified the rex to get numbers but unfortunately it gives as tmp not found. I am not sure what is the mistake. Used "\d+\.?\d*" to extract any numbers.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Mar 2023 11:15:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-format-JSON-data-into-a-table/m-p/634898#M52044</guid>
      <dc:creator>anooshac</dc:creator>
      <dc:date>2023-03-17T11:15:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to format JSON data into a table?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-format-JSON-data-into-a-table/m-p/635185#M52056</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/30057"&gt;@anooshac&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you please share your updated JSON event?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;KV&lt;/P&gt;</description>
      <pubDate>Mon, 20 Mar 2023 18:57:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-format-JSON-data-into-a-table/m-p/635185#M52056</guid>
      <dc:creator>kamlesh_vaghela</dc:creator>
      <dc:date>2023-03-20T18:57:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to format JSON data into a table?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-format-JSON-data-into-a-table/m-p/635248#M52058</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; , This is how the data looks.&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="2023-03-21_13h26_33.png" style="width: 999px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/24400i050DA740219C3FF0/image-size/large?v=v2&amp;amp;px=999" role="button" title="2023-03-21_13h26_33.png" alt="2023-03-21_13h26_33.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Mar 2023 07:59:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-format-JSON-data-into-a-table/m-p/635248#M52058</guid>
      <dc:creator>anooshac</dc:creator>
      <dc:date>2023-03-21T07:59:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to format JSON data into a table?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-format-JSON-data-into-a-table/m-p/635249#M52059</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/30057"&gt;@anooshac&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you please copy _raw and paste it here in the code &amp;lt;/&amp;gt; block?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Mar 2023 08:08:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-format-JSON-data-into-a-table/m-p/635249#M52059</guid>
      <dc:creator>kamlesh_vaghela</dc:creator>
      <dc:date>2023-03-21T08:08:35Z</dc:date>
    </item>
  </channel>
</rss>

