<?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 use the concurrency command? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-use-the-concurrency-command/m-p/159477#M45013</link>
    <description>&lt;P&gt;Just append the searches like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=wifi HotspotName="First" | transaction TransactionId startswith="start" endswith="stop"| concurrency duration=duration | timechart max(concurrency) | append [search index=wifi HotspotName="Second" | transaction TransactionId startswith="start" endswith="stop" | concurrency duration=duration | timechart max(concurrency)]
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Wed, 17 Jun 2015 15:34:37 GMT</pubDate>
    <dc:creator>woodcock</dc:creator>
    <dc:date>2015-06-17T15:34:37Z</dc:date>
    <item>
      <title>How to use the concurrency command?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-use-the-concurrency-command/m-p/159474#M45010</link>
      <description>&lt;P&gt;Hello Splunkers,&lt;/P&gt;

&lt;P&gt;While working on charting the max concurrent usage of the wifi services in a department of my company, I fell on a small problem. I have two different hotspot names and I am trying to chart the max concurrency of both on the same stacked column chart to give visibility on which one is being used more.&lt;/P&gt;

&lt;P&gt;Charting them one at a time works wells by doing the following :&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=wifi HotspotName="First"    | transaction TransactionId startswith="start" endswith="stop"| concurrency duration=duration | timechart max(concurrency)  
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;And&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=wifi HotspotName="Second"    | transaction TransactionId startswith="start" endswith="stop"| concurrency duration=duration | timechart max(concurrency) 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;This uses up two panels/searches, so I want to have both results on the same chart. To do that, I used the following command : &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=wifi HotspotName="First"  OR HotspotName="Second"  | transaction TransactionId startswith="start" endswith="stop"| concurrency duration=duration | timechart max(concurrency) by HotspotName 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;The thing is that in this case, both &lt;STRONG&gt;HotspotName&lt;/STRONG&gt; are being displayed with the same value for concurrency. I'm guessing that's normal behavior for concurrency since at no point the concurrency is being split between both hotspots. So my question is, what can I do to make the timechart split the values of concurrency based on the hotspots and not simply show the same value for both.&lt;/P&gt;

&lt;P&gt;Hope you guys can help!&lt;/P&gt;

&lt;P&gt;Regards,&lt;BR /&gt;
David&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jun 2015 12:27:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-use-the-concurrency-command/m-p/159474#M45010</guid>
      <dc:creator>DavidHourani</dc:creator>
      <dc:date>2015-06-17T12:27:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to use the concurrency command?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-use-the-concurrency-command/m-p/159475#M45011</link>
      <description>&lt;P&gt;I'm assuming that your second query should have &lt;BR /&gt;
    HotspotName="Second"&lt;BR /&gt;
and not&lt;BR /&gt;
    HotspotName="First"&lt;BR /&gt;
?&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jun 2015 13:55:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-use-the-concurrency-command/m-p/159475#M45011</guid>
      <dc:creator>KenWhitesell</dc:creator>
      <dc:date>2015-06-17T13:55:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to use the concurrency command?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-use-the-concurrency-command/m-p/159476#M45012</link>
      <description>&lt;P&gt;lol copy/paste ^^ thanks man, fixed it &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jun 2015 13:58:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-use-the-concurrency-command/m-p/159476#M45012</guid>
      <dc:creator>DavidHourani</dc:creator>
      <dc:date>2015-06-17T13:58:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to use the concurrency command?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-use-the-concurrency-command/m-p/159477#M45013</link>
      <description>&lt;P&gt;Just append the searches like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=wifi HotspotName="First" | transaction TransactionId startswith="start" endswith="stop"| concurrency duration=duration | timechart max(concurrency) | append [search index=wifi HotspotName="Second" | transaction TransactionId startswith="start" endswith="stop" | concurrency duration=duration | timechart max(concurrency)]
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 17 Jun 2015 15:34:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-use-the-concurrency-command/m-p/159477#M45013</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2015-06-17T15:34:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to use the concurrency command?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-use-the-concurrency-command/m-p/159478#M45014</link>
      <description>&lt;P&gt;Thanks a lot Woodcock ! always here to give helpful answers &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; This charts both correct values on the same chart . Is there way to have them superpose them ? because i'm getting the charts chained one after the other.&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jun 2015 10:02:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-use-the-concurrency-command/m-p/159478#M45014</guid>
      <dc:creator>DavidHourani</dc:creator>
      <dc:date>2015-06-18T10:02:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to use the concurrency command?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-use-the-concurrency-command/m-p/159479#M45015</link>
      <description>&lt;P&gt;Ended up using transaction command on _time to regroup both values &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt; &lt;/P&gt;</description>
      <pubDate>Thu, 18 Jun 2015 12:08:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-use-the-concurrency-command/m-p/159479#M45015</guid>
      <dc:creator>DavidHourani</dc:creator>
      <dc:date>2015-06-18T12:08:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to use the concurrency command?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-use-the-concurrency-command/m-p/159480#M45016</link>
      <description>&lt;P&gt;Or add `| sort 0 _time'&lt;/P&gt;</description>
      <pubDate>Sun, 21 Jun 2015 00:07:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-use-the-concurrency-command/m-p/159480#M45016</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2015-06-21T00:07:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to use the concurrency command?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-use-the-concurrency-command/m-p/159481#M45017</link>
      <description>&lt;P&gt;Yeah it works too &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt; although when i try to eval a total and chart it along with the other lines it doesn't seem to work with the sort. Only works with transaction. Any idea why ? &lt;/P&gt;</description>
      <pubDate>Mon, 22 Jun 2015 10:10:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-use-the-concurrency-command/m-p/159481#M45017</guid>
      <dc:creator>DavidHourani</dc:creator>
      <dc:date>2015-06-22T10:10:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to use the concurrency command?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-use-the-concurrency-command/m-p/159482#M45018</link>
      <description>&lt;P&gt;You cannot &lt;CODE&gt;sort&lt;/CODE&gt; by a field that you have caused to be dropped ( &lt;CODE&gt;_time&lt;/CODE&gt; ).&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jun 2015 13:24:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-use-the-concurrency-command/m-p/159482#M45018</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2015-06-22T13:24:45Z</dc:date>
    </item>
  </channel>
</rss>

