<?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 How to create a table that displays Request IDs and Time as columns? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-table-that-displays-Request-IDs-and-Time-as/m-p/249726#M74537</link>
    <description>&lt;PRE&gt;&lt;CODE&gt;MESSAGE [Slow script time: Time=9.11s - Request ID=bed_get_organization_list_b]
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;From the one of the log message above.&lt;/P&gt;

&lt;P&gt;I am trying to extract and bring up a table for displaying top 10 Request ID's which has Time greater than 10minutes&lt;/P&gt;

&lt;P&gt;my search:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=sample Slow script time: Time&amp;gt;=600s AND Request ID="*" | top limit=10 ID.
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I am not getting exact results of the Request Id which are &amp;gt;600s.&lt;BR /&gt;
I wanted to display Request ID and Time value as columns in a table. currently I am able to bring up only Request ID and count. &lt;/P&gt;

&lt;P&gt;Requesting any guidance or assistance. &lt;BR /&gt;
Thank you!&lt;/P&gt;</description>
    <pubDate>Mon, 10 Oct 2016 17:15:37 GMT</pubDate>
    <dc:creator>girishgene07</dc:creator>
    <dc:date>2016-10-10T17:15:37Z</dc:date>
    <item>
      <title>How to create a table that displays Request IDs and Time as columns?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-table-that-displays-Request-IDs-and-Time-as/m-p/249726#M74537</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;MESSAGE [Slow script time: Time=9.11s - Request ID=bed_get_organization_list_b]
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;From the one of the log message above.&lt;/P&gt;

&lt;P&gt;I am trying to extract and bring up a table for displaying top 10 Request ID's which has Time greater than 10minutes&lt;/P&gt;

&lt;P&gt;my search:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=sample Slow script time: Time&amp;gt;=600s AND Request ID="*" | top limit=10 ID.
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I am not getting exact results of the Request Id which are &amp;gt;600s.&lt;BR /&gt;
I wanted to display Request ID and Time value as columns in a table. currently I am able to bring up only Request ID and count. &lt;/P&gt;

&lt;P&gt;Requesting any guidance or assistance. &lt;BR /&gt;
Thank you!&lt;/P&gt;</description>
      <pubDate>Mon, 10 Oct 2016 17:15:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-table-that-displays-Request-IDs-and-Time-as/m-p/249726#M74537</guid>
      <dc:creator>girishgene07</dc:creator>
      <dc:date>2016-10-10T17:15:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a table that displays Request IDs and Time as columns?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-table-that-displays-Request-IDs-and-Time-as/m-p/249727#M74538</link>
      <description>&lt;P&gt;Try this&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=sample "Slow script time" | convert num(Time) as dur | sort 10 - dur | table _time "Request ID" Time
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 10 Oct 2016 17:22:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-table-that-displays-Request-IDs-and-Time-as/m-p/249727#M74538</guid>
      <dc:creator>sundareshr</dc:creator>
      <dc:date>2016-10-10T17:22:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a table that displays Request IDs and Time as columns?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-table-that-displays-Request-IDs-and-Time-as/m-p/249728#M74539</link>
      <description>&lt;P&gt;Try like this&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; index=sample Slow script time: Request ID="*" | convert num(Time) | where Time&amp;gt;600 | top limit=10 ID
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 10 Oct 2016 19:09:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-table-that-displays-Request-IDs-and-Time-as/m-p/249728#M74539</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2016-10-10T19:09:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a table that displays Request IDs and Time as columns?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-table-that-displays-Request-IDs-and-Time-as/m-p/249729#M74540</link>
      <description>&lt;P&gt;!ENTRY com.cerner.system.enterprise.client.ScriptCall 2 0 2016-10-11 13:38:25.374&lt;BR /&gt;
!MESSAGE [Slow script time: Time=82.65s - Request ID=bed_get_org_dup_ind]&lt;/P&gt;

&lt;P&gt;Thank you for the response Sundaresh, I am now able to see the Time but the query is not listing the Request ID name. (ex- bed_get_org_dup_ind) &lt;/P&gt;

&lt;P&gt;_time                                        Request ID                    Time&lt;BR /&gt;
2016-10-11 13:38:25.374                                                82.65s&lt;BR /&gt;
2016-10-11 10:13:14.064                                                68.62s&lt;BR /&gt;
2016-10-11 16:33:46.937                                                63.74s&lt;BR /&gt;
2016-10-07 10:06:25.161                                                61.4s&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 11:24:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-table-that-displays-Request-IDs-and-Time-as/m-p/249729#M74540</guid>
      <dc:creator>girishgene07</dc:creator>
      <dc:date>2020-09-29T11:24:41Z</dc:date>
    </item>
  </channel>
</rss>

