<?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 do I create a chart with the x-axis as processing time for transactions and the y-axis as number of events? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-create-a-chart-with-the-x-axis-as-processing-time-for/m-p/285460#M86369</link>
    <description>&lt;P&gt;Location          Processing Time (minutes)              trans_date&lt;/P&gt;

&lt;HR /&gt;

&lt;P&gt;Central           21                                                     09/21/2016&lt;BR /&gt;
  South East     40                                                   09/22/2016  &lt;/P&gt;

&lt;P&gt;Is there a way I can get a bar chart with time buckets , y-axis-primary showing percentage (transactions), y-axis secondary showing processing_time (0-10 mins, 10-20 mins etc) and x axis showing trans_date ?&lt;/P&gt;</description>
    <pubDate>Tue, 29 Sep 2020 11:10:13 GMT</pubDate>
    <dc:creator>gowthamkb</dc:creator>
    <dc:date>2020-09-29T11:10:13Z</dc:date>
    <item>
      <title>How do I create a chart with the x-axis as processing time for transactions and the y-axis as number of events?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-create-a-chart-with-the-x-axis-as-processing-time-for/m-p/285456#M86365</link>
      <description>&lt;PRE&gt;&lt;CODE&gt; Location          Processing Time (minutes)               
 -----------       ---------------------------
 Central           21.6                                     
 South East        27.4     
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;How do I generate a report with my x-axis as 'Processing time' and y-axis as Number of events? With this report, I want to get the time taken by transactions.  Any help is appreciated. Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Sep 2016 16:51:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-create-a-chart-with-the-x-axis-as-processing-time-for/m-p/285456#M86365</guid>
      <dc:creator>gowthamkb</dc:creator>
      <dc:date>2016-09-15T16:51:05Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create a chart with the x-axis as processing time for transactions and the y-axis as number of events?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-create-a-chart-with-the-x-axis-as-processing-time-for/m-p/285457#M86366</link>
      <description>&lt;P&gt;Assuming your duration field is &lt;CODE&gt;processing_time&lt;/CODE&gt;:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;... | bin processing_time bins=10 | chart count over processing_time
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;The &lt;CODE&gt;bin&lt;/CODE&gt; command has many more options to tweak this as required.&lt;/P&gt;

&lt;P&gt;&lt;A href="http://docs.splunk.com/Documentation/Splunk/6.4.3/SearchReference/Bin"&gt;http://docs.splunk.com/Documentation/Splunk/6.4.3/SearchReference/Bin&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Sep 2016 17:00:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-create-a-chart-with-the-x-axis-as-processing-time-for/m-p/285457#M86366</guid>
      <dc:creator>twinspop</dc:creator>
      <dc:date>2016-09-15T17:00:30Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create a chart with the x-axis as processing time for transactions and the y-axis as number of events?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-create-a-chart-with-the-x-axis-as-processing-time-for/m-p/285458#M86367</link>
      <description>&lt;P&gt;This should give you processing time in x-axis, but not sure how you can calculate txn totals.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;... | stats count by "Processing Time (minutes)"
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 15 Sep 2016 17:03:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-create-a-chart-with-the-x-axis-as-processing-time-for/m-p/285458#M86367</guid>
      <dc:creator>sundareshr</dc:creator>
      <dc:date>2016-09-15T17:03:33Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create a chart with the x-axis as processing time for transactions and the y-axis as number of events?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-create-a-chart-with-the-x-axis-as-processing-time-for/m-p/285459#M86368</link>
      <description>&lt;P&gt;Thank you !&lt;/P&gt;</description>
      <pubDate>Thu, 15 Sep 2016 19:09:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-create-a-chart-with-the-x-axis-as-processing-time-for/m-p/285459#M86368</guid>
      <dc:creator>gowthamkb</dc:creator>
      <dc:date>2016-09-15T19:09:43Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create a chart with the x-axis as processing time for transactions and the y-axis as number of events?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-create-a-chart-with-the-x-axis-as-processing-time-for/m-p/285460#M86369</link>
      <description>&lt;P&gt;Location          Processing Time (minutes)              trans_date&lt;/P&gt;

&lt;HR /&gt;

&lt;P&gt;Central           21                                                     09/21/2016&lt;BR /&gt;
  South East     40                                                   09/22/2016  &lt;/P&gt;

&lt;P&gt;Is there a way I can get a bar chart with time buckets , y-axis-primary showing percentage (transactions), y-axis secondary showing processing_time (0-10 mins, 10-20 mins etc) and x axis showing trans_date ?&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 11:10:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-create-a-chart-with-the-x-axis-as-processing-time-for/m-p/285460#M86369</guid>
      <dc:creator>gowthamkb</dc:creator>
      <dc:date>2020-09-29T11:10:13Z</dc:date>
    </item>
  </channel>
</rss>

