<?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: Create e-mail alerts for inactive and unstable entities in Splunk ITSI</title>
    <link>https://community.splunk.com/t5/Splunk-ITSI/Create-e-mail-alerts-for-inactive-and-unstable-entities/m-p/695500#M2909</link>
    <description>&lt;P&gt;You could use a search like this to check if the entities mapped in a service are receiving events within a specified time frame, if not you could consider them unstable and alert&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| inputlookup itsi_entities append=true 
| rename services._key as service_key 
| rename title as entity 
| fields entity, service_key 
| where isnotnull(service_key) 
| mvexpand service_key 
| inputlookup service_kpi_lookup append=true 
| eval key=coalesce(service_key,_key) 
| stats values(entity) as host, values(title) as service by key 
| mvexpand host 
| dedup host 
| fields host 
| eval host=lower(host) 
| join type=outer host 
    [| metadata type=hosts index=_internal 
    | eval host=lower(host) 
    | eval status = if(lastTime&amp;gt;now()-180,1,0)] 
| eval status=if(status=1,1,0)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 07 Aug 2024 05:53:19 GMT</pubDate>
    <dc:creator>proyleJDS</dc:creator>
    <dc:date>2024-08-07T05:53:19Z</dc:date>
    <item>
      <title>Create e-mail alerts for inactive and unstable entities</title>
      <link>https://community.splunk.com/t5/Splunk-ITSI/Create-e-mail-alerts-for-inactive-and-unstable-entities/m-p/690086#M2882</link>
      <description>&lt;P&gt;Hi guys!&lt;/P&gt;&lt;P&gt;how to proceed to create alerts on inactive and unstable entities .&lt;/P&gt;</description>
      <pubDate>Sat, 08 Jun 2024 14:28:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-ITSI/Create-e-mail-alerts-for-inactive-and-unstable-entities/m-p/690086#M2882</guid>
      <dc:creator>rmo23</dc:creator>
      <dc:date>2024-06-08T14:28:25Z</dc:date>
    </item>
    <item>
      <title>Re: Create e-mail alerts for inactive and unstable entities</title>
      <link>https://community.splunk.com/t5/Splunk-ITSI/Create-e-mail-alerts-for-inactive-and-unstable-entities/m-p/690092#M2883</link>
      <description>&lt;P&gt;Until you can tell us what data you have, what field/value in that data indicates inactive and unstable entities, and how you want the output to look like, volunteers are not going to help you.&lt;/P&gt;</description>
      <pubDate>Sat, 08 Jun 2024 19:53:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-ITSI/Create-e-mail-alerts-for-inactive-and-unstable-entities/m-p/690092#M2883</guid>
      <dc:creator>yuanliu</dc:creator>
      <dc:date>2024-06-08T19:53:04Z</dc:date>
    </item>
    <item>
      <title>Re: Create e-mail alerts for inactive and unstable entities</title>
      <link>https://community.splunk.com/t5/Splunk-ITSI/Create-e-mail-alerts-for-inactive-and-unstable-entities/m-p/690093#M2884</link>
      <description>&lt;P&gt;hi&lt;BR /&gt;I manage to monitor the servers divided into services via the ITSI.&lt;BR /&gt;However, I would like to receive email alerts when some of my servers change state, either inactive or unstable, for better reactivity.&lt;/P&gt;</description>
      <pubDate>Sat, 08 Jun 2024 20:09:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-ITSI/Create-e-mail-alerts-for-inactive-and-unstable-entities/m-p/690093#M2884</guid>
      <dc:creator>rmo23</dc:creator>
      <dc:date>2024-06-08T20:09:58Z</dc:date>
    </item>
    <item>
      <title>Re: Create e-mail alerts for inactive and unstable entities</title>
      <link>https://community.splunk.com/t5/Splunk-ITSI/Create-e-mail-alerts-for-inactive-and-unstable-entities/m-p/690121#M2885</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/256947"&gt;@rmo23&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;as also&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/33901"&gt;@yuanliu&lt;/a&gt;&amp;nbsp;said, you should share more details about your infrastructure.&lt;/P&gt;&lt;P&gt;Anyway, in ITSI there's an asset inventory that should be complete (otherwise you have a very bigger issue!).&lt;/P&gt;&lt;P&gt;So,&amp;nbsp; you could use the lookup containing these asset (I don' t remember its name) and run a search like the following:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| tstats 
     count
     where index=*
     BY host
| append [ | inputlookup your_asset_lookup | eval count=0 | fields host count ]
| stats sum(count) AS total BY host
| where total=0&lt;/LI-CODE&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Sun, 09 Jun 2024 10:03:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-ITSI/Create-e-mail-alerts-for-inactive-and-unstable-entities/m-p/690121#M2885</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2024-06-09T10:03:10Z</dc:date>
    </item>
    <item>
      <title>Re: Create e-mail alerts for inactive and unstable entities</title>
      <link>https://community.splunk.com/t5/Splunk-ITSI/Create-e-mail-alerts-for-inactive-and-unstable-entities/m-p/690139#M2886</link>
      <description>&lt;P&gt;hi&lt;BR /&gt;Indeed, thanks to ITSI, I can have data on the metrics, the status of my servers, active or inactive, I can predict the status of my infrastructure, etc. I just want to receive email alerts only when my servers are inactive, I only see this status when I'm in ‘Entity Overview’ if it's possible to configure an email alert on it.&lt;/P&gt;</description>
      <pubDate>Sun, 09 Jun 2024 15:38:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-ITSI/Create-e-mail-alerts-for-inactive-and-unstable-entities/m-p/690139#M2886</guid>
      <dc:creator>rmo23</dc:creator>
      <dc:date>2024-06-09T15:38:27Z</dc:date>
    </item>
    <item>
      <title>Re: Create e-mail alerts for inactive and unstable entities</title>
      <link>https://community.splunk.com/t5/Splunk-ITSI/Create-e-mail-alerts-for-inactive-and-unstable-entities/m-p/690143#M2887</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/256947"&gt;@rmo23&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;at first see if there is the way (I don't know very deeply ITSI) to enable as action the email sending.&lt;/P&gt;&lt;P&gt;If not extract the search from this dashboard and create a custom alert.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Sun, 09 Jun 2024 16:09:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-ITSI/Create-e-mail-alerts-for-inactive-and-unstable-entities/m-p/690143#M2887</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2024-06-09T16:09:56Z</dc:date>
    </item>
    <item>
      <title>Re: Create e-mail alerts for inactive and unstable entities</title>
      <link>https://community.splunk.com/t5/Splunk-ITSI/Create-e-mail-alerts-for-inactive-and-unstable-entities/m-p/695500#M2909</link>
      <description>&lt;P&gt;You could use a search like this to check if the entities mapped in a service are receiving events within a specified time frame, if not you could consider them unstable and alert&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| inputlookup itsi_entities append=true 
| rename services._key as service_key 
| rename title as entity 
| fields entity, service_key 
| where isnotnull(service_key) 
| mvexpand service_key 
| inputlookup service_kpi_lookup append=true 
| eval key=coalesce(service_key,_key) 
| stats values(entity) as host, values(title) as service by key 
| mvexpand host 
| dedup host 
| fields host 
| eval host=lower(host) 
| join type=outer host 
    [| metadata type=hosts index=_internal 
    | eval host=lower(host) 
    | eval status = if(lastTime&amp;gt;now()-180,1,0)] 
| eval status=if(status=1,1,0)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Aug 2024 05:53:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-ITSI/Create-e-mail-alerts-for-inactive-and-unstable-entities/m-p/695500#M2909</guid>
      <dc:creator>proyleJDS</dc:creator>
      <dc:date>2024-08-07T05:53:19Z</dc:date>
    </item>
  </channel>
</rss>

