<?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 to write a search to display a Notable Event Timeline Review showing various phases of a ticket? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-write-a-search-to-display-a-Notable-Event-Timeline-Review/m-p/687331#M234435</link>
    <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/70807"&gt;@jstoner_splunk&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/143259"&gt;@fwijnholds_splu&lt;/a&gt;&amp;nbsp;I'm finding different results filtering in Incident Review, is that normal? Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 13 May 2024 13:35:34 GMT</pubDate>
    <dc:creator>splunkreal</dc:creator>
    <dc:date>2024-05-13T13:35:34Z</dc:date>
    <item>
      <title>How to write a search to display a Notable Event Timeline Review showing various phases of a ticket?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-write-a-search-to-display-a-Notable-Event-Timeline-Review/m-p/287841#M87126</link>
      <description>&lt;P&gt;Hello everyone&lt;/P&gt;
&lt;P&gt;Can anyone suggest me a search where I can get the notable Event time review between various phases of a ticket like Unassigned, in Progress, pending, resolved, and closed?&lt;/P&gt;
&lt;P&gt;It should be like a table with a row of all notable event titles, column as status, and filling the table will be timestamps for all the statuses entered.&lt;/P&gt;
&lt;P&gt;Any suggestions to get this kind of result?&lt;/P&gt;
&lt;P&gt;Regards&lt;BR /&gt;Gaurav Chauhan&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jun 2020 17:48:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-write-a-search-to-display-a-Notable-Event-Timeline-Review/m-p/287841#M87126</guid>
      <dc:creator>gschauhan81</dc:creator>
      <dc:date>2020-06-08T17:48:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to write a search to display a Notable Event Timeline Review showing various phases of a ticket?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-write-a-search-to-display-a-Notable-Event-Timeline-Review/m-p/287842#M87127</link>
      <description>&lt;P&gt;43 views and nobody answering, do i need to need to address to anyone specific&lt;/P&gt;</description>
      <pubDate>Mon, 01 Aug 2016 17:10:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-write-a-search-to-display-a-Notable-Event-Timeline-Review/m-p/287842#M87127</guid>
      <dc:creator>gschauhan81</dc:creator>
      <dc:date>2016-08-01T17:10:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to write a search to display a Notable Event Timeline Review showing various phases of a ticket?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-write-a-search-to-display-a-Notable-Event-Timeline-Review/m-p/287843#M87128</link>
      <description>&lt;P&gt;Do you have some sample events to work with? Furthermore, do you already have any field extractions on/from the events?&lt;/P&gt;</description>
      <pubDate>Mon, 01 Aug 2016 17:16:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-write-a-search-to-display-a-Notable-Event-Timeline-Review/m-p/287843#M87128</guid>
      <dc:creator>Raschko</dc:creator>
      <dc:date>2016-08-01T17:16:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to write a search to display a Notable Event Timeline Review showing various phases of a ticket?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-write-a-search-to-display-a-Notable-Event-Timeline-Review/m-p/287844#M87129</link>
      <description>&lt;P&gt;This may not be an exact fit but might get you on the way&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;|`incident_review`  | rename status_label as status |stats values(rule_name), values(status), values(_time) by rule_id |rename values(_time) AS time
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;This would group the rule_id which is the key piece of grouping a notable event, bringing along the name of the correlation search and then grouping the status and pulling in the time for each status being reached.&lt;/P&gt;

&lt;P&gt;This would only cover events that have changed status from unassigned because they are pulling from the audit index to get the changes in review state.&lt;BR /&gt;
index=_audit sourcetype="incident_review" &lt;/P&gt;

&lt;P&gt;To get all of the other notable events that are unassigned, you could do something like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;|`es_notable_events` |where status = 1 |table rule_name, status_group, _time |`hourDiff(_time)`
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;This would give you all notable events that are in unassigned status and output the rule name, the time the event occurred and if you wanted to look at how many hours it has been while it is still unassigned you could use the macro hourDiff.&lt;/P&gt;

&lt;P&gt;From there, you could do these as sub searches and use appendcols to pull it together.&lt;/P&gt;

&lt;P&gt;This probably doesn't fully answer your question in the exact format you want but hopefully it is a step in the right direction.&lt;/P&gt;

&lt;P&gt;BTW, incident_review and es_notable_events are macros. For some reason, it does not want to render correctly.&lt;/P&gt;

&lt;P&gt;Thanks&lt;BR /&gt;
john&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 10:28:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-write-a-search-to-display-a-Notable-Event-Timeline-Review/m-p/287844#M87129</guid>
      <dc:creator>jstoner_splunk</dc:creator>
      <dc:date>2020-09-29T10:28:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to write a search to display a Notable Event Timeline Review showing various phases of a ticket?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-write-a-search-to-display-a-Notable-Event-Timeline-Review/m-p/287845#M87130</link>
      <description>&lt;P&gt;This has it shows half of the answer. &lt;/P&gt;

&lt;P&gt;You should use the &lt;CODE&gt;notable&lt;/CODE&gt; macro&lt;BR /&gt;
&lt;CODE&gt;notable&lt;/CODE&gt; | timechart count by rule_name&lt;/P&gt;

&lt;P&gt;&lt;A href="https://dev.splunk.com/enterprise/docs/developapps/enterprisesecurity/notableeventsplunkes/usingnotableeventsinsearch"&gt;https://dev.splunk.com/enterprise/docs/developapps/enterprisesecurity/notableeventsplunkes/usingnotableeventsinsearch&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jun 2020 20:49:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-write-a-search-to-display-a-Notable-Event-Timeline-Review/m-p/287845#M87130</guid>
      <dc:creator>fwijnholds_splu</dc:creator>
      <dc:date>2020-06-03T20:49:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to write a search to display a Notable Event Timeline Review showing various phases of a ticket?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-write-a-search-to-display-a-Notable-Event-Timeline-Review/m-p/687331#M234435</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/70807"&gt;@jstoner_splunk&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/143259"&gt;@fwijnholds_splu&lt;/a&gt;&amp;nbsp;I'm finding different results filtering in Incident Review, is that normal? Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 May 2024 13:35:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-write-a-search-to-display-a-Notable-Event-Timeline-Review/m-p/687331#M234435</guid>
      <dc:creator>splunkreal</dc:creator>
      <dc:date>2024-05-13T13:35:34Z</dc:date>
    </item>
  </channel>
</rss>

