<?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 can I make my table results in 3s time intervals? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-make-my-table-results-in-3s-time-intervals/m-p/425869#M122071</link>
    <description>&lt;P&gt;Hey..I'm seeing a problem, the time stamp is repeating in some cases&lt;/P&gt;</description>
    <pubDate>Fri, 07 Dec 2018 17:36:02 GMT</pubDate>
    <dc:creator>moizmmz</dc:creator>
    <dc:date>2018-12-07T17:36:02Z</dc:date>
    <item>
      <title>How can I make my table results in 3s time intervals?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-make-my-table-results-in-3s-time-intervals/m-p/425862#M122064</link>
      <description>&lt;P&gt;Query I am running:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index="dcg-video-eng-live-services-stage" | spath "message.req.originalUrl" | search "message.req.originalUrl"!="/health-check"| spath severity | search severity!=warn|search message.extraLogInfo./api2/asset/get.assets{}.desc!=null() 
|table _time message.extraLogInfo./api2/asset/get.assets{}.desc message.extraLogInfo./api2/asset/get.assets{}.duration
| rename  message.extraLogInfo./api2/asset/get.assets{}.desc as Channel, message.extraLogInfo./api2/asset/get.assets{}.duration as Duration
|sort -_time
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;This results in the following table:&lt;/P&gt;

&lt;P&gt;&lt;A href="https://drive.google.com/open?id=1PaUuxMNy29QYtjzKbc2i0ulGybXXSnL6"&gt;https://drive.google.com/open?id=1PaUuxMNy29QYtjzKbc2i0ulGybXXSnL6&lt;/A&gt; (also shown in image)&lt;/P&gt;

&lt;P&gt;As shown in the image, the results have varying time intervals. &lt;BR /&gt;
I want to get the results in the table to be in time intervals of &lt;STRONG&gt;3s&lt;/STRONG&gt;.&lt;/P&gt;

&lt;P&gt;How do I go about doing it?&lt;/P&gt;

&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 06 Dec 2018 23:50:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-make-my-table-results-in-3s-time-intervals/m-p/425862#M122064</guid>
      <dc:creator>moizmmz</dc:creator>
      <dc:date>2018-12-06T23:50:43Z</dc:date>
    </item>
    <item>
      <title>Re: How can I make my table results in 3s time intervals?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-make-my-table-results-in-3s-time-intervals/m-p/425863#M122065</link>
      <description>&lt;P&gt;try adding at the end&lt;/P&gt;

&lt;P&gt;| bin _time span=3s | stats values(channel), values(duaration)&lt;/P&gt;</description>
      <pubDate>Fri, 07 Dec 2018 00:42:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-make-my-table-results-in-3s-time-intervals/m-p/425863#M122065</guid>
      <dc:creator>nagarjuna280</dc:creator>
      <dc:date>2018-12-07T00:42:31Z</dc:date>
    </item>
    <item>
      <title>Re: How can I make my table results in 3s time intervals?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-make-my-table-results-in-3s-time-intervals/m-p/425864#M122066</link>
      <description>&lt;P&gt;Nope.&lt;BR /&gt;
The results are mv and without a timestamp.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Dec 2018 01:07:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-make-my-table-results-in-3s-time-intervals/m-p/425864#M122066</guid>
      <dc:creator>moizmmz</dc:creator>
      <dc:date>2018-12-07T01:07:25Z</dc:date>
    </item>
    <item>
      <title>Re: How can I make my table results in 3s time intervals?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-make-my-table-results-in-3s-time-intervals/m-p/425865#M122067</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;Can you try the below search,&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index="dcg-video-eng-live-services-stage" | spath "message.req.originalUrl" | search "message.req.originalUrl"!="/health-check"| spath severity | search severity!=warn|search message.extraLogInfo./api2/asset/get.assets{}.desc!=null() 
 |table _time message.extraLogInfo./api2/asset/get.assets{}.desc message.extraLogInfo./api2/asset/get.assets{}.duration
 | rename  message.extraLogInfo./api2/asset/get.assets{}.desc as Channel, message.extraLogInfo./api2/asset/get.assets{}.duration as Duration
 |sort -_time
 |  mvexpand Channel
| mvexpand Duration
|  bin span=3s _time
|  stats values(Channel) as Channel, values(Duration) as Duration by _time
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 07 Dec 2018 06:19:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-make-my-table-results-in-3s-time-intervals/m-p/425865#M122067</guid>
      <dc:creator>sdchakraborty</dc:creator>
      <dc:date>2018-12-07T06:19:19Z</dc:date>
    </item>
    <item>
      <title>Re: How can I make my table results in 3s time intervals?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-make-my-table-results-in-3s-time-intervals/m-p/425866#M122068</link>
      <description>&lt;P&gt;It is giving me the 3s interval. Thanks &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;But its also giving me other data I don't want. Sorta combining two mv values&lt;/P&gt;</description>
      <pubDate>Fri, 07 Dec 2018 17:22:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-make-my-table-results-in-3s-time-intervals/m-p/425866#M122068</guid>
      <dc:creator>moizmmz</dc:creator>
      <dc:date>2018-12-07T17:22:55Z</dc:date>
    </item>
    <item>
      <title>Re: How can I make my table results in 3s time intervals?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-make-my-table-results-in-3s-time-intervals/m-p/425867#M122069</link>
      <description>&lt;P&gt;Cool.please accept it as answer if it is resolved your issue.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Dec 2018 17:26:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-make-my-table-results-in-3s-time-intervals/m-p/425867#M122069</guid>
      <dc:creator>sdchakraborty</dc:creator>
      <dc:date>2018-12-07T17:26:29Z</dc:date>
    </item>
    <item>
      <title>Re: How can I make my table results in 3s time intervals?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-make-my-table-results-in-3s-time-intervals/m-p/425868#M122070</link>
      <description>&lt;P&gt;But on explicitly eliminating that data using '!=', I got what I wanted &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;Thank you!!&lt;/P&gt;</description>
      <pubDate>Fri, 07 Dec 2018 17:27:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-make-my-table-results-in-3s-time-intervals/m-p/425868#M122070</guid>
      <dc:creator>moizmmz</dc:creator>
      <dc:date>2018-12-07T17:27:19Z</dc:date>
    </item>
    <item>
      <title>Re: How can I make my table results in 3s time intervals?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-make-my-table-results-in-3s-time-intervals/m-p/425869#M122071</link>
      <description>&lt;P&gt;Hey..I'm seeing a problem, the time stamp is repeating in some cases&lt;/P&gt;</description>
      <pubDate>Fri, 07 Dec 2018 17:36:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-make-my-table-results-in-3s-time-intervals/m-p/425869#M122071</guid>
      <dc:creator>moizmmz</dc:creator>
      <dc:date>2018-12-07T17:36:02Z</dc:date>
    </item>
    <item>
      <title>Re: How can I make my table results in 3s time intervals?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-make-my-table-results-in-3s-time-intervals/m-p/425870#M122072</link>
      <description>&lt;P&gt;Never mind, used dedup &lt;span class="lia-unicode-emoji" title=":face_with_tongue:"&gt;😛&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Dec 2018 17:51:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-make-my-table-results-in-3s-time-intervals/m-p/425870#M122072</guid>
      <dc:creator>moizmmz</dc:creator>
      <dc:date>2018-12-07T17:51:35Z</dc:date>
    </item>
  </channel>
</rss>

