<?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: Splunk mvexpand results truncated in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Splunk-mvexpand-results-truncated/m-p/712481#M240341</link>
    <description>&lt;LI-CODE lang="markup"&gt;| sort 0 _time host&lt;/LI-CODE&gt;</description>
    <pubDate>Tue, 25 Feb 2025 14:23:24 GMT</pubDate>
    <dc:creator>ITWhisperer</dc:creator>
    <dc:date>2025-02-25T14:23:24Z</dc:date>
    <item>
      <title>Splunk mvexpand results truncated</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Splunk-mvexpand-results-truncated/m-p/712403#M240334</link>
      <description>&lt;P&gt;Hi, I have this Splunk SPL:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=EventViewer source="WinEventLog:Application" SourceName=sample
| table host Name, Description, Location&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Name, Description, and Location are all multi value fields that directly corresponds to each other.&amp;nbsp;&lt;BR /&gt;Here is the sample for one of the hosts:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Name          Description             Location
name1         description1            location1
name2         description2            location2
name3         description3            location3
name4         description4            location4&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;What I am trying to do is show each record for each host in a separate row. I cannot use mvexpand becasue there are millions of events and it causes the results to truncated due to the following warn message:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;command.mvexpand: output will be truncated at 35500 results due to excessive memory usage.&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I cannot do anything with limits.conf to adjust this memory limit so I need an alternative option to display each record in individual rows.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Feb 2025 22:39:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Splunk-mvexpand-results-truncated/m-p/712403#M240334</guid>
      <dc:creator>Singh10</dc:creator>
      <dc:date>2025-02-24T22:39:00Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk mvexpand results truncated</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Splunk-mvexpand-results-truncated/m-p/712405#M240335</link>
      <description>&lt;P&gt;Try something like this&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| eval combined=mvzip(name,mvzip(location,description,"|"),"|")
| stats count by combined
| eval name=mvindex(split(combined,"|"),0)
| eval location=mvindex(split(combined,"|"),1)
| eval description=mvindex(split(combined,"|"),2)&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 25 Feb 2025 00:05:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Splunk-mvexpand-results-truncated/m-p/712405#M240335</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2025-02-25T00:05:54Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk mvexpand results truncated</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Splunk-mvexpand-results-truncated/m-p/712412#M240339</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;Name, Description, and Location are all multi value fields that directly corresponds to each other.&amp;nbsp;&lt;BR /&gt;Here is the sample for one of the hosts:&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Name          Description             Location
name1         description1            location1
name2         description2            location2
name3         description3            location3
name4         description4            location4&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you explain how is this sample for ONE of the hosts? &amp;nbsp;Does the above represent one field with five lines, the first line being "Name Description Location"? &amp;nbsp;Or do you mean to say a sample for one of the hosts looks like&lt;/P&gt;&lt;TABLE border="1" width="100%"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="33.333333333333336%"&gt;Name&lt;/TD&gt;&lt;TD width="33.333333333333336%"&gt;Description&lt;/TD&gt;&lt;TD width="33.333333333333336%"&gt;Location&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="33.333333333333336%"&gt;Name1&lt;BR /&gt;Name2&lt;BR /&gt;Name3&lt;BR /&gt;Name4&lt;/TD&gt;&lt;TD width="33.333333333333336%"&gt;description1&lt;BR /&gt;description2&lt;BR /&gt;description3&lt;BR /&gt;description4&lt;/TD&gt;&lt;TD width="33.333333333333336%"&gt;location1&lt;BR /&gt;location2&lt;BR /&gt;location3&lt;BR /&gt;location4&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;Or something totally different?&lt;/P&gt;&lt;P&gt;Also, your SPL snippet doesn't show the mvexpand command that causes the memory error. &amp;nbsp;How are you using mvexpand?&lt;/P&gt;&lt;P&gt;Additionally, what is the expected output from the sample, after you clarify how the sample actually look like?&lt;/P&gt;</description>
      <pubDate>Tue, 25 Feb 2025 03:39:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Splunk-mvexpand-results-truncated/m-p/712412#M240339</guid>
      <dc:creator>yuanliu</dc:creator>
      <dc:date>2025-02-25T03:39:43Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk mvexpand results truncated</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Splunk-mvexpand-results-truncated/m-p/712478#M240340</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp;, This seems to work.&amp;nbsp; How can I display results where all the names, locations, and descriptions from the same event are displayed together. For example:&lt;/P&gt;&lt;TABLE border="1" width="100%"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="20%"&gt;host&lt;/TD&gt;&lt;TD width="20%"&gt;_time&lt;/TD&gt;&lt;TD width="20%"&gt;Name&lt;/TD&gt;&lt;TD width="20%"&gt;Location&lt;/TD&gt;&lt;TD width="20%"&gt;Description&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="20%"&gt;host1&lt;/TD&gt;&lt;TD width="20%"&gt;9:06&lt;/TD&gt;&lt;TD width="20%"&gt;Name1&lt;/TD&gt;&lt;TD width="20%"&gt;Location1&lt;/TD&gt;&lt;TD width="20%"&gt;Description1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="20%"&gt;host1&lt;/TD&gt;&lt;TD width="20%"&gt;9:06&lt;/TD&gt;&lt;TD width="20%"&gt;Name2&lt;/TD&gt;&lt;TD width="20%"&gt;Location2&lt;/TD&gt;&lt;TD width="20%"&gt;Description2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="20%"&gt;host2&lt;/TD&gt;&lt;TD width="20%"&gt;8:02&lt;/TD&gt;&lt;TD width="20%"&gt;Name1&lt;/TD&gt;&lt;TD width="20%"&gt;Location1&lt;/TD&gt;&lt;TD width="20%"&gt;Description1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="20%"&gt;host2&lt;/TD&gt;&lt;TD width="20%"&gt;8:02&lt;/TD&gt;&lt;TD width="20%"&gt;Name2&lt;/TD&gt;&lt;TD width="20%"&gt;Location2&lt;/TD&gt;&lt;TD width="20%"&gt;Description2&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;If the event is sent at 9:02 lets say for a specific host. I want to make sure all names, locations, and descriptions are displayed below each other. I hope that makes sense. I would really appreciate your help.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Feb 2025 14:14:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Splunk-mvexpand-results-truncated/m-p/712478#M240340</guid>
      <dc:creator>Singh10</dc:creator>
      <dc:date>2025-02-25T14:14:11Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk mvexpand results truncated</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Splunk-mvexpand-results-truncated/m-p/712481#M240341</link>
      <description>&lt;LI-CODE lang="markup"&gt;| sort 0 _time host&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 25 Feb 2025 14:23:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Splunk-mvexpand-results-truncated/m-p/712481#M240341</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2025-02-25T14:23:24Z</dc:date>
    </item>
  </channel>
</rss>

