<?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: I need to put 4 field in table view but some field have long sentence so the table view was in organize. in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-put-4-field-in-table-view-but-some-field-have-long/m-p/622490#M216398</link>
    <description>&lt;LI-CODE lang="markup"&gt;index=main sourcetype="ms.356"
| eval nested_payload=mvzip(flaw, solution, "--")
| mvexpand nested_payload
| eval flaw=mvindex(split(nested_payload,"--"),1)
| eval solution=mvindex(split(nested_payload,"--"),0)
| eval nested_payload=mvzip(answer, COE, "--")
| mvexpand nested_payload
| eval answer=mvindex(split(nested_payload,"--"),1)
| eval COE=mvindex(split(nested_payload,"--"),0)
| table flaw solution answer COE&lt;/LI-CODE&gt;</description>
    <pubDate>Tue, 29 Nov 2022 18:52:02 GMT</pubDate>
    <dc:creator>karu0711</dc:creator>
    <dc:date>2022-11-29T18:52:02Z</dc:date>
    <item>
      <title>How to put 4 field in table view but some field have long sentence so the table view was in organize?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-put-4-field-in-table-view-but-some-field-have-long/m-p/622462#M216379</link>
      <description>&lt;P&gt;I use mvzip command&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;index=main sourcetype="ms.356"
| eval nested_payload=mvzip(mvzip(flaw, solution),answer)
| eval nested_payload=split(nested_payload,"--")
| eval flaw=mvindex(nested_payload,0)
| eval solution=mvindex(nested_payload,1)
| eval answer=mvindex(nested_payload,2)
| table flaw solution answer&lt;/LI-CODE&gt;
&lt;P&gt;what I use above command I get all 3 field value in flaw field separated by commons instead of their own field.&lt;BR /&gt;what I am doing wrong&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2022 18:08:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-put-4-field-in-table-view-but-some-field-have-long/m-p/622462#M216379</guid>
      <dc:creator>karu0711</dc:creator>
      <dc:date>2022-11-29T18:08:16Z</dc:date>
    </item>
    <item>
      <title>Re: I need to put 4 field in table view but some field have long sentence so the table view was in organize.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-put-4-field-in-table-view-but-some-field-have-long/m-p/622470#M216384</link>
      <description>&lt;P&gt;The default separator inserted by the mvzip command is a comma, so try splitting by comma&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| eval nested_payload=split(nested_payload,",")&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 29 Nov 2022 18:01:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-put-4-field-in-table-view-but-some-field-have-long/m-p/622470#M216384</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-11-29T18:01:56Z</dc:date>
    </item>
    <item>
      <title>Re: I need to put 4 field in table view but some field have long sentence so the table view was in organize.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-put-4-field-in-table-view-but-some-field-have-long/m-p/622486#M216395</link>
      <description>&lt;P&gt;but when I use "," it spliting the my value where "," appeared.&lt;/P&gt;&lt;P&gt;in my value I have commas I don't want to split by commas. I want to split by different field only.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2022 18:42:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-put-4-field-in-table-view-but-some-field-have-long/m-p/622486#M216395</guid>
      <dc:creator>karu0711</dc:creator>
      <dc:date>2022-11-29T18:42:52Z</dc:date>
    </item>
    <item>
      <title>Re: I need to put 4 field in table view but some field have long sentence so the table view was in organize.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-put-4-field-in-table-view-but-some-field-have-long/m-p/622490#M216398</link>
      <description>&lt;LI-CODE lang="markup"&gt;index=main sourcetype="ms.356"
| eval nested_payload=mvzip(flaw, solution, "--")
| mvexpand nested_payload
| eval flaw=mvindex(split(nested_payload,"--"),1)
| eval solution=mvindex(split(nested_payload,"--"),0)
| eval nested_payload=mvzip(answer, COE, "--")
| mvexpand nested_payload
| eval answer=mvindex(split(nested_payload,"--"),1)
| eval COE=mvindex(split(nested_payload,"--"),0)
| table flaw solution answer COE&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 29 Nov 2022 18:52:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-put-4-field-in-table-view-but-some-field-have-long/m-p/622490#M216398</guid>
      <dc:creator>karu0711</dc:creator>
      <dc:date>2022-11-29T18:52:02Z</dc:date>
    </item>
    <item>
      <title>Re: I need to put 4 field in table view but some field have long sentence so the table view was in organize.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-put-4-field-in-table-view-but-some-field-have-long/m-p/622491#M216399</link>
      <description>&lt;P&gt;Use a delimiter that doesn't appear in your fields, for example:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| eval nested_payload=mvzip(mvzip(flaw, solution,"#"),answer,"#")
| eval nested_payload=split(nested_payload,"#")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2022 18:52:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-put-4-field-in-table-view-but-some-field-have-long/m-p/622491#M216399</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-11-29T18:52:20Z</dc:date>
    </item>
    <item>
      <title>Re: I need to put 4 field in table view but some field have long sentence so the table view was in organize.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-put-4-field-in-table-view-but-some-field-have-long/m-p/622493#M216401</link>
      <description>&lt;P&gt;when I use above SPL I get field separately but my flaw and answer field value are repeating. on the first value relating for all.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2022 18:54:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-put-4-field-in-table-view-but-some-field-have-long/m-p/622493#M216401</guid>
      <dc:creator>karu0711</dc:creator>
      <dc:date>2022-11-29T18:54:11Z</dc:date>
    </item>
    <item>
      <title>Re: I need to put 4 field in table view but some field have long sentence so the table view was in organize.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-put-4-field-in-table-view-but-some-field-have-long/m-p/622502#M216407</link>
      <description>&lt;P&gt;Please can you share an anonymised sample of the log you are trying to extract from?&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2022 19:35:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-put-4-field-in-table-view-but-some-field-have-long/m-p/622502#M216407</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-11-29T19:35:50Z</dc:date>
    </item>
    <item>
      <title>Re: I need to put 4 field in table view but some field have long sentence so the table view was in organize.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-put-4-field-in-table-view-but-some-field-have-long/m-p/622504#M216408</link>
      <description>&lt;LI-CODE lang="markup"&gt;Found 2 issues of Low severity.
CWE-209: Information Exposure Through an Error Message: tiles/error/errorUncaughtMessage.jsp:9
Details: &amp;lt;span&amp;gt; The application calls the javax.servlet.jsp.JspWriter.print() function, which may expose information about the application logic or other 
details such as the names and versions of the application container and associated components.  This information can be useful in executing other attacks 
and can also enable the attacker to target known vulnerabilities in application components. &amp;lt;/span&amp;gt; &amp;lt;span&amp;gt;Ensure that error codes or other messages 
returned to end users are not overly verbose.  Sanitize all messages of any sensitive information that is not absolutely necessary.&amp;lt;/span&amp;gt; 
&amp;lt;span&amp;gt;References: &amp;lt;a href="https://cwe.mitre.org/data/definitions/209.html"&amp;gt;CWE&amp;lt;/a&amp;gt;&amp;lt;/span&amp;gt;
https://downloads.veracode.com/securityscan/cwe/v4/java/209.html
CWE-245: J2EE Bad Practices: Direct Management of Connections: edu/ufl/osg/webmail/prefs/DBPrefsPlugIn.java:172
Details: &amp;lt;span&amp;gt;This call to getConnection() fails to use the J2EE container's resource management facilities as required by the J2EE standard.&amp;lt;/span&amp;gt; 
&amp;lt;span&amp;gt;Request the connection from the container rather than attempting to access it directly.&amp;lt;/span&amp;gt; &amp;lt;span&amp;gt;References: &amp;lt;a href="https://cwe.mitre.
org/data/definitions/245.html"&amp;gt;CWE&amp;lt;/a&amp;gt;&amp;lt;/span&amp;gt;
https://downloads.veracode.com/securityscan/cwe/v4/java/245.html​&lt;/LI-CODE&gt;&lt;PRE&gt;Found &lt;SPAN class=""&gt;2&lt;/SPAN&gt; issues &lt;SPAN class=""&gt;of&lt;/SPAN&gt; Low severity.
CWE&lt;SPAN class=""&gt;-209&lt;/SPAN&gt;: Information Exposure Through an &lt;SPAN class=""&gt;Error&lt;/SPAN&gt; Message: tiles/error/errorUncaughtMessage.jsp:&lt;SPAN class=""&gt;9&lt;/SPAN&gt;
&lt;SPAN class=""&gt;Details&lt;/SPAN&gt;: &lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&amp;lt;&lt;SPAN class=""&gt;span&lt;/SPAN&gt;&amp;gt;&lt;/SPAN&gt; The application calls the javax.servlet.jsp.JspWriter.print() function, which may expose information about the application logic or other 
details such as the names and versions of the application container and associated components.  This information can be useful in executing other attacks 
and can also enable the attacker to target known vulnerabilities in application components. &lt;SPAN class=""&gt;&amp;lt;/&lt;SPAN class=""&gt;span&lt;/SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&amp;lt;&lt;SPAN class=""&gt;span&lt;/SPAN&gt;&amp;gt;&lt;/SPAN&gt;Ensure that error codes or other messages 
returned to end users are not overly verbose.  Sanitize all messages of any sensitive information that is not absolutely necessary.&lt;SPAN class=""&gt;&amp;lt;/&lt;SPAN class=""&gt;span&lt;/SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt; 
&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&amp;lt;&lt;SPAN class=""&gt;span&lt;/SPAN&gt;&amp;gt;&lt;/SPAN&gt;References: &lt;SPAN class=""&gt;&amp;lt;&lt;SPAN class=""&gt;a&lt;/SPAN&gt; &lt;SPAN class=""&gt;href&lt;/SPAN&gt;=&lt;SPAN class=""&gt;"https://cwe.mitre.org/data/definitions/209.html"&lt;/SPAN&gt;&amp;gt;&lt;/SPAN&gt;CWE&lt;SPAN class=""&gt;&amp;lt;/&lt;SPAN class=""&gt;a&lt;/SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;&amp;lt;/&lt;SPAN class=""&gt;span&lt;/SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt;
https:&lt;SPAN class=""&gt;//downloads.veracode.com/securityscan/cwe/v4/java/209.html&lt;/SPAN&gt;
CWE&lt;SPAN class=""&gt;-245&lt;/SPAN&gt;: J2EE Bad Practices: Direct Management &lt;SPAN class=""&gt;of&lt;/SPAN&gt; Connections: edu/ufl/osg/webmail/prefs/DBPrefsPlugIn.java:&lt;SPAN class=""&gt;172&lt;/SPAN&gt;
&lt;SPAN class=""&gt;Details&lt;/SPAN&gt;: &lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&amp;lt;&lt;SPAN class=""&gt;span&lt;/SPAN&gt;&amp;gt;&lt;/SPAN&gt;This call to getConnection() fails to use the J2EE container's resource management facilities as required by the J2EE standard.&lt;SPAN class=""&gt;&amp;lt;/&lt;SPAN class=""&gt;span&lt;/SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt; 
&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&amp;lt;&lt;SPAN class=""&gt;span&lt;/SPAN&gt;&amp;gt;&lt;/SPAN&gt;Request the connection from the container rather than attempting to access it directly.&lt;SPAN class=""&gt;&amp;lt;/&lt;SPAN class=""&gt;span&lt;/SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&amp;lt;&lt;SPAN class=""&gt;span&lt;/SPAN&gt;&amp;gt;&lt;/SPAN&gt;References: &lt;SPAN class=""&gt;&amp;lt;&lt;SPAN class=""&gt;a&lt;/SPAN&gt; &lt;SPAN class=""&gt;href&lt;/SPAN&gt;=&lt;SPAN class=""&gt;"https://cwe.mitre.
org/data/definitions/245.html"&lt;/SPAN&gt;&amp;gt;&lt;/SPAN&gt;CWE&lt;SPAN class=""&gt;&amp;lt;/&lt;SPAN class=""&gt;a&lt;/SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;&amp;lt;/&lt;SPAN class=""&gt;span&lt;/SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt;
https:&lt;SPAN class=""&gt;//downloads.veracode.com/securityscan/cwe/v4/java/245.html&lt;/SPAN&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 29 Nov 2022 19:40:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-put-4-field-in-table-view-but-some-field-have-long/m-p/622504#M216408</guid>
      <dc:creator>karu0711</dc:creator>
      <dc:date>2022-11-29T19:40:51Z</dc:date>
    </item>
    <item>
      <title>Re: I need to put 4 field in table view but some field have long sentence so the table view was in organize.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-put-4-field-in-table-view-but-some-field-have-long/m-p/622572#M216431</link>
      <description>&lt;P&gt;It is not clear from this which field is flaw, solution and answer. Please can you show the results of&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| table flaw solution answer&lt;/LI-CODE&gt;&lt;P&gt;for these events?&lt;/P&gt;</description>
      <pubDate>Wed, 30 Nov 2022 08:39:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-put-4-field-in-table-view-but-some-field-have-long/m-p/622572#M216431</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-11-30T08:39:21Z</dc:date>
    </item>
    <item>
      <title>Re: I need to put 4 field in table view but some field have long sentence so the table view was in organize.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-put-4-field-in-table-view-but-some-field-have-long/m-p/622645#M216472</link>
      <description>&lt;P&gt;Flaw field&lt;/P&gt;&lt;PRE&gt;The application calls the javax.servlet.jsp.JspWriter.print() function, which may expose information about the application logic or other 
details such as the names and versions of the application container and associated components.  This information can be useful in executing other attacks 
and can also enable the attacker to target known vulnerabilities in application components.&lt;/PRE&gt;&lt;P&gt;Solution field&lt;/P&gt;&lt;PRE&gt;Ensure that error codes or other messages 
returned to end users are not overly verbose.  Sanitize all messages of any sensitive information that is not absolutely necessary&lt;/PRE&gt;&lt;P&gt;Answer field&lt;/P&gt;&lt;PRE&gt;https://cwe.mitre.org/data/definitions/209.html&lt;/PRE&gt;</description>
      <pubDate>Wed, 30 Nov 2022 14:26:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-put-4-field-in-table-view-but-some-field-have-long/m-p/622645#M216472</guid>
      <dc:creator>karu0711</dc:creator>
      <dc:date>2022-11-30T14:26:38Z</dc:date>
    </item>
    <item>
      <title>Re: I need to put 4 field in table view but some field have long sentence so the table view was in organize.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-put-4-field-in-table-view-but-some-field-have-long/m-p/622646#M216473</link>
      <description>&lt;P&gt;So, none of this text includes a hash (#) so use that as your delimiter on the mvzip and split commands (as I suggested earlier)&lt;/P&gt;</description>
      <pubDate>Wed, 30 Nov 2022 14:32:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-put-4-field-in-table-view-but-some-field-have-long/m-p/622646#M216473</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-11-30T14:32:44Z</dc:date>
    </item>
    <item>
      <title>Re: I need to put 4 field in table view but some field have long sentence so the table view was in organize.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-put-4-field-in-table-view-but-some-field-have-long/m-p/622657#M216479</link>
      <description>&lt;P&gt;It still putting the field together. But when I use the Below SPL it is separating the fields as I want but first two felids are repeating first event field value. Why is this happening?&lt;/P&gt;&lt;PRE&gt;index=main sourcetype="ms.356"
| eval nested_payload=mvzip(flaw, solution, "--")
| mvexpand nested_payload
| eval flaw=mvindex(split(nested_payload,"--"),1)
| eval solution=mvindex(split(nested_payload,"--"),0)
| eval nested_payload=mvzip(answer, COE, "--")
| mvexpand nested_payload
| eval answer=mvindex(split(nested_payload,"--"),1)
| eval COE=mvindex(split(nested_payload,"--"),0)
| table flaw solution answer COE&lt;/PRE&gt;</description>
      <pubDate>Wed, 30 Nov 2022 15:09:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-put-4-field-in-table-view-but-some-field-have-long/m-p/622657#M216479</guid>
      <dc:creator>karu0711</dc:creator>
      <dc:date>2022-11-30T15:09:07Z</dc:date>
    </item>
    <item>
      <title>Re: I need to put 4 field in table view but some field have long sentence so the table view was in organize.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-put-4-field-in-table-view-but-some-field-have-long/m-p/622665#M216482</link>
      <description>&lt;P&gt;Because that's how mvexpand works - it duplicates all the fields not being expanded.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Nov 2022 15:41:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-put-4-field-in-table-view-but-some-field-have-long/m-p/622665#M216482</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-11-30T15:41:54Z</dc:date>
    </item>
    <item>
      <title>Re: I need to put 4 field in table view but some field have long sentence so the table view was in organize.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-put-4-field-in-table-view-but-some-field-have-long/m-p/622675#M216487</link>
      <description>&lt;P&gt;I am trying to accomplish here is getting all the event value in same row. when I you the table command ther is no row separation each event. Is there any way I can accomplish without using mvzip or mvexpand. and field also need to be searchable form dashboard.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Nov 2022 16:11:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-put-4-field-in-table-view-but-some-field-have-long/m-p/622675#M216487</guid>
      <dc:creator>karu0711</dc:creator>
      <dc:date>2022-11-30T16:11:42Z</dc:date>
    </item>
    <item>
      <title>Re: I need to put 4 field in table view but some field have long sentence so the table view was in organize.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-put-4-field-in-table-view-but-some-field-have-long/m-p/622699#M216489</link>
      <description>&lt;P&gt;Something like this?&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| eval joined=mvappend(flaw,solution,answer)
| eval joined=mvjoin(joined,"
")&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 30 Nov 2022 16:58:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-put-4-field-in-table-view-but-some-field-have-long/m-p/622699#M216489</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-11-30T16:58:26Z</dc:date>
    </item>
    <item>
      <title>Re: I need to put 4 field in table view but some field have long sentence so the table view was in organize.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-put-4-field-in-table-view-but-some-field-have-long/m-p/622701#M216491</link>
      <description>&lt;P&gt;which query I use this?&lt;/P&gt;</description>
      <pubDate>Wed, 30 Nov 2022 17:01:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-put-4-field-in-table-view-but-some-field-have-long/m-p/622701#M216491</guid>
      <dc:creator>karu0711</dc:creator>
      <dc:date>2022-11-30T17:01:25Z</dc:date>
    </item>
    <item>
      <title>Re: I need to put 4 field in table view but some field have long sentence so the table view was in organize.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-put-4-field-in-table-view-but-some-field-have-long/m-p/622704#M216493</link>
      <description>&lt;LI-CODE lang="markup"&gt;index=main sourcetype="ms.356"
| eval joined=mvappend(flaw,solution,answer,COE)
| eval joined=mvjoin(joined,"
")&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 30 Nov 2022 17:04:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-put-4-field-in-table-view-but-some-field-have-long/m-p/622704#M216493</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-11-30T17:04:30Z</dc:date>
    </item>
  </channel>
</rss>

