<?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: mvlist functionality in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/mvlist-functionality/m-p/110087#M28755</link>
    <description>&lt;P&gt;already tried it. The default delim=" ", can be changed to delim="," however I think I tried both ways.&lt;/P&gt;</description>
    <pubDate>Thu, 27 Mar 2014 22:31:55 GMT</pubDate>
    <dc:creator>javiles1960</dc:creator>
    <dc:date>2014-03-27T22:31:55Z</dc:date>
    <item>
      <title>mvlist functionality</title>
      <link>https://community.splunk.com/t5/Splunk-Search/mvlist-functionality/m-p/110085#M28753</link>
      <description>&lt;P&gt;My search (1)&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;transaction PG SessionID mvlist=SessionEventNet nullstr=0|eventstats sum(SessionEventNet) as SessionNet
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;works great, my search (2)&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;transaction PG SessionID mvlist=PN nullstr=0|eventstats sum(PN) as CashIn
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;works great as well, my search (3)&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;transaction PG SessionID mvlist=SessionEventNet PN nullstr=0|eventstats sum(SessionEventNet) as SessionNet sum(PN) as CashIn
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;does not produce the desired results on CashIn, only on SessionEventNet&lt;BR /&gt;
Anyone???&lt;/P&gt;</description>
      <pubDate>Thu, 27 Mar 2014 21:29:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/mvlist-functionality/m-p/110085#M28753</guid>
      <dc:creator>javiles1960</dc:creator>
      <dc:date>2014-03-27T21:29:36Z</dc:date>
    </item>
    <item>
      <title>Re: mvlist functionality</title>
      <link>https://community.splunk.com/t5/Splunk-Search/mvlist-functionality/m-p/110086#M28754</link>
      <description>&lt;P&gt;The doc says &lt;CODE&gt;mvlist&lt;/CODE&gt; takes a comma-separated list of fields, so try this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;transaction PG SessionID mvlist=SessionEventNet,PN nullstr=0|eventstats sum(SessionEventNet) as SessionNet sum(PN) as CashIn
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;A href="http://docs.splunk.com/Documentation/Splunk/6.0.2/SearchReference/Transaction"&gt;http://docs.splunk.com/Documentation/Splunk/6.0.2/SearchReference/Transaction&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Mar 2014 22:11:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/mvlist-functionality/m-p/110086#M28754</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2014-03-27T22:11:36Z</dc:date>
    </item>
    <item>
      <title>Re: mvlist functionality</title>
      <link>https://community.splunk.com/t5/Splunk-Search/mvlist-functionality/m-p/110087#M28755</link>
      <description>&lt;P&gt;already tried it. The default delim=" ", can be changed to delim="," however I think I tried both ways.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Mar 2014 22:31:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/mvlist-functionality/m-p/110087#M28755</guid>
      <dc:creator>javiles1960</dc:creator>
      <dc:date>2014-03-27T22:31:55Z</dc:date>
    </item>
    <item>
      <title>Re: mvlist functionality</title>
      <link>https://community.splunk.com/t5/Splunk-Search/mvlist-functionality/m-p/110088#M28756</link>
      <description>&lt;P&gt;already tried it. The default delim=" ", can be changed to delim="," however I think I tried both ways.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Mar 2014 22:32:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/mvlist-functionality/m-p/110088#M28756</guid>
      <dc:creator>javiles1960</dc:creator>
      <dc:date>2014-03-27T22:32:16Z</dc:date>
    </item>
    <item>
      <title>Re: mvlist functionality</title>
      <link>https://community.splunk.com/t5/Splunk-Search/mvlist-functionality/m-p/110089#M28757</link>
      <description>&lt;P&gt;Here is how I solved it:&lt;/P&gt;

&lt;P&gt;transaction PG SessionID mvlist=(t SessionEventNet PN) nullstr=0|eventstats sum(SessionEventNet) as SessionNet sum(PN) as CashIn&lt;/P&gt;</description>
      <pubDate>Fri, 28 Mar 2014 21:21:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/mvlist-functionality/m-p/110089#M28757</guid>
      <dc:creator>javiles1960</dc:creator>
      <dc:date>2014-03-28T21:21:53Z</dc:date>
    </item>
    <item>
      <title>Re: mvlist functionality</title>
      <link>https://community.splunk.com/t5/Splunk-Search/mvlist-functionality/m-p/110090#M28758</link>
      <description>&lt;P&gt;I am still not able to get 2 fields in the mvlist list.  Here is my transaction line now:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| transaction visitID mvlist=actionName
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;i get a nice set of values that groups actions by visitID. However, if i change the above line to:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| transaction visitID mvlist=actionName,event_time
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I get a totally different result set that doesn't look anything like the way i want it.  Below is my full query:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;source="/var/log/logstash/dynatraceqa*" businessTransaction="Real User Page Actions - Copy"
| transaction visitID mvlist=actionName
| table  application, visitID,  event_time, actionName, eventcount
| sort event_time
| addtotals row=f col=t fieldname=Total labelfield=actionName eventcount
| rename event_time as "Start Time", application as "Application", visitID as "Visit ID", actionName as "User Action". eventcount as "Action Count" 
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 13 Dec 2016 21:25:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/mvlist-functionality/m-p/110090#M28758</guid>
      <dc:creator>gt_dev</dc:creator>
      <dc:date>2016-12-13T21:25:38Z</dc:date>
    </item>
    <item>
      <title>Re: mvlist functionality</title>
      <link>https://community.splunk.com/t5/Splunk-Search/mvlist-functionality/m-p/110091#M28759</link>
      <description>&lt;P&gt;Hi @gt_dev&lt;/P&gt;

&lt;P&gt;This question is over 2 years old. I'd suggest asking your own question instead of trying to get help on an old thread.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Dec 2016 21:30:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/mvlist-functionality/m-p/110091#M28759</guid>
      <dc:creator>ppablo</dc:creator>
      <dc:date>2016-12-13T21:30:16Z</dc:date>
    </item>
    <item>
      <title>Re: mvlist functionality</title>
      <link>https://community.splunk.com/t5/Splunk-Search/mvlist-functionality/m-p/110092#M28760</link>
      <description>&lt;P&gt;Did you try mvlist=&lt;STRONG&gt;(&lt;/STRONG&gt;actionName,event_time*&lt;EM&gt;)&lt;/EM&gt;* ?&lt;BR /&gt;&lt;BR /&gt;
Add () to the fileds.May be it works.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 12:07:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/mvlist-functionality/m-p/110092#M28760</guid>
      <dc:creator>kenkenou</dc:creator>
      <dc:date>2020-09-29T12:07:09Z</dc:date>
    </item>
    <item>
      <title>Re: mvlist functionality</title>
      <link>https://community.splunk.com/t5/Splunk-Search/mvlist-functionality/m-p/110093#M28761</link>
      <description>&lt;P&gt;good idea &lt;/P&gt;</description>
      <pubDate>Wed, 14 Dec 2016 12:40:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/mvlist-functionality/m-p/110093#M28761</guid>
      <dc:creator>gt_dev</dc:creator>
      <dc:date>2016-12-14T12:40:38Z</dc:date>
    </item>
    <item>
      <title>Re: mvlist functionality</title>
      <link>https://community.splunk.com/t5/Splunk-Search/mvlist-functionality/m-p/110094#M28762</link>
      <description>&lt;P&gt;You should use quotes:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;mvlist="SessionEventNet PN"
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 15 Jan 2019 13:50:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/mvlist-functionality/m-p/110094#M28762</guid>
      <dc:creator>AlekseiVasiliev</dc:creator>
      <dc:date>2019-01-15T13:50:28Z</dc:date>
    </item>
  </channel>
</rss>

