<?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 Propagate value between table rows using streamstats in Splunk Enterprise</title>
    <link>https://community.splunk.com/t5/Splunk-Enterprise/Propagate-value-between-table-rows-using-streamstats/m-p/599944#M12737</link>
    <description>&lt;P&gt;I have a table like this:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="sc1.png" style="width: 999px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/19875iEFFBA7E859F97900/image-size/large?v=v2&amp;amp;px=999" role="button" title="sc1.png" alt="sc1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to propagate "start" value and "end" value if "_time&amp;gt;=start AND _time&amp;lt;end".&lt;/P&gt;&lt;P&gt;It's like a "transaction" with "startwith and endwith", but I need to use "streamstats", because I can't lost event details.&lt;/P&gt;&lt;P&gt;So I would like to obtain:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="sc2.png" style="width: 999px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/19876i9230819492808DCD/image-size/large?v=v2&amp;amp;px=999" role="button" title="sc2.png" alt="sc2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Tue, 31 May 2022 16:03:59 GMT</pubDate>
    <dc:creator>segantinro</dc:creator>
    <dc:date>2022-05-31T16:03:59Z</dc:date>
    <item>
      <title>Propagate value between table rows using streamstats</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/Propagate-value-between-table-rows-using-streamstats/m-p/599944#M12737</link>
      <description>&lt;P&gt;I have a table like this:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="sc1.png" style="width: 999px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/19875iEFFBA7E859F97900/image-size/large?v=v2&amp;amp;px=999" role="button" title="sc1.png" alt="sc1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to propagate "start" value and "end" value if "_time&amp;gt;=start AND _time&amp;lt;end".&lt;/P&gt;&lt;P&gt;It's like a "transaction" with "startwith and endwith", but I need to use "streamstats", because I can't lost event details.&lt;/P&gt;&lt;P&gt;So I would like to obtain:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="sc2.png" style="width: 999px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/19876i9230819492808DCD/image-size/large?v=v2&amp;amp;px=999" role="button" title="sc2.png" alt="sc2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 31 May 2022 16:03:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/Propagate-value-between-table-rows-using-streamstats/m-p/599944#M12737</guid>
      <dc:creator>segantinro</dc:creator>
      <dc:date>2022-05-31T16:03:59Z</dc:date>
    </item>
    <item>
      <title>Re: Propagate value between table rows using streamstats</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/Propagate-value-between-table-rows-using-streamstats/m-p/599948#M12738</link>
      <description>&lt;P&gt;Given the limited example of what you are trying to do, can you do something with eventstats&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| eventstats values(start) as start values(end) as end
| eval start=if(_time&amp;gt;=start AND _time &amp;lt;= end, start, null())
| eval end=if(_time&amp;gt;=start AND _time &amp;lt;= end, end, null())&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 31 May 2022 16:27:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/Propagate-value-between-table-rows-using-streamstats/m-p/599948#M12738</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-05-31T16:27:12Z</dc:date>
    </item>
  </channel>
</rss>

