<?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: Outdated OS in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Outdated-OS/m-p/746663#M118656</link>
    <description>&lt;P&gt;Unfortunately there is no list ready to use.&lt;/P&gt;&lt;P&gt;But you could create it based on this&amp;nbsp;&lt;A href="https://docs.splunk.com/Documentation/Splunk/9.4.2/ReleaseNotes/Deprecatedfeatures#Platform_support_changes_in_version_9.4" target="_blank"&gt;https://docs.splunk.com/Documentation/Splunk/9.4.2/ReleaseNotes/Deprecatedfeatures#Platform_support_changes_in_version_9.4&lt;/A&gt;&amp;nbsp;unfortunately you must go through quite many release notes to get splunk version vs deprecated versions.&lt;/P&gt;&lt;P&gt;After that you could utilize&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/170906"&gt;@livehybrid&lt;/a&gt;&amp;nbsp;'s query with some modifications to utilize your os-support.csv.&lt;/P&gt;&lt;P&gt;Then if you are needing this information also for UFs, you must remember that their support times are longer that core components!&lt;/P&gt;&lt;P&gt;Here is link to Splunk Core support times&amp;nbsp;&lt;A href="https://www.splunk.com/en_us/legal/splunk-software-support-policy.html#core" target="_blank"&gt;https://www.splunk.com/en_us/legal/splunk-software-support-policy.html#core&lt;/A&gt;&amp;nbsp;and just after it you can see UF's support times which are longer e.g. UF 9.0 ends after 36 month instead of 24 months like core.&lt;/P&gt;</description>
    <pubDate>Wed, 21 May 2025 09:11:01 GMT</pubDate>
    <dc:creator>isoutamo</dc:creator>
    <dc:date>2025-05-21T09:11:01Z</dc:date>
    <item>
      <title>Outdated OS</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Outdated-OS/m-p/746638#M118646</link>
      <description>&lt;P&gt;Where can i get list of all outdated OS for my dashboard. Is there a site or something&lt;/P&gt;</description>
      <pubDate>Wed, 21 May 2025 06:20:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Outdated-OS/m-p/746638#M118646</guid>
      <dc:creator>SN1</dc:creator>
      <dc:date>2025-05-21T06:20:47Z</dc:date>
    </item>
    <item>
      <title>Re: Outdated OS</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Outdated-OS/m-p/746646#M118649</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/274807"&gt;@SN1&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;what do you mean with "outdated OS"?&lt;/P&gt;&lt;P&gt;then outdated respect what: Splunk or what else?&lt;/P&gt;&lt;P&gt;Could you better describe your requirement?&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Wed, 21 May 2025 06:53:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Outdated-OS/m-p/746646#M118649</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2025-05-21T06:53:12Z</dc:date>
    </item>
    <item>
      <title>Re: Outdated OS</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Outdated-OS/m-p/746659#M118654</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/274807"&gt;@SN1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you're looking for Splunk versions and their support status then you can use the following:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=_internal hostname=* os=* 
| stats first(fwdType) as fwdType, first(os) as os, first(version) as splunk_version by hostname 
| rex field=splunk_version "(?&amp;lt;version_minor&amp;gt;[0-9]+\.[0-9]+)" 
| append 
    [| makeresults format=csv data="version_minor, eos_date
9.0,Jun 14 2024
9.1,Jun 28 2025
9.2,Jan 31 2026
9.3,Jul 24 2026
9.4,Dec 16 2026" 
    | eval eos_unix=strptime(eos_date,"%b %d %Y") ] 
| stats values(hostname) as hosts, first(eos_date) as eos_date, first(eos_unix) as eos_unix by version_minor
| eval support_status=IF(eos_unix&amp;gt;time(),"In Support","Out of Support")
| fillnull eos_date value="Unknown"
| where hosts!=""&lt;/LI-CODE&gt;&lt;P&gt;However if you want the base OS then this might be a little tricker.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":glowing_star:"&gt;🌟&lt;/span&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Did this answer help you?&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;If so, please consider:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Adding karma to show it was useful&lt;/LI&gt;&lt;LI&gt;Marking it as the solution if it resolved your issue&lt;/LI&gt;&lt;LI&gt;Commenting if you need any clarification&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Your feedback encourages the volunteers in this community to continue contributing&lt;/P&gt;</description>
      <pubDate>Wed, 21 May 2025 08:33:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Outdated-OS/m-p/746659#M118654</guid>
      <dc:creator>livehybrid</dc:creator>
      <dc:date>2025-05-21T08:33:14Z</dc:date>
    </item>
    <item>
      <title>Re: Outdated OS</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Outdated-OS/m-p/746663#M118656</link>
      <description>&lt;P&gt;Unfortunately there is no list ready to use.&lt;/P&gt;&lt;P&gt;But you could create it based on this&amp;nbsp;&lt;A href="https://docs.splunk.com/Documentation/Splunk/9.4.2/ReleaseNotes/Deprecatedfeatures#Platform_support_changes_in_version_9.4" target="_blank"&gt;https://docs.splunk.com/Documentation/Splunk/9.4.2/ReleaseNotes/Deprecatedfeatures#Platform_support_changes_in_version_9.4&lt;/A&gt;&amp;nbsp;unfortunately you must go through quite many release notes to get splunk version vs deprecated versions.&lt;/P&gt;&lt;P&gt;After that you could utilize&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/170906"&gt;@livehybrid&lt;/a&gt;&amp;nbsp;'s query with some modifications to utilize your os-support.csv.&lt;/P&gt;&lt;P&gt;Then if you are needing this information also for UFs, you must remember that their support times are longer that core components!&lt;/P&gt;&lt;P&gt;Here is link to Splunk Core support times&amp;nbsp;&lt;A href="https://www.splunk.com/en_us/legal/splunk-software-support-policy.html#core" target="_blank"&gt;https://www.splunk.com/en_us/legal/splunk-software-support-policy.html#core&lt;/A&gt;&amp;nbsp;and just after it you can see UF's support times which are longer e.g. UF 9.0 ends after 36 month instead of 24 months like core.&lt;/P&gt;</description>
      <pubDate>Wed, 21 May 2025 09:11:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Outdated-OS/m-p/746663#M118656</guid>
      <dc:creator>isoutamo</dc:creator>
      <dc:date>2025-05-21T09:11:01Z</dc:date>
    </item>
    <item>
      <title>Re: Outdated OS</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Outdated-OS/m-p/746665#M118658</link>
      <description>&lt;P&gt;EMOREWORDS - What do you mean by "oudated OS"? Outdated OS where? Under Splunk components? Running Splunk UFs? Something else?&lt;/P&gt;&lt;P&gt;Remember that Splunk is _not_ an endpoint management system. You must have data in the first place to be able to find something in it. So it's a question for you whether you have the data about OS versions in the first place.&lt;/P&gt;</description>
      <pubDate>Wed, 21 May 2025 09:27:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Outdated-OS/m-p/746665#M118658</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2025-05-21T09:27:24Z</dc:date>
    </item>
    <item>
      <title>Re: Outdated OS</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Outdated-OS/m-p/746668#M118659</link>
      <description>&lt;P&gt;This is good point. After thinking this question probably means how to get lis into dashboard which nodes have OS which didn’t contains all latest patches etc?&lt;/P&gt;&lt;P&gt;Can you&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/274807"&gt;@SN1&lt;/a&gt;&amp;nbsp;confirm what you are meaning for “outdated os”?&lt;/P&gt;</description>
      <pubDate>Wed, 21 May 2025 10:20:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Outdated-OS/m-p/746668#M118659</guid>
      <dc:creator>isoutamo</dc:creator>
      <dc:date>2025-05-21T10:20:41Z</dc:date>
    </item>
  </channel>
</rss>

