<?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: Timechart /chart in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Timechart-chart/m-p/369233#M169913</link>
    <description>&lt;P&gt;As I mentioned, I didn't completely understand what you are looking for, so just took a stab at it &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;I still don't really follow what you want to achieve to be honest. As mentioned: can you share perhaps what the data looks like before you visualize it? And elaborate a bit on what you want the visualization to show (e.g. what should be on X axis, what on Y axis, what should be the series)?&lt;/P&gt;</description>
    <pubDate>Fri, 27 Apr 2018 14:43:57 GMT</pubDate>
    <dc:creator>FrankVl</dc:creator>
    <dc:date>2018-04-27T14:43:57Z</dc:date>
    <item>
      <title>Timechart /chart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timechart-chart/m-p/369229#M169909</link>
      <description>&lt;P&gt;I'm looking to have line chart, which shows AccountID , Username and duration, how would put this with timechart chart so I can have all 3 columns in line chart which says loading time duration on AccountID. or should try using Pivot&lt;/P&gt;</description>
      <pubDate>Fri, 27 Apr 2018 14:05:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timechart-chart/m-p/369229#M169909</guid>
      <dc:creator>swetasoneji</dc:creator>
      <dc:date>2018-04-27T14:05:29Z</dc:date>
    </item>
    <item>
      <title>Re: Timechart /chart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timechart-chart/m-p/369230#M169910</link>
      <description>&lt;P&gt;Not 100% sure what you are looking for, perhaps you can share a sample / screenshot of the data you have and explain a bit more how you want to visualize it?&lt;/P&gt;

&lt;P&gt;If you want to plot the duration over time for each account, you could try something like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| timechart avg(duration) by AccountID
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;If you want both the AccountID and the Username in the series label, then you would have to glue those together into a new field first and then use that field in the by clause:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| eval UsernameID = Username." - ".AccountID
| timechart avg(duration) by UsernameID
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 27 Apr 2018 14:13:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timechart-chart/m-p/369230#M169910</guid>
      <dc:creator>FrankVl</dc:creator>
      <dc:date>2018-04-27T14:13:58Z</dc:date>
    </item>
    <item>
      <title>Re: Timechart /chart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timechart-chart/m-p/369231#M169911</link>
      <description>&lt;P&gt;Thanks, above can be useful later however I'm trying to achieve, how long each account is taking to load. so avg(duration) won't be ideal.&lt;BR /&gt;
So Line chart/column chart should show AccountID, Username and Duration.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Apr 2018 14:38:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timechart-chart/m-p/369231#M169911</guid>
      <dc:creator>swetasoneji</dc:creator>
      <dc:date>2018-04-27T14:38:29Z</dc:date>
    </item>
    <item>
      <title>Re: Timechart /chart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timechart-chart/m-p/369232#M169912</link>
      <description>&lt;P&gt;As above showing avg of duration. I'm looking for  how much duration each AccountID taking to launch with their Username. It should show actual duration instead avg.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Apr 2018 14:41:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timechart-chart/m-p/369232#M169912</guid>
      <dc:creator>swetasoneji</dc:creator>
      <dc:date>2018-04-27T14:41:26Z</dc:date>
    </item>
    <item>
      <title>Re: Timechart /chart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timechart-chart/m-p/369233#M169913</link>
      <description>&lt;P&gt;As I mentioned, I didn't completely understand what you are looking for, so just took a stab at it &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;I still don't really follow what you want to achieve to be honest. As mentioned: can you share perhaps what the data looks like before you visualize it? And elaborate a bit on what you want the visualization to show (e.g. what should be on X axis, what on Y axis, what should be the series)?&lt;/P&gt;</description>
      <pubDate>Fri, 27 Apr 2018 14:43:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timechart-chart/m-p/369233#M169913</guid>
      <dc:creator>FrankVl</dc:creator>
      <dc:date>2018-04-27T14:43:57Z</dc:date>
    </item>
    <item>
      <title>Re: Timechart /chart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timechart-chart/m-p/369234#M169914</link>
      <description>&lt;P&gt;Thanks for above, Basically I would like to Put duration on X Axis and Y- AccountID/USername&lt;/P&gt;</description>
      <pubDate>Fri, 27 Apr 2018 14:48:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timechart-chart/m-p/369234#M169914</guid>
      <dc:creator>swetasoneji</dc:creator>
      <dc:date>2018-04-27T14:48:06Z</dc:date>
    </item>
    <item>
      <title>Re: Timechart /chart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timechart-chart/m-p/369235#M169915</link>
      <description>&lt;P&gt;Ok, so no timechart then.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| chart avg(Duration) over AccountID
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;And then select a horizontal bar chart, to make the duration show on the x-axis.&lt;/P&gt;

&lt;P&gt;You need to apply some stats function to the field you are visualizing, you cannot simply put &lt;CODE&gt;| chart Duration over AccountID&lt;/CODE&gt;. If there is only 1 Duration per AccountID in your data, then avg() will return that Duration, so that should be fine. If there are multiple Durations in your data, then you need to think what would be the best stats function for you to use (min(), max(), latest()...).&lt;/P&gt;</description>
      <pubDate>Fri, 27 Apr 2018 14:55:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timechart-chart/m-p/369235#M169915</guid>
      <dc:creator>FrankVl</dc:creator>
      <dc:date>2018-04-27T14:55:18Z</dc:date>
    </item>
    <item>
      <title>Re: Timechart /chart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timechart-chart/m-p/369236#M169916</link>
      <description>&lt;P&gt;Can I put _time as third field?&lt;BR /&gt;
&lt;CODE&gt;| eval UsernameID = Username." - ".AccountID&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;Or perhaps, Duration, Time on X axis and Y axis  AccountID/USername&lt;/P&gt;</description>
      <pubDate>Fri, 27 Apr 2018 15:31:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timechart-chart/m-p/369236#M169916</guid>
      <dc:creator>swetasoneji</dc:creator>
      <dc:date>2018-04-27T15:31:27Z</dc:date>
    </item>
    <item>
      <title>Re: Timechart /chart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timechart-chart/m-p/369237#M169917</link>
      <description>&lt;P&gt;Sure you can concatenate a time string to that combined field as well. You might have some challenges sorting it in a meaningful way, but just give it a try.&lt;/P&gt;

&lt;P&gt;Not sure how you envision putting duration combined with time on the x-axis. I would say you want to keep the duration on its own, otherwise you can't visualize it anymore as numeric values.&lt;/P&gt;

&lt;P&gt;But again: I'm a bit lost as to what you actually want to achieve in the end.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Apr 2018 16:16:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timechart-chart/m-p/369237#M169917</guid>
      <dc:creator>FrankVl</dc:creator>
      <dc:date>2018-04-27T16:16:10Z</dc:date>
    </item>
  </channel>
</rss>

