<?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: Plotting three fields on timechart in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Plotting-three-fields-on-timechart/m-p/74164#M18651</link>
    <description>&lt;P&gt;xyseries creates problem when i increase my time range as its plotting each n every day&lt;/P&gt;</description>
    <pubDate>Tue, 01 Oct 2013 06:27:13 GMT</pubDate>
    <dc:creator>ChhayaV</dc:creator>
    <dc:date>2013-10-01T06:27:13Z</dc:date>
    <item>
      <title>Plotting three fields on timechart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Plotting-three-fields-on-timechart/m-p/74156#M18643</link>
      <description>&lt;P&gt;hi,&lt;BR /&gt;
hi,&lt;/P&gt;

&lt;P&gt;How can i plot value of three fields on timechart&lt;/P&gt;

&lt;P&gt;ProcessName duration(Sec) _time&lt;/P&gt;

&lt;P&gt;SaveAllData 1.2  2013-09-24T04:57:20.325+0530&lt;/P&gt;

&lt;P&gt;SaveAllData 0.02  2013-09-24T02:57:17.680+0530&lt;/P&gt;

&lt;P&gt;working_Days_test  0.05 2013-09-23T22:16:57.994+0530&lt;/P&gt;

&lt;P&gt;CreateProductsCSV  0.05 2013-09-23T12:08:27.489+0530&lt;/P&gt;

&lt;P&gt;i want to see a timechart which shows which process took how many seconds and at what time&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 14:50:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Plotting-three-fields-on-timechart/m-p/74156#M18643</guid>
      <dc:creator>ChhayaV</dc:creator>
      <dc:date>2020-09-28T14:50:53Z</dc:date>
    </item>
    <item>
      <title>Re: Plotting three fields on timechart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Plotting-three-fields-on-timechart/m-p/74157#M18644</link>
      <description>&lt;P&gt;Try the below alternative (produces similar results as timechart)&lt;/P&gt;

&lt;P&gt;index=myindex sourcetype=processdata |chart  max(duration) as duration over _time by ProcessName&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2013 20:03:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Plotting-three-fields-on-timechart/m-p/74157#M18644</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2013-09-26T20:03:26Z</dc:date>
    </item>
    <item>
      <title>Re: Plotting three fields on timechart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Plotting-three-fields-on-timechart/m-p/74158#M18645</link>
      <description>&lt;P&gt;hi i dont want max of duration i want to plot each and every duration&lt;/P&gt;</description>
      <pubDate>Fri, 27 Sep 2013 03:19:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Plotting-three-fields-on-timechart/m-p/74158#M18645</guid>
      <dc:creator>ChhayaV</dc:creator>
      <dc:date>2013-09-27T03:19:40Z</dc:date>
    </item>
    <item>
      <title>Re: Plotting three fields on timechart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Plotting-three-fields-on-timechart/m-p/74159#M18646</link>
      <description>&lt;P&gt;If you just want plot values and don't care about limiting datapoints etc, you could just do&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;... | xyseries _time ProcessName duration
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 27 Sep 2013 06:18:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Plotting-three-fields-on-timechart/m-p/74159#M18646</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2013-09-27T06:18:17Z</dc:date>
    </item>
    <item>
      <title>Re: Plotting three fields on timechart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Plotting-three-fields-on-timechart/m-p/74160#M18647</link>
      <description>&lt;P&gt;Hey thanks i wasn't knowing about this command but its not showing anything on chart i can see only names of the processes&lt;/P&gt;

&lt;P&gt;this is my search&lt;/P&gt;

&lt;P&gt;index=tm_idx host="server" "finished executing normally" | rex field=_raw "(?i)Process\s(\"|\"})(?&lt;PROCESSNAME&gt;\w+)" | rex field=_raw "elapsed\stime\s(?&lt;MYDURATION&gt;\w.\w+)\sseconds" |xyseries  _time Processname myduration&lt;/MYDURATION&gt;&lt;/PROCESSNAME&gt;&lt;/P&gt;

&lt;P&gt;basically i want to show number of process running on ther server with the time it took to complete&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 14:51:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Plotting-three-fields-on-timechart/m-p/74160#M18647</guid>
      <dc:creator>ChhayaV</dc:creator>
      <dc:date>2020-09-28T14:51:15Z</dc:date>
    </item>
    <item>
      <title>Re: Plotting three fields on timechart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Plotting-three-fields-on-timechart/m-p/74161#M18648</link>
      <description>&lt;P&gt;Well, that would be how you would achieve what you want. I just verified this on my own installation here. If that truly is your search, please note that field names are case sensitive, so "Processname" is not the same as "processname".&lt;/P&gt;</description>
      <pubDate>Fri, 27 Sep 2013 07:04:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Plotting-three-fields-on-timechart/m-p/74161#M18648</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2013-09-27T07:04:30Z</dc:date>
    </item>
    <item>
      <title>Re: Plotting three fields on timechart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Plotting-three-fields-on-timechart/m-p/74162#M18649</link>
      <description>&lt;P&gt;my search is running properly its copy paste mistake..i can see the names of the processes as legend but no chart is displayed&lt;/P&gt;</description>
      <pubDate>Fri, 27 Sep 2013 08:15:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Plotting-three-fields-on-timechart/m-p/74162#M18649</guid>
      <dc:creator>ChhayaV</dc:creator>
      <dc:date>2013-09-27T08:15:42Z</dc:date>
    </item>
    <item>
      <title>Re: Plotting three fields on timechart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Plotting-three-fields-on-timechart/m-p/74163#M18650</link>
      <description>&lt;P&gt;Did you try it?&lt;/P&gt;

&lt;P&gt;Depending upon your data, that may show exactly what you're after; you'll only get max (and not &lt;EM&gt;each and every duration&lt;/EM&gt;) if there are multiple durations in the same second.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Sep 2013 12:29:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Plotting-three-fields-on-timechart/m-p/74163#M18650</guid>
      <dc:creator>sowings</dc:creator>
      <dc:date>2013-09-27T12:29:57Z</dc:date>
    </item>
    <item>
      <title>Re: Plotting three fields on timechart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Plotting-three-fields-on-timechart/m-p/74164#M18651</link>
      <description>&lt;P&gt;xyseries creates problem when i increase my time range as its plotting each n every day&lt;/P&gt;</description>
      <pubDate>Tue, 01 Oct 2013 06:27:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Plotting-three-fields-on-timechart/m-p/74164#M18651</guid>
      <dc:creator>ChhayaV</dc:creator>
      <dc:date>2013-10-01T06:27:13Z</dc:date>
    </item>
    <item>
      <title>Re: Plotting three fields on timechart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Plotting-three-fields-on-timechart/m-p/74165#M18652</link>
      <description>&lt;P&gt;Yes, that is expected - that's why you should use timechart, because it automatically keeps the amount of datapoints down for you. But you said you didn't want that, so this is the issue you'll be running into instead.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Oct 2013 07:40:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Plotting-three-fields-on-timechart/m-p/74165#M18652</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2013-10-01T07:40:07Z</dc:date>
    </item>
  </channel>
</rss>

