<?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: Need help with the correct regex in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Need-help-with-the-correct-regex/m-p/704375#M238685</link>
    <description>&lt;P&gt;You are looking at the wrong tool in the box. &amp;nbsp;Do not use rex to extract fields from structure data like JSON which your event contains. &amp;nbsp;Instead, extract the JSON object then use tools like spath to extract data fields.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| rex "^[^{]+(?&amp;lt;message_body&amp;gt;.+})"
| spath input=message_body
| table *.alias *.responders{}.name&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your sample data will give&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="117.296875px" height="25px"&gt;alert.alias&lt;/TD&gt;&lt;TD width="117.296875px" height="25px"&gt;entity.alias&lt;/TD&gt;&lt;TD width="137.265625px" height="25px"&gt;params.alert.alias&lt;/TD&gt;&lt;TD width="144.46875px" height="25px"&gt;params.entity.alias&lt;/TD&gt;&lt;TD width="185.34375px" height="25px"&gt;alert.responders{}.name&lt;/TD&gt;&lt;TD width="144.140625px" height="25px"&gt;entity.responders{}.name&lt;/TD&gt;&lt;TD width="144.140625px" height="25px"&gt;params.alert.responders{}.name&lt;/TD&gt;&lt;TD width="144.140625px" height="25px"&gt;params.entity.responders{}.name&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="117.296875px" height="113px"&gt;FL-NS-VPX-INT-1|mobileapist?vnetapis003?8777,&lt;/TD&gt;&lt;TD width="117.296875px" height="113px"&gt;FL-NS-VPX-INT-1|mobileapist?vnetapis003?8777,&lt;/TD&gt;&lt;TD width="137.265625px" height="113px"&gt;FL-NS-VPX-INT-1|mobileapist?vnetapis003?8777,&lt;/TD&gt;&lt;TD width="144.46875px" height="113px"&gt;FL-NS-VPX-INT-1|mobileapist?vnetapis003?8777,&lt;/TD&gt;&lt;TD width="185.34375px" height="113px"&gt;Monitoring_Admin&lt;/TD&gt;&lt;TD width="144.140625px" height="113px"&gt;Monitoring_Admin&lt;/TD&gt;&lt;TD width="144.140625px" height="113px"&gt;Monitoring_Admin&lt;/TD&gt;&lt;TD width="144.140625px" height="113px"&gt;Monitoring_Admin&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;Additional pointers:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;The sample JSON contains 4 different leaf nodes all named &lt;U&gt;alias&lt;/U&gt;. &amp;nbsp;There is no inherent logic to say they are all the same.&lt;/LI&gt;&lt;LI&gt;The sample JSON contains 4 different arrays that all contain leaf nodes that are all named &lt;U&gt;name&lt;/U&gt;. &amp;nbsp;There is no inherent logic to say they are all the same.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;What this means is that you need to ask your developer which node you need data from.&lt;/P&gt;&lt;P&gt;Lastly, this JSON has a deep structure. &amp;nbsp;If you are only interested in select few nodes, you can also use a JSON function if your server is 8.2 or later. &amp;nbsp;For example,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| rex "^[^{]+(?&amp;lt;message_body&amp;gt;.+})"
| eval alias = json_extract(message_body, "alert.alias"),
  name = json_extract(message_body, "alert.responders{}.name")
| table alias name&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The output will be&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;alias&lt;/TD&gt;&lt;TD&gt;name&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;FL-NS-VPX-INT-1|mobileapist?vnetapis003?8777,&lt;/TD&gt;&lt;TD&gt;Monitoring_Admin&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;Here is an emulation of your sample data. &amp;nbsp;Play with it and compare with real data&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| makeresults
| eval _raw = "[36mINFO[0m[2024-11-13T13:37:23.9114215-05:00] Message body: {\"actionType\":\"custom\",\"customerId\":\"3a1f4387-b87b-4a3a-a568-cc372a86d8e4\",\"ownerDomain\":\"integration\",\"ownerId\":\"8b500163-8476-4b0e-9ef7-2cfdaa272adf\",\"discardScriptResponse\":true,\"sendCallbackToStreamHub\":false,\"requestId\":\"18dcdb1b-14d6-4b10-ad62-3f73acaaef2a\",\"action\":\"Close\",\"productSource\":\"Opsgenie\",\"customerDomain\":\"siteone\",\"integrationName\":\"Opsgenie Edge Connector\",\"integrationId\":\"8b500163-8476-4b0e-9ef7-2cfdaa272adf\",\"customerTransitioningOrConsolidated\":false,\"source\":{\"name\":\"\",\"type\":\"system\"},\"type\":\"oec\",\"receivedAt\":1731523037863,\"ownerId\":\"8b500163-8476-4b0e-9ef7-2cfdaa272adf\",\"params\":{\"type\":\"oec\",\"alertId\":\"913a3db5-7e2a-44f4-a4ff-3002af480c8d-1731522737697\",\"customerId\":\"3a1f4387-b87b-4a3a-a568-cc372a86d8e4\",\"action\":\"Close\",\"integrationId\":\"8b500163-8476-4b0e-9ef7-2cfdaa272adf\",\"integrationName\":\"Opsgenie Edge Connector\",\"integrationType\":\"OEC\",\"customerDomain\":\"siteone\",\"alertDetails\":{\"Raw\":\"\",\"Results Link\":\"https://hostname:8000/app/search/search?q=%7Cloadjob%20scheduler__td26605__search__RMD5e461b39d4ff19795_at_1731522600_38116%20%7C%20head%204%20%7C%20tail%201&amp;amp;earliest=0&amp;amp;latest=now\",\"SuppressClosed\":\"True\",\"TeamsDescription\":\"True\"},\"alertAlias\":\"FL-NS-VPX-INT-1|mobileapist?vnetapis003?8777,\",\"receivedAt\":1731523037863,\"customerConsolidated\":false,\"customerTransitioningOrConsolidated\":false,\"productSource\":\"Opsgenie\",\"source\":{\"name\":\"\",\"type\":\"system\"},\"alert\":{\"alertId\":\"913a3db5-7e2a-44f4-a4ff-3002af480c8d-1731522737697\",\"id\":\"913a3db5-7e2a-44f4-a4ff-3002af480c8d-1731522737697\",\"type\":\"alert\",\"message\":\"[Splunk] Load Balancer Member Status\",\"tags\":[],\"tinyId\":\"14585\",\"entity\":\"\",\"alias\":\"FL-NS-VPX-INT-1|mobileapist?vnetapis003?8777,\",\"createdAt\":1731522737697,\"updatedAt\":1731523038582000000,\"username\":\"System\",\"responders\":[{\"id\":\"f8c9079d-c7bb-4e58-ac83-359cb217a3b5\",\"type\":\"team\",\"name\":\"Monitoring_Admin\"}],\"teams\":[\"f8c9079d-c7bb-4e58-ac83-359cb217a3b5\"],\"actions\":[],\"priority\":\"P3\",\"oldPriority\":\"P3\",\"source\":\"Splunk\"},\"entity\":{\"alertId\":\"913a3db5-7e2a-44f4-a4ff-3002af480c8d-1731522737697\",\"id\":\"913a3db5-7e2a-44f4-a4ff-3002af480c8d-1731522737697\",\"type\":\"alert\",\"message\":\"[Splunk] Load Balancer Member Status\",\"tags\":[],\"tinyId\":\"14585\",\"entity\":\"\",\"alias\":\"FL-NS-VPX-INT-1|mobileapist?vnetapis003?8777,\",\"createdAt\":1731522737697,\"updatedAt\":1731523038582000000,\"username\":\"System\",\"responders\":[{\"id\":\"f8c9079d-c7bb-4e58-ac83-359cb217a3b5\",\"type\":\"team\",\"name\":\"Monitoring_Admin\"}],\"teams\":[\"f8c9079d-c7bb-4e58-ac83-359cb217a3b5\"],\"actions\":[],\"priority\":\"P3\",\"oldPriority\":\"P3\",\"source\":\"Splunk\"},\"mappedActionDto\":{\"mappedAction\":\"postActionToOEC\",\"extraField\":\"\"},\"ownerId\":\"8b500163-8476-4b0e-9ef7-2cfdaa272adf\"},\"integrationType\":\"OEC\",\"alert\":{\"alertId\":\"913a3db5-7e2a-44f4-a4ff-3002af480c8d-1731522737697\",\"id\":\"913a3db5-7e2a-44f4-a4ff-3002af480c8d-1731522737697\",\"type\":\"alert\",\"message\":\"[Splunk] Load Balancer Member Status\",\"tags\":[],\"tinyId\":\"14585\",\"entity\":\"\",\"alias\":\"FL-NS-VPX-INT-1|mobileapist?vnetapis003?8777,\",\"createdAt\":1731522737697,\"updatedAt\":1731523038582000000,\"username\":\"System\",\"responders\":[{\"id\":\"f8c9079d-c7bb-4e58-ac83-359cb217a3b5\",\"type\":\"team\",\"name\":\"Monitoring_Admin\"}],\"teams\":[\"f8c9079d-c7bb-4e58-ac83-359cb217a3b5\"],\"actions\":[],\"priority\":\"P3\",\"oldPriority\":\"P3\",\"source\":\"Splunk\"},\"customerConsolidated\":false,\"customerId\":\"3a1f4387-b87b-4a3a-a568-cc372a86d8e4\",\"action\":\"Close\",\"mappedActionDto\":{\"mappedAction\":\"postActionToOEC\",\"extraField\":\"\"},\"alertId\":\"913a3db5-7e2a-44f4-a4ff-3002af480c8d-1731522737697\",\"alertAlias\":\"FL-NS-VPX-INT-1|mobileapist?vnetapis003?8777,\",\"alertDetails\":{\"Raw\":\"\",\"Results Link\":\"https://hostname:8000/app/search/search?q=%7Cloadjob%20scheduler__td26605__search__RMD5e461b39d4ff19795_at_1731522600_38116%20%7C%20head%204%20%7C%20tail%201&amp;amp;earliest=0&amp;amp;latest=now\",\"SuppressClosed\":\"True\",\"TeamsDescription\":\"True\"},\"entity\":{\"alertId\":\"913a3db5-7e2a-44f4-a4ff-3002af480c8d-1731522737697\",\"id\":\"913a3db5-7e2a-44f4-a4ff-3002af480c8d-1731522737697\",\"type\":\"alert\",\"message\":\"[Splunk] Load Balancer Member Status\",\"tags\":[],\"tinyId\":\"14585\",\"entity\":\"\",\"alias\":\"FL-NS-VPX-INT-1|mobileapist?vnetapis003?8777,\",\"createdAt\":1731522737697,\"updatedAt\":1731523038582000000,\"username\":\"System\",\"responders\":[{\"id\":\"f8c9079d-c7bb-4e58-ac83-359cb217a3b5\",\"type\":\"team\",\"name\":\"Monitoring_Admin\"}],\"teams\":[\"f8c9079d-c7bb-4e58-ac83-359cb217a3b5\"],\"actions\":[],\"priority\":\"P3\",\"oldPriority\":\"P3\",\"source\":\"Splunk\"}} [36mmessageId[0m=7546739e-2bab-414d-94b5-b0f205208932"
``` data emulation above ```&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 14 Nov 2024 04:59:09 GMT</pubDate>
    <dc:creator>yuanliu</dc:creator>
    <dc:date>2024-11-14T04:59:09Z</dc:date>
    <item>
      <title>Need help with the correct regex</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Need-help-with-the-correct-regex/m-p/704343#M238677</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I'm trying to extract fields from an event, but am not up to par on my regex, and I can't seem to get this to work.&amp;nbsp; So these work in regex101, but not within the Splunk Field Extraction for some reason.&amp;nbsp; Within the event there is the following:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;"alias":"FL-NS-VPX-INT-1|mobileapist?vnetapis003?8777,"&lt;/LI-CODE&gt;
&lt;P&gt;&lt;SPAN&gt;I need to create 3 fields from this:&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Host = FL-NS-VPX-INT-1

ServiceGroup = mobileapist

Server = vnetapis003

&lt;/LI-CODE&gt;
&lt;P&gt;&lt;SPAN&gt;When trying for Host with:&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt; (?&amp;lt;="alias":")[^|]*&lt;/LI-CODE&gt;
&lt;P&gt;&lt;SPAN&gt;It never finds it in Splunk.&amp;nbsp; Can't figure out why.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Extra credit: &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp; Just kidding.&amp;nbsp; The last field I need, I can't get either with:&amp;nbsp; &amp;nbsp;(?&amp;lt;="team","name":")[^"]*&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;"&lt;SPAN class=""&gt;team&lt;/SPAN&gt;","&lt;SPAN class=""&gt;name&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;Monitoring_Admin&lt;/SPAN&gt;"}],&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Here's the full event as well.&lt;/SPAN&gt;&lt;/P&gt;
&lt;DIV class=""&gt;
&lt;DIV class=""&gt;&amp;#27;[&lt;SPAN class=""&gt;36mINFO&lt;/SPAN&gt;&amp;#27;[&lt;SPAN class=""&gt;0m&lt;/SPAN&gt;[&lt;SPAN class=""&gt;2024-11-13T13:37:23.9114215-05:00&lt;/SPAN&gt;] &lt;SPAN class=""&gt;Message&lt;/SPAN&gt; &lt;SPAN class=""&gt;body:&lt;/SPAN&gt; {"&lt;SPAN class=""&gt;actionType&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;custom&lt;/SPAN&gt;","&lt;SPAN class=""&gt;customerId&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;3a1f4387-b87b-4a3a-a568-cc372a86d8e4&lt;/SPAN&gt;","&lt;SPAN class=""&gt;ownerDomain&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;integration&lt;/SPAN&gt;","&lt;SPAN class=""&gt;ownerId&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;8b500163-8476-4b0e-9ef7-2cfdaa272adf&lt;/SPAN&gt;","&lt;SPAN class=""&gt;discardScriptResponse&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:true&lt;/SPAN&gt;,"&lt;SPAN class=""&gt;sendCallbackToStreamHub&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:false&lt;/SPAN&gt;,"&lt;SPAN class=""&gt;requestId&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;18dcdb1b-14d6-4b10-ad62-3f73acaaef2a&lt;/SPAN&gt;","&lt;SPAN class=""&gt;action&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;Close&lt;/SPAN&gt;","&lt;SPAN class=""&gt;productSource&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;Opsgenie&lt;/SPAN&gt;","&lt;SPAN class=""&gt;customerDomain&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;siteone&lt;/SPAN&gt;","&lt;SPAN class=""&gt;integrationName&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;Opsgenie&lt;/SPAN&gt; &lt;SPAN class=""&gt;Edge&lt;/SPAN&gt; &lt;SPAN class=""&gt;Connector&lt;/SPAN&gt;","&lt;SPAN class=""&gt;integrationId&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;8b500163-8476-4b0e-9ef7-2cfdaa272adf&lt;/SPAN&gt;","&lt;SPAN class=""&gt;customerTransitioningOrConsolidated&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:false&lt;/SPAN&gt;,"&lt;SPAN class=""&gt;source&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;{"&lt;SPAN class=""&gt;name&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"","&lt;SPAN class=""&gt;type&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;system&lt;/SPAN&gt;"},"&lt;SPAN class=""&gt;type&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;oec&lt;/SPAN&gt;","&lt;SPAN class=""&gt;receivedAt&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:1731523037863&lt;/SPAN&gt;,"&lt;SPAN class=""&gt;ownerId&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;8b500163-8476-4b0e-9ef7-2cfdaa272adf&lt;/SPAN&gt;","&lt;SPAN class=""&gt;params&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;{"&lt;SPAN class=""&gt;type&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;oec&lt;/SPAN&gt;","&lt;SPAN class=""&gt;alertId&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;913a3db5-7e2a-44f4-a4ff-3002af480c8d-1731522737697&lt;/SPAN&gt;","&lt;SPAN class=""&gt;customerId&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;3a1f4387-b87b-4a3a-a568-cc372a86d8e4&lt;/SPAN&gt;","&lt;SPAN class=""&gt;action&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;Close&lt;/SPAN&gt;","&lt;SPAN class=""&gt;integrationId&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;8b500163-8476-4b0e-9ef7-2cfdaa272adf&lt;/SPAN&gt;","&lt;SPAN class=""&gt;integrationName&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;Opsgenie&lt;/SPAN&gt; &lt;SPAN class=""&gt;Edge&lt;/SPAN&gt; &lt;SPAN class=""&gt;Connector&lt;/SPAN&gt;","&lt;SPAN class=""&gt;integrationType&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;OEC&lt;/SPAN&gt;","&lt;SPAN class=""&gt;customerDomain&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;siteone&lt;/SPAN&gt;","&lt;SPAN class=""&gt;alertDetails&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;{"&lt;SPAN class=""&gt;Raw&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"","&lt;SPAN class=""&gt;Results&lt;/SPAN&gt; &lt;SPAN class=""&gt;Link&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;&lt;A href="https://splunk.siteone.com:8000/app/search/search" target="_blank" rel="noopener"&gt;https://hostname:8000/app/search/search&lt;/A&gt;&lt;/SPAN&gt;?&lt;SPAN class=""&gt;q=&lt;/SPAN&gt;%7C&lt;SPAN class=""&gt;loadjob&lt;/SPAN&gt;%20&lt;SPAN class=""&gt;scheduler__td26605__search__RMD5e461b39d4ff19795_at_1731522600_38116&lt;/SPAN&gt;%20%7C%20&lt;SPAN class=""&gt;head&lt;/SPAN&gt;%20&lt;SPAN class=""&gt;4&lt;/SPAN&gt;%20%7C%20&lt;SPAN class=""&gt;tail&lt;/SPAN&gt;%20&lt;SPAN class=""&gt;1&lt;/SPAN&gt;&amp;amp;&lt;SPAN class=""&gt;earliest=0&lt;/SPAN&gt;&amp;amp;&lt;SPAN class=""&gt;latest=now&lt;/SPAN&gt;","&lt;SPAN class=""&gt;SuppressClosed&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;True&lt;/SPAN&gt;","&lt;SPAN class=""&gt;TeamsDescription&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;True&lt;/SPAN&gt;"},"&lt;SPAN class=""&gt;alertAlias&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;FL-NS-VPX-INT-1&lt;/SPAN&gt;|&lt;SPAN class=""&gt;mobileapist&lt;/SPAN&gt;?&lt;SPAN class=""&gt;vnetapis003&lt;/SPAN&gt;?&lt;SPAN class=""&gt;8777&lt;/SPAN&gt;,","&lt;SPAN class=""&gt;receivedAt&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:1731523037863&lt;/SPAN&gt;,"&lt;SPAN class=""&gt;customerConsolidated&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:false&lt;/SPAN&gt;,"&lt;SPAN class=""&gt;customerTransitioningOrConsolidated&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:false&lt;/SPAN&gt;,"&lt;SPAN class=""&gt;productSource&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;Opsgenie&lt;/SPAN&gt;","&lt;SPAN class=""&gt;source&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;{"&lt;SPAN class=""&gt;name&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"","&lt;SPAN class=""&gt;type&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;system&lt;/SPAN&gt;"},"&lt;SPAN class=""&gt;alert&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;{"&lt;SPAN class=""&gt;alertId&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;913a3db5-7e2a-44f4-a4ff-3002af480c8d-1731522737697&lt;/SPAN&gt;","&lt;SPAN class=""&gt;id&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;913a3db5-7e2a-44f4-a4ff-3002af480c8d-1731522737697&lt;/SPAN&gt;","&lt;SPAN class=""&gt;type&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;alert&lt;/SPAN&gt;","&lt;SPAN class=""&gt;message&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"[&lt;SPAN class=""&gt;Splunk&lt;/SPAN&gt;] &lt;SPAN class=""&gt;Load&lt;/SPAN&gt; &lt;SPAN class=""&gt;Balancer&lt;/SPAN&gt; &lt;SPAN class=""&gt;Member&lt;/SPAN&gt; &lt;SPAN class=""&gt;Status&lt;/SPAN&gt;","&lt;SPAN class=""&gt;tags&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;[],"&lt;SPAN class=""&gt;tinyId&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;14585&lt;/SPAN&gt;","&lt;SPAN class=""&gt;entity&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"","&lt;SPAN class=""&gt;alias&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;FL-NS-VPX-INT-1&lt;/SPAN&gt;|&lt;SPAN class=""&gt;mobileapist&lt;/SPAN&gt;?&lt;SPAN class=""&gt;vnetapis003&lt;/SPAN&gt;?&lt;SPAN class=""&gt;8777&lt;/SPAN&gt;,","&lt;SPAN class=""&gt;createdAt&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:1731522737697&lt;/SPAN&gt;,"&lt;SPAN class=""&gt;updatedAt&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:1731523038582000000&lt;/SPAN&gt;,"&lt;SPAN class=""&gt;username&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;System&lt;/SPAN&gt;","&lt;SPAN class=""&gt;responders&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;[{"&lt;SPAN class=""&gt;id&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;f8c9079d-c7bb-4e58-ac83-359cb217a3b5&lt;/SPAN&gt;","&lt;SPAN class=""&gt;type&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;team&lt;/SPAN&gt;","&lt;SPAN class=""&gt;name&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;Monitoring_Admin&lt;/SPAN&gt;"}],"&lt;SPAN class=""&gt;teams&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;["&lt;SPAN class=""&gt;f8c9079d-c7bb-4e58-ac83-359cb217a3b5&lt;/SPAN&gt;"],"&lt;SPAN class=""&gt;actions&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;[],"&lt;SPAN class=""&gt;priority&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;P3&lt;/SPAN&gt;","&lt;SPAN class=""&gt;oldPriority&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;P3&lt;/SPAN&gt;","&lt;SPAN class=""&gt;source&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;Splunk&lt;/SPAN&gt;"},"&lt;SPAN class=""&gt;entity&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;{"&lt;SPAN class=""&gt;alertId&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;913a3db5-7e2a-44f4-a4ff-3002af480c8d-1731522737697&lt;/SPAN&gt;","&lt;SPAN class=""&gt;id&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;913a3db5-7e2a-44f4-a4ff-3002af480c8d-1731522737697&lt;/SPAN&gt;","&lt;SPAN class=""&gt;type&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;alert&lt;/SPAN&gt;","&lt;SPAN class=""&gt;message&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"[&lt;SPAN class=""&gt;Splunk&lt;/SPAN&gt;] &lt;SPAN class=""&gt;Load&lt;/SPAN&gt; &lt;SPAN class=""&gt;Balancer&lt;/SPAN&gt; &lt;SPAN class=""&gt;Member&lt;/SPAN&gt; &lt;SPAN class=""&gt;Status&lt;/SPAN&gt;","&lt;SPAN class=""&gt;tags&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;[],"&lt;SPAN class=""&gt;tinyId&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;14585&lt;/SPAN&gt;","&lt;SPAN class=""&gt;entity&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"","&lt;SPAN class=""&gt;alias&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;FL-NS-VPX-INT-1&lt;/SPAN&gt;|&lt;SPAN class=""&gt;mobileapist&lt;/SPAN&gt;?&lt;SPAN class=""&gt;vnetapis003&lt;/SPAN&gt;?&lt;SPAN class=""&gt;8777&lt;/SPAN&gt;,","&lt;SPAN class=""&gt;createdAt&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:1731522737697&lt;/SPAN&gt;,"&lt;SPAN class=""&gt;updatedAt&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:1731523038582000000&lt;/SPAN&gt;,"&lt;SPAN class=""&gt;username&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;System&lt;/SPAN&gt;","&lt;SPAN class=""&gt;responders&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;[{"&lt;SPAN class=""&gt;id&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;f8c9079d-c7bb-4e58-ac83-359cb217a3b5&lt;/SPAN&gt;","&lt;SPAN class=""&gt;type&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;team&lt;/SPAN&gt;","&lt;SPAN class=""&gt;name&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;Monitoring_Admin&lt;/SPAN&gt;"}],"&lt;SPAN class=""&gt;teams&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;["&lt;SPAN class=""&gt;f8c9079d-c7bb-4e58-ac83-359cb217a3b5&lt;/SPAN&gt;"],"&lt;SPAN class=""&gt;actions&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;[],"&lt;SPAN class=""&gt;priority&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;P3&lt;/SPAN&gt;","&lt;SPAN class=""&gt;oldPriority&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;P3&lt;/SPAN&gt;","&lt;SPAN class=""&gt;source&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;Splunk&lt;/SPAN&gt;"},"&lt;SPAN class=""&gt;mappedActionDto&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;{"&lt;SPAN class=""&gt;mappedAction&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;postActionToOEC&lt;/SPAN&gt;","&lt;SPAN class=""&gt;extraField&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;""},"&lt;SPAN class=""&gt;ownerId&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;8b500163-8476-4b0e-9ef7-2cfdaa272adf&lt;/SPAN&gt;"},"&lt;SPAN class=""&gt;integrationType&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;OEC&lt;/SPAN&gt;","&lt;SPAN class=""&gt;alert&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;{"&lt;SPAN class=""&gt;alertId&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;913a3db5-7e2a-44f4-a4ff-3002af480c8d-1731522737697&lt;/SPAN&gt;","&lt;SPAN class=""&gt;id&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;913a3db5-7e2a-44f4-a4ff-3002af480c8d-1731522737697&lt;/SPAN&gt;","&lt;SPAN class=""&gt;type&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;alert&lt;/SPAN&gt;","&lt;SPAN class=""&gt;message&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"[&lt;SPAN class=""&gt;Splunk&lt;/SPAN&gt;] &lt;SPAN class=""&gt;Load&lt;/SPAN&gt; &lt;SPAN class=""&gt;Balancer&lt;/SPAN&gt; &lt;SPAN class=""&gt;Member&lt;/SPAN&gt; &lt;SPAN class=""&gt;Status&lt;/SPAN&gt;","&lt;SPAN class=""&gt;tags&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;[],"&lt;SPAN class=""&gt;tinyId&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;14585&lt;/SPAN&gt;","&lt;SPAN class=""&gt;entity&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"","&lt;SPAN class=""&gt;alias&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;FL-NS-VPX-INT-1&lt;/SPAN&gt;|&lt;SPAN class=""&gt;mobileapist&lt;/SPAN&gt;?&lt;SPAN class=""&gt;vnetapis003&lt;/SPAN&gt;?&lt;SPAN class=""&gt;8777&lt;/SPAN&gt;,","&lt;SPAN class=""&gt;createdAt&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:1731522737697&lt;/SPAN&gt;,"&lt;SPAN class=""&gt;updatedAt&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:1731523038582000000&lt;/SPAN&gt;,"&lt;SPAN class=""&gt;username&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;System&lt;/SPAN&gt;","&lt;SPAN class=""&gt;responders&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;[{"&lt;SPAN class=""&gt;id&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;f8c9079d-c7bb-4e58-ac83-359cb217a3b5&lt;/SPAN&gt;","&lt;SPAN class=""&gt;type&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;team&lt;/SPAN&gt;","&lt;SPAN class=""&gt;name&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;Monitoring_Admin&lt;/SPAN&gt;"}],"&lt;SPAN class=""&gt;teams&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;["&lt;SPAN class=""&gt;f8c9079d-c7bb-4e58-ac83-359cb217a3b5&lt;/SPAN&gt;"],"&lt;SPAN class=""&gt;actions&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;[],"&lt;SPAN class=""&gt;priority&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;P3&lt;/SPAN&gt;","&lt;SPAN class=""&gt;oldPriority&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;P3&lt;/SPAN&gt;","&lt;SPAN class=""&gt;source&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;Splunk&lt;/SPAN&gt;"},"&lt;SPAN class=""&gt;customerConsolidated&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:false&lt;/SPAN&gt;,"&lt;SPAN class=""&gt;customerId&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;3a1f4387-b87b-4a3a-a568-cc372a86d8e4&lt;/SPAN&gt;","&lt;SPAN class=""&gt;action&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;Close&lt;/SPAN&gt;","&lt;SPAN class=""&gt;mappedActionDto&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;{"&lt;SPAN class=""&gt;mappedAction&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;postActionToOEC&lt;/SPAN&gt;","&lt;SPAN class=""&gt;extraField&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;""},"&lt;SPAN class=""&gt;alertId&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;913a3db5-7e2a-44f4-a4ff-3002af480c8d-1731522737697&lt;/SPAN&gt;","&lt;SPAN class=""&gt;alertAlias&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;FL-NS-VPX-INT-1&lt;/SPAN&gt;|&lt;SPAN class=""&gt;mobileapist&lt;/SPAN&gt;?&lt;SPAN class=""&gt;vnetapis003&lt;/SPAN&gt;?&lt;SPAN class=""&gt;8777&lt;/SPAN&gt;,","&lt;SPAN class=""&gt;alertDetails&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;{"&lt;SPAN class=""&gt;Raw&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"","&lt;SPAN class=""&gt;Results&lt;/SPAN&gt; &lt;SPAN class=""&gt;Link&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;&lt;A href="https://hostname:8000/app/search/search" target="_blank" rel="noopener"&gt;https://hostname:8000/app/search/search&lt;/A&gt;&lt;/SPAN&gt;?&lt;SPAN class=""&gt;q=&lt;/SPAN&gt;%7C&lt;SPAN class=""&gt;loadjob&lt;/SPAN&gt;%20&lt;SPAN class=""&gt;scheduler__td26605__search__RMD5e461b39d4ff19795_at_1731522600_38116&lt;/SPAN&gt;%20%7C%20&lt;SPAN class=""&gt;head&lt;/SPAN&gt;%20&lt;SPAN class=""&gt;4&lt;/SPAN&gt;%20%7C%20&lt;SPAN class=""&gt;tail&lt;/SPAN&gt;%20&lt;SPAN class=""&gt;1&lt;/SPAN&gt;&amp;amp;&lt;SPAN class=""&gt;earliest=0&lt;/SPAN&gt;&amp;amp;&lt;SPAN class=""&gt;latest=now&lt;/SPAN&gt;","&lt;SPAN class=""&gt;SuppressClosed&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;True&lt;/SPAN&gt;","&lt;SPAN class=""&gt;TeamsDescription&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;True&lt;/SPAN&gt;"},"&lt;SPAN class=""&gt;entity&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;{"&lt;SPAN class=""&gt;alertId&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;913a3db5-7e2a-44f4-a4ff-3002af480c8d-1731522737697&lt;/SPAN&gt;","&lt;SPAN class=""&gt;id&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;913a3db5-7e2a-44f4-a4ff-3002af480c8d-1731522737697&lt;/SPAN&gt;","&lt;SPAN class=""&gt;type&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;alert&lt;/SPAN&gt;","&lt;SPAN class=""&gt;message&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"[&lt;SPAN class=""&gt;Splunk&lt;/SPAN&gt;] &lt;SPAN class=""&gt;Load&lt;/SPAN&gt; &lt;SPAN class=""&gt;Balancer&lt;/SPAN&gt; &lt;SPAN class=""&gt;Member&lt;/SPAN&gt; &lt;SPAN class=""&gt;Status&lt;/SPAN&gt;","&lt;SPAN class=""&gt;tags&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;[],"&lt;SPAN class=""&gt;tinyId&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;14585&lt;/SPAN&gt;","&lt;SPAN class=""&gt;entity&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"","&lt;SPAN class=""&gt;alias&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;FL-NS-VPX-INT-1&lt;/SPAN&gt;|&lt;SPAN class=""&gt;mobileapist&lt;/SPAN&gt;?&lt;SPAN class=""&gt;vnetapis003&lt;/SPAN&gt;?&lt;SPAN class=""&gt;8777&lt;/SPAN&gt;,","&lt;SPAN class=""&gt;createdAt&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:1731522737697&lt;/SPAN&gt;,"&lt;SPAN class=""&gt;updatedAt&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:1731523038582000000&lt;/SPAN&gt;,"&lt;SPAN class=""&gt;username&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;System&lt;/SPAN&gt;","&lt;SPAN class=""&gt;responders&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;[{"&lt;SPAN class=""&gt;id&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;f8c9079d-c7bb-4e58-ac83-359cb217a3b5&lt;/SPAN&gt;","&lt;SPAN class=""&gt;type&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;team&lt;/SPAN&gt;","&lt;SPAN class=""&gt;name&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;Monitoring_Admin&lt;/SPAN&gt;"}],"&lt;SPAN class=""&gt;teams&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;["&lt;SPAN class=""&gt;f8c9079d-c7bb-4e58-ac83-359cb217a3b5&lt;/SPAN&gt;"],"&lt;SPAN class=""&gt;actions&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;[],"&lt;SPAN class=""&gt;priority&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;P3&lt;/SPAN&gt;","&lt;SPAN class=""&gt;oldPriority&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;P3&lt;/SPAN&gt;","&lt;SPAN class=""&gt;source&lt;/SPAN&gt;"&lt;SPAN class=""&gt;:&lt;/SPAN&gt;"&lt;SPAN class=""&gt;Splunk&lt;/SPAN&gt;"}} &amp;#27;[&lt;SPAN class=""&gt;36mmessageId&lt;/SPAN&gt;&amp;#27;[&lt;SPAN class=""&gt;0m=7546739e-2bab-414d-94b5-b0f205208932&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for all the help on this one,&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Tom&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Nov 2024 22:42:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Need-help-with-the-correct-regex/m-p/704343#M238677</guid>
      <dc:creator>mninansplunk</dc:creator>
      <dc:date>2024-11-13T22:42:46Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with the correct regex</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Need-help-with-the-correct-regex/m-p/704346#M238679</link>
      <description>&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;Can you please post an example _raww event in a code block, thanks&amp;nbsp;&lt;/P&gt;&lt;P&gt;cheers, MuS&lt;/P&gt;</description>
      <pubDate>Wed, 13 Nov 2024 22:08:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Need-help-with-the-correct-regex/m-p/704346#M238679</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2024-11-13T22:08:27Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with the correct regex</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Need-help-with-the-correct-regex/m-p/704375#M238685</link>
      <description>&lt;P&gt;You are looking at the wrong tool in the box. &amp;nbsp;Do not use rex to extract fields from structure data like JSON which your event contains. &amp;nbsp;Instead, extract the JSON object then use tools like spath to extract data fields.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| rex "^[^{]+(?&amp;lt;message_body&amp;gt;.+})"
| spath input=message_body
| table *.alias *.responders{}.name&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your sample data will give&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="117.296875px" height="25px"&gt;alert.alias&lt;/TD&gt;&lt;TD width="117.296875px" height="25px"&gt;entity.alias&lt;/TD&gt;&lt;TD width="137.265625px" height="25px"&gt;params.alert.alias&lt;/TD&gt;&lt;TD width="144.46875px" height="25px"&gt;params.entity.alias&lt;/TD&gt;&lt;TD width="185.34375px" height="25px"&gt;alert.responders{}.name&lt;/TD&gt;&lt;TD width="144.140625px" height="25px"&gt;entity.responders{}.name&lt;/TD&gt;&lt;TD width="144.140625px" height="25px"&gt;params.alert.responders{}.name&lt;/TD&gt;&lt;TD width="144.140625px" height="25px"&gt;params.entity.responders{}.name&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="117.296875px" height="113px"&gt;FL-NS-VPX-INT-1|mobileapist?vnetapis003?8777,&lt;/TD&gt;&lt;TD width="117.296875px" height="113px"&gt;FL-NS-VPX-INT-1|mobileapist?vnetapis003?8777,&lt;/TD&gt;&lt;TD width="137.265625px" height="113px"&gt;FL-NS-VPX-INT-1|mobileapist?vnetapis003?8777,&lt;/TD&gt;&lt;TD width="144.46875px" height="113px"&gt;FL-NS-VPX-INT-1|mobileapist?vnetapis003?8777,&lt;/TD&gt;&lt;TD width="185.34375px" height="113px"&gt;Monitoring_Admin&lt;/TD&gt;&lt;TD width="144.140625px" height="113px"&gt;Monitoring_Admin&lt;/TD&gt;&lt;TD width="144.140625px" height="113px"&gt;Monitoring_Admin&lt;/TD&gt;&lt;TD width="144.140625px" height="113px"&gt;Monitoring_Admin&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;Additional pointers:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;The sample JSON contains 4 different leaf nodes all named &lt;U&gt;alias&lt;/U&gt;. &amp;nbsp;There is no inherent logic to say they are all the same.&lt;/LI&gt;&lt;LI&gt;The sample JSON contains 4 different arrays that all contain leaf nodes that are all named &lt;U&gt;name&lt;/U&gt;. &amp;nbsp;There is no inherent logic to say they are all the same.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;What this means is that you need to ask your developer which node you need data from.&lt;/P&gt;&lt;P&gt;Lastly, this JSON has a deep structure. &amp;nbsp;If you are only interested in select few nodes, you can also use a JSON function if your server is 8.2 or later. &amp;nbsp;For example,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| rex "^[^{]+(?&amp;lt;message_body&amp;gt;.+})"
| eval alias = json_extract(message_body, "alert.alias"),
  name = json_extract(message_body, "alert.responders{}.name")
| table alias name&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The output will be&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;alias&lt;/TD&gt;&lt;TD&gt;name&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;FL-NS-VPX-INT-1|mobileapist?vnetapis003?8777,&lt;/TD&gt;&lt;TD&gt;Monitoring_Admin&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;Here is an emulation of your sample data. &amp;nbsp;Play with it and compare with real data&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| makeresults
| eval _raw = "[36mINFO[0m[2024-11-13T13:37:23.9114215-05:00] Message body: {\"actionType\":\"custom\",\"customerId\":\"3a1f4387-b87b-4a3a-a568-cc372a86d8e4\",\"ownerDomain\":\"integration\",\"ownerId\":\"8b500163-8476-4b0e-9ef7-2cfdaa272adf\",\"discardScriptResponse\":true,\"sendCallbackToStreamHub\":false,\"requestId\":\"18dcdb1b-14d6-4b10-ad62-3f73acaaef2a\",\"action\":\"Close\",\"productSource\":\"Opsgenie\",\"customerDomain\":\"siteone\",\"integrationName\":\"Opsgenie Edge Connector\",\"integrationId\":\"8b500163-8476-4b0e-9ef7-2cfdaa272adf\",\"customerTransitioningOrConsolidated\":false,\"source\":{\"name\":\"\",\"type\":\"system\"},\"type\":\"oec\",\"receivedAt\":1731523037863,\"ownerId\":\"8b500163-8476-4b0e-9ef7-2cfdaa272adf\",\"params\":{\"type\":\"oec\",\"alertId\":\"913a3db5-7e2a-44f4-a4ff-3002af480c8d-1731522737697\",\"customerId\":\"3a1f4387-b87b-4a3a-a568-cc372a86d8e4\",\"action\":\"Close\",\"integrationId\":\"8b500163-8476-4b0e-9ef7-2cfdaa272adf\",\"integrationName\":\"Opsgenie Edge Connector\",\"integrationType\":\"OEC\",\"customerDomain\":\"siteone\",\"alertDetails\":{\"Raw\":\"\",\"Results Link\":\"https://hostname:8000/app/search/search?q=%7Cloadjob%20scheduler__td26605__search__RMD5e461b39d4ff19795_at_1731522600_38116%20%7C%20head%204%20%7C%20tail%201&amp;amp;earliest=0&amp;amp;latest=now\",\"SuppressClosed\":\"True\",\"TeamsDescription\":\"True\"},\"alertAlias\":\"FL-NS-VPX-INT-1|mobileapist?vnetapis003?8777,\",\"receivedAt\":1731523037863,\"customerConsolidated\":false,\"customerTransitioningOrConsolidated\":false,\"productSource\":\"Opsgenie\",\"source\":{\"name\":\"\",\"type\":\"system\"},\"alert\":{\"alertId\":\"913a3db5-7e2a-44f4-a4ff-3002af480c8d-1731522737697\",\"id\":\"913a3db5-7e2a-44f4-a4ff-3002af480c8d-1731522737697\",\"type\":\"alert\",\"message\":\"[Splunk] Load Balancer Member Status\",\"tags\":[],\"tinyId\":\"14585\",\"entity\":\"\",\"alias\":\"FL-NS-VPX-INT-1|mobileapist?vnetapis003?8777,\",\"createdAt\":1731522737697,\"updatedAt\":1731523038582000000,\"username\":\"System\",\"responders\":[{\"id\":\"f8c9079d-c7bb-4e58-ac83-359cb217a3b5\",\"type\":\"team\",\"name\":\"Monitoring_Admin\"}],\"teams\":[\"f8c9079d-c7bb-4e58-ac83-359cb217a3b5\"],\"actions\":[],\"priority\":\"P3\",\"oldPriority\":\"P3\",\"source\":\"Splunk\"},\"entity\":{\"alertId\":\"913a3db5-7e2a-44f4-a4ff-3002af480c8d-1731522737697\",\"id\":\"913a3db5-7e2a-44f4-a4ff-3002af480c8d-1731522737697\",\"type\":\"alert\",\"message\":\"[Splunk] Load Balancer Member Status\",\"tags\":[],\"tinyId\":\"14585\",\"entity\":\"\",\"alias\":\"FL-NS-VPX-INT-1|mobileapist?vnetapis003?8777,\",\"createdAt\":1731522737697,\"updatedAt\":1731523038582000000,\"username\":\"System\",\"responders\":[{\"id\":\"f8c9079d-c7bb-4e58-ac83-359cb217a3b5\",\"type\":\"team\",\"name\":\"Monitoring_Admin\"}],\"teams\":[\"f8c9079d-c7bb-4e58-ac83-359cb217a3b5\"],\"actions\":[],\"priority\":\"P3\",\"oldPriority\":\"P3\",\"source\":\"Splunk\"},\"mappedActionDto\":{\"mappedAction\":\"postActionToOEC\",\"extraField\":\"\"},\"ownerId\":\"8b500163-8476-4b0e-9ef7-2cfdaa272adf\"},\"integrationType\":\"OEC\",\"alert\":{\"alertId\":\"913a3db5-7e2a-44f4-a4ff-3002af480c8d-1731522737697\",\"id\":\"913a3db5-7e2a-44f4-a4ff-3002af480c8d-1731522737697\",\"type\":\"alert\",\"message\":\"[Splunk] Load Balancer Member Status\",\"tags\":[],\"tinyId\":\"14585\",\"entity\":\"\",\"alias\":\"FL-NS-VPX-INT-1|mobileapist?vnetapis003?8777,\",\"createdAt\":1731522737697,\"updatedAt\":1731523038582000000,\"username\":\"System\",\"responders\":[{\"id\":\"f8c9079d-c7bb-4e58-ac83-359cb217a3b5\",\"type\":\"team\",\"name\":\"Monitoring_Admin\"}],\"teams\":[\"f8c9079d-c7bb-4e58-ac83-359cb217a3b5\"],\"actions\":[],\"priority\":\"P3\",\"oldPriority\":\"P3\",\"source\":\"Splunk\"},\"customerConsolidated\":false,\"customerId\":\"3a1f4387-b87b-4a3a-a568-cc372a86d8e4\",\"action\":\"Close\",\"mappedActionDto\":{\"mappedAction\":\"postActionToOEC\",\"extraField\":\"\"},\"alertId\":\"913a3db5-7e2a-44f4-a4ff-3002af480c8d-1731522737697\",\"alertAlias\":\"FL-NS-VPX-INT-1|mobileapist?vnetapis003?8777,\",\"alertDetails\":{\"Raw\":\"\",\"Results Link\":\"https://hostname:8000/app/search/search?q=%7Cloadjob%20scheduler__td26605__search__RMD5e461b39d4ff19795_at_1731522600_38116%20%7C%20head%204%20%7C%20tail%201&amp;amp;earliest=0&amp;amp;latest=now\",\"SuppressClosed\":\"True\",\"TeamsDescription\":\"True\"},\"entity\":{\"alertId\":\"913a3db5-7e2a-44f4-a4ff-3002af480c8d-1731522737697\",\"id\":\"913a3db5-7e2a-44f4-a4ff-3002af480c8d-1731522737697\",\"type\":\"alert\",\"message\":\"[Splunk] Load Balancer Member Status\",\"tags\":[],\"tinyId\":\"14585\",\"entity\":\"\",\"alias\":\"FL-NS-VPX-INT-1|mobileapist?vnetapis003?8777,\",\"createdAt\":1731522737697,\"updatedAt\":1731523038582000000,\"username\":\"System\",\"responders\":[{\"id\":\"f8c9079d-c7bb-4e58-ac83-359cb217a3b5\",\"type\":\"team\",\"name\":\"Monitoring_Admin\"}],\"teams\":[\"f8c9079d-c7bb-4e58-ac83-359cb217a3b5\"],\"actions\":[],\"priority\":\"P3\",\"oldPriority\":\"P3\",\"source\":\"Splunk\"}} [36mmessageId[0m=7546739e-2bab-414d-94b5-b0f205208932"
``` data emulation above ```&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Nov 2024 04:59:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Need-help-with-the-correct-regex/m-p/704375#M238685</guid>
      <dc:creator>yuanliu</dc:creator>
      <dc:date>2024-11-14T04:59:09Z</dc:date>
    </item>
  </channel>
</rss>

