<?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: Establishing the latency of Indexing within Splunk cloud in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/How-to-establish-the-latency-of-Indexing-within-Splunk-cloud/m-p/657891#M111325</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/259159"&gt;@ChaoticMike&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;if you can, please vote for this idea at&amp;nbsp;&lt;A href="https://ideas.splunk.com/ideas/EID-I-1731" target="_blank"&gt;https://ideas.splunk.com/ideas/EID-I-1731&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
    <pubDate>Mon, 18 Sep 2023 13:17:51 GMT</pubDate>
    <dc:creator>gcusello</dc:creator>
    <dc:date>2023-09-18T13:17:51Z</dc:date>
    <item>
      <title>How to establish the latency of Indexing within Splunk cloud?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-establish-the-latency-of-Indexing-within-Splunk-cloud/m-p/657870#M111319</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;For solid reasons that I can't go into here, we have a topology of...&lt;BR /&gt;AWS CloudWatch-&amp;gt; Kinesis Firehose -&amp;gt; AWS Delivery Stream Object -&amp;gt;AWS Lambda -&amp;gt;HEC listener on a Heavy Forwarder -&amp;gt;&amp;nbsp; That Heavy Forwarder -&amp;gt; Another Heavy Forwarder -&amp;gt; Splunk Cloud.&amp;nbsp; I'm pretty sure that (apart from having 1 HF forward to a second before hitting Splunk Cloud), that is the reference architecture for CloudWatch events.&lt;/P&gt;
&lt;P&gt;There is no Splunk indexing going on in our infrastructure.&amp;nbsp; We are just forwarding loads of information to Splunk Cloud for indexing and analysis there.&lt;/P&gt;
&lt;P&gt;We can establish latency through most of that chain, but we are interesting in determining the latency from when our events land in Splunk Cloud, to those events being visible for analysis.&amp;nbsp; Is there a handy metric or query we can re-use?&lt;/P&gt;
&lt;P&gt;Thanks in advance...&lt;/P&gt;</description>
      <pubDate>Mon, 18 Sep 2023 22:20:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-establish-the-latency-of-Indexing-within-Splunk-cloud/m-p/657870#M111319</guid>
      <dc:creator>ChaoticMike</dc:creator>
      <dc:date>2023-09-18T22:20:14Z</dc:date>
    </item>
    <item>
      <title>Re: Establishing the latency of Indexing within Splunk cloud</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-establish-the-latency-of-Indexing-within-Splunk-cloud/m-p/657871#M111320</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/259159"&gt;@ChaoticMike&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;in Splunk you have:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;_time that's the event timestamp,&lt;/LI&gt;&lt;LI&gt;_indextime that's the time whe the event is indexed.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;so you could calculate a difference between these two fields:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=*
| eval diff=_indextime-_time 
| stats 
   avg(diff) AS diff_avg 
   max(diff) AS diff_max 
   min(diff) AS diff_min 
   BY index&lt;/LI-CODE&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Mon, 18 Sep 2023 10:56:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-establish-the-latency-of-Indexing-within-Splunk-cloud/m-p/657871#M111320</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2023-09-18T10:56:21Z</dc:date>
    </item>
    <item>
      <title>Re: Establishing the latency of Indexing within Splunk cloud</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-establish-the-latency-of-Indexing-within-Splunk-cloud/m-p/657886#M111322</link>
      <description>&lt;P&gt;Thanks Giuseppe.&amp;nbsp; Our problem is we aren't sure if our latency is in the forwarding chain, or within Splunk Cloud.&amp;nbsp; We can indeed determine the end-to-end latency, but we are trying to drill into each hop.&amp;nbsp; Does anyone know of a way to do that?&amp;nbsp; It sounds... 'tricky'!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Sep 2023 12:34:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-establish-the-latency-of-Indexing-within-Splunk-cloud/m-p/657886#M111322</guid>
      <dc:creator>ChaoticMike</dc:creator>
      <dc:date>2023-09-18T12:34:02Z</dc:date>
    </item>
    <item>
      <title>Re: Establishing the latency of Indexing within Splunk cloud</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-establish-the-latency-of-Indexing-within-Splunk-cloud/m-p/657887#M111323</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/259159"&gt;@ChaoticMike&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;there isn't a track of steps (I asked this on Splunk Ideas), so you can calculate only the global latency.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Mon, 18 Sep 2023 12:36:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-establish-the-latency-of-Indexing-within-Splunk-cloud/m-p/657887#M111323</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2023-09-18T12:36:14Z</dc:date>
    </item>
    <item>
      <title>Re: Establishing the latency of Indexing within Splunk cloud</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-establish-the-latency-of-Indexing-within-Splunk-cloud/m-p/657890#M111324</link>
      <description>&lt;P&gt;Booo!&amp;nbsp; &amp;nbsp;But thank you for the answer, it wil lsave me looking for a thing that doesn't exist!&lt;/P&gt;</description>
      <pubDate>Mon, 18 Sep 2023 13:12:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-establish-the-latency-of-Indexing-within-Splunk-cloud/m-p/657890#M111324</guid>
      <dc:creator>ChaoticMike</dc:creator>
      <dc:date>2023-09-18T13:12:36Z</dc:date>
    </item>
    <item>
      <title>Re: Establishing the latency of Indexing within Splunk cloud</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-establish-the-latency-of-Indexing-within-Splunk-cloud/m-p/657891#M111325</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/259159"&gt;@ChaoticMike&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;if you can, please vote for this idea at&amp;nbsp;&lt;A href="https://ideas.splunk.com/ideas/EID-I-1731" target="_blank"&gt;https://ideas.splunk.com/ideas/EID-I-1731&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Mon, 18 Sep 2023 13:17:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-establish-the-latency-of-Indexing-within-Splunk-cloud/m-p/657891#M111325</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2023-09-18T13:17:51Z</dc:date>
    </item>
  </channel>
</rss>

