<?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 generate a search that will show the time between REQ and ACK? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-search-that-will-show-the-time-between-REQ-and/m-p/217243#M63815</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;Anyone, please help me. I need to find out the time between REQ and ACK by using the (TS:1478717835696) and Data Collection Node (DCN). But am trying to find out by using the transaction command but i haven't get the exact results.&lt;/P&gt;

&lt;P&gt;My code is like this and also i need to find out the outcome status.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;2016-11-09 12:57:18,855 VendorAdjudicationModule ERROR CorrelationID=2469bae9-fe14-4e67-b345-95d652f4a868 -[DCN xxxxxxxxxxxxxxx-SL:5-TS:1478717835696]: Group=000142003,Section=0001,PlanID=7154,State=TX1,ClaimType=0,VendorName=CVP,InvocationType=REQ

2016-11-09 12:57:18,855 VendorAdjudicationModule ERROR CorrelationID=2469bae9-fe14-4e67-b345-95d652f4a868 -[DCN xxxxxxxxxxxxxxx-SL:5-TS:1478717835796]: Group=000142003,Section=0001,PlanID=7154,State=TX1,ClaimType=0,VendorName=CVP,InvocationType=ACK,Outcome=SUCCESS

2016-11-09 12:57:18,855 VendorAdjudicationModule ERROR CorrelationID=2469bae9-fe14-4e67-b345-95d652f4a868 -[DCN xxxxxxxxxxxxxxx-SL:5-TS:1478717835800]: Group=000142003,Section=0001,PlanID=7154,State=TX1,ClaimType=0,VendorName=CVP,InvocationType=RSP,Segment =100
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Anyone, please help me.&lt;/P&gt;

&lt;P&gt;Thanks.&lt;/P&gt;</description>
    <pubDate>Fri, 11 Nov 2016 01:09:13 GMT</pubDate>
    <dc:creator>prashanthberam</dc:creator>
    <dc:date>2016-11-11T01:09:13Z</dc:date>
    <item>
      <title>How to generate a search that will show the time between REQ and ACK?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-search-that-will-show-the-time-between-REQ-and/m-p/217243#M63815</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;Anyone, please help me. I need to find out the time between REQ and ACK by using the (TS:1478717835696) and Data Collection Node (DCN). But am trying to find out by using the transaction command but i haven't get the exact results.&lt;/P&gt;

&lt;P&gt;My code is like this and also i need to find out the outcome status.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;2016-11-09 12:57:18,855 VendorAdjudicationModule ERROR CorrelationID=2469bae9-fe14-4e67-b345-95d652f4a868 -[DCN xxxxxxxxxxxxxxx-SL:5-TS:1478717835696]: Group=000142003,Section=0001,PlanID=7154,State=TX1,ClaimType=0,VendorName=CVP,InvocationType=REQ

2016-11-09 12:57:18,855 VendorAdjudicationModule ERROR CorrelationID=2469bae9-fe14-4e67-b345-95d652f4a868 -[DCN xxxxxxxxxxxxxxx-SL:5-TS:1478717835796]: Group=000142003,Section=0001,PlanID=7154,State=TX1,ClaimType=0,VendorName=CVP,InvocationType=ACK,Outcome=SUCCESS

2016-11-09 12:57:18,855 VendorAdjudicationModule ERROR CorrelationID=2469bae9-fe14-4e67-b345-95d652f4a868 -[DCN xxxxxxxxxxxxxxx-SL:5-TS:1478717835800]: Group=000142003,Section=0001,PlanID=7154,State=TX1,ClaimType=0,VendorName=CVP,InvocationType=RSP,Segment =100
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Anyone, please help me.&lt;/P&gt;

&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Nov 2016 01:09:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-search-that-will-show-the-time-between-REQ-and/m-p/217243#M63815</guid>
      <dc:creator>prashanthberam</dc:creator>
      <dc:date>2016-11-11T01:09:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to generate a search that will show the time between REQ and ACK?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-search-that-will-show-the-time-between-REQ-and/m-p/217244#M63816</link>
      <description>&lt;P&gt;If TS and DCN can uniquely identify one session (transaction) then can you try this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=yourIndex sourcetype=yourSourcetype "InvocationType=REQ" "InvocationType=ACK"
| rex field=_raw "\-\[(?&amp;lt;dcn&amp;gt;[^\-]+)\-(?&amp;lt;ts&amp;gt;[^\]]+)\]"
| transaction ts, dcn
| table dcn, ts, duration
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;This assumes all your timestamps are of same format. If they are of different format then probably it will require formatting first and then transaction command.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Nov 2016 06:31:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-search-that-will-show-the-time-between-REQ-and/m-p/217244#M63816</guid>
      <dc:creator>gokadroid</dc:creator>
      <dc:date>2016-11-11T06:31:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to generate a search that will show the time between REQ and ACK?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-search-that-will-show-the-time-between-REQ-and/m-p/217245#M63817</link>
      <description>&lt;P&gt;Thanks it works perfectly....&lt;/P&gt;</description>
      <pubDate>Fri, 11 Nov 2016 18:47:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-search-that-will-show-the-time-between-REQ-and/m-p/217245#M63817</guid>
      <dc:creator>prashanthberam</dc:creator>
      <dc:date>2016-11-11T18:47:27Z</dc:date>
    </item>
  </channel>
</rss>

