<?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: Time format not being recognized as data point in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Time-format-not-being-recognized-as-data-point/m-p/207658#M40940</link>
    <description>&lt;P&gt;Since your duration in hours will be a very small number in comparison to the throughput values which are in 100s or 200s range hence to represent both values on same scale better try to use the &lt;CODE&gt;log&lt;/CODE&gt; scale to represent the y axis. It can be chosen from the &lt;CODE&gt;format option&lt;/CODE&gt; of the visualization.&lt;BR /&gt;
The hour should be &lt;CODE&gt;eval Durationhrs=(Durationsec / 60/60)&lt;/CODE&gt;.&lt;/P&gt;</description>
    <pubDate>Thu, 29 Dec 2016 08:15:28 GMT</pubDate>
    <dc:creator>gokadroid</dc:creator>
    <dc:date>2016-12-29T08:15:28Z</dc:date>
    <item>
      <title>Time format not being recognized as data point</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Time-format-not-being-recognized-as-data-point/m-p/207653#M40935</link>
      <description>&lt;P&gt;I have a search with multiple time formats, and the "Duration" time format isn't being recognized when I to a chart. Take a look at the screenshot:&lt;BR /&gt;
&lt;IMG src="https://community.splunk.com/storage/temp/174436-screen-shot-2016-12-28-at-102148-am.png" alt="alt text" /&gt;&lt;/P&gt;

&lt;P&gt;I am trying to overlay "Duration" with "Throughput _GB_Hour", but on the chart Duration is always zero, whereas in the table we can see different time stamps.&lt;/P&gt;

&lt;P&gt;My guess is I need to convert this somehow, but I am stuck as to how to make this work.&lt;/P&gt;

&lt;P&gt;Here is my search&lt;BR /&gt;
&lt;CODE&gt;eventtype=cv "Source Client"=* "Destination Client"=slc-p-res* OR dab* Duration=* "Start Time"=* "End Time or Current Phase"=* "Throughput _GB_Hour"=* | convert ctime(_time) | table _time "Source Client" "Destination Client" "Start Time" "End Time or Current Phase" Duration "Throughput _GB_Hour"&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 12:12:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Time-format-not-being-recognized-as-data-point/m-p/207653#M40935</guid>
      <dc:creator>HCadmins</dc:creator>
      <dc:date>2020-09-29T12:12:21Z</dc:date>
    </item>
    <item>
      <title>Re: Time format not being recognized as data point</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Time-format-not-being-recognized-as-data-point/m-p/207654#M40936</link>
      <description>&lt;P&gt;your &lt;CODE&gt;Duration&lt;/CODE&gt; and &lt;CODE&gt;Throughput _GB_Hour&lt;/CODE&gt; have different &lt;CODE&gt;units&lt;/CODE&gt;. One in &lt;CODE&gt;time&lt;/CODE&gt; and other in &lt;CODE&gt;real number&lt;/CODE&gt;. What is your expectancy when your are trying to plot them on the same y axis?&lt;/P&gt;</description>
      <pubDate>Wed, 28 Dec 2016 17:51:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Time-format-not-being-recognized-as-data-point/m-p/207654#M40936</guid>
      <dc:creator>gokadroid</dc:creator>
      <dc:date>2016-12-28T17:51:10Z</dc:date>
    </item>
    <item>
      <title>Re: Time format not being recognized as data point</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Time-format-not-being-recognized-as-data-point/m-p/207655#M40937</link>
      <description>&lt;P&gt;I just wanted to overlay the time it takes for a particular backup with its throughput.&lt;/P&gt;</description>
      <pubDate>Wed, 28 Dec 2016 17:53:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Time-format-not-being-recognized-as-data-point/m-p/207655#M40937</guid>
      <dc:creator>HCadmins</dc:creator>
      <dc:date>2016-12-28T17:53:28Z</dc:date>
    </item>
    <item>
      <title>Re: Time format not being recognized as data point</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Time-format-not-being-recognized-as-data-point/m-p/207656#M40938</link>
      <description>&lt;P&gt;Okay, got it!&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;convert dur2sec(Duration) AS Durationsec | eval Durationhrs=(Durationsec / 60)&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;Lets me use that duration time as hours, and makes my chart work!&lt;/P&gt;</description>
      <pubDate>Wed, 28 Dec 2016 17:59:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Time-format-not-being-recognized-as-data-point/m-p/207656#M40938</guid>
      <dc:creator>HCadmins</dc:creator>
      <dc:date>2016-12-28T17:59:20Z</dc:date>
    </item>
    <item>
      <title>Re: Time format not being recognized as data point</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Time-format-not-being-recognized-as-data-point/m-p/207657#M40939</link>
      <description>&lt;P&gt;But wait... is this really giving me the hours? Or do I need to do &lt;CODE&gt;eval Durationhrs=(Durationsec / 60/60)?&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Dec 2016 18:05:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Time-format-not-being-recognized-as-data-point/m-p/207657#M40939</guid>
      <dc:creator>HCadmins</dc:creator>
      <dc:date>2016-12-28T18:05:20Z</dc:date>
    </item>
    <item>
      <title>Re: Time format not being recognized as data point</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Time-format-not-being-recognized-as-data-point/m-p/207658#M40940</link>
      <description>&lt;P&gt;Since your duration in hours will be a very small number in comparison to the throughput values which are in 100s or 200s range hence to represent both values on same scale better try to use the &lt;CODE&gt;log&lt;/CODE&gt; scale to represent the y axis. It can be chosen from the &lt;CODE&gt;format option&lt;/CODE&gt; of the visualization.&lt;BR /&gt;
The hour should be &lt;CODE&gt;eval Durationhrs=(Durationsec / 60/60)&lt;/CODE&gt;.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Dec 2016 08:15:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Time-format-not-being-recognized-as-data-point/m-p/207658#M40940</guid>
      <dc:creator>gokadroid</dc:creator>
      <dc:date>2016-12-29T08:15:28Z</dc:date>
    </item>
  </channel>
</rss>

