Splunk Enterprise

Notification when a new update is released

Knust
Explorer

Hi, I want to know if there is any resources available to get a notification or some way to know when a new Splunk Enterprise version is released. This could either be through mail, a rss feed or something similar?

I already know that this one exists https://www.splunk.com/page/release_rss
But it is not up to date.

Thanks, Zarge

Labels (1)

marnall
Motivator

Depending on whether you want to do this directly in Splunk, and what modules you have installed in your Splunk Enterprise deployment, it may be practical to schedule a scripted input which sends a HTTP request to the download page, searches for the <span class="version">9.4.1</span> text, then extracts the value in the middle. You can then set up a scheduled alert if the version does not match your current version which can be retrieved using "| rest services/server/info".

0 Karma

splunkmarroko
Engager

hello @Knust :

try this query:

|rest services/server/info
|eval new_version = "9.4.0" ```replace it with the version you're upgrading to```
|eval current_version = version
|eval old_version = if(new_version > current_version, "yes", "no")
|table current_version new_version old_version

on the table: if the old_version column says yes, you need to upgrade if it says no no need
you can also rename the the way you would prefer by using | rename command
please let me know if this helps.

0 Karma

spectakl-seth
Observer

We actually built this exact thing for the community. It will email you when a new version of Splunk Enterprise is released:
https://spectakl.io/resources/watch

Mods if this is not okay, please remove. We are not affiliated, endorsed, or sponsored by Splunk LLC.

Tags (1)
0 Karma

kiran_panchavat
Influencer

Splunk Documentation - Release Notes:

The official Splunk documentation provides detailed release notes for each version.

You can find the release notes for the latest version:

https://docs.splunk.com/Documentation/Splunk/9.2.0/ReleaseNotes/MeetSplunk 
https://docs.splunk.com/Documentation/Splunk/9.2.0/UpgradeReadiness/Releasenotes 

These release notes include information about new features, enhancements, and resolved issues.

Upgrade Readiness App:

Install the Upgrade Readiness App in your Splunk environment.

This app includes a tab to scan for Splunk platform compatibility.

It assesses if your deployment is ready for an upgrade to a specific version (e.g., Splunk Enterprise 9.0).

Additionally, all active admin or sc_admin users receive weekly email notifications by default

https://docs.splunk.com/Documentation/Splunk/9.2.0/UpgradeReadiness/Releasenotes 

Remember to keep an eye on the official Splunk channels, explore the community forums, and subscribe to relevant notifications to stay up-to-date with Splunk Enterprise releases. Happy Splunking! 😊

 

Did this help? If yes, please consider giving kudos, marking it as the solution, or commenting for clarification — your feedback keeps the community going!
0 Karma
Get Updates on the Splunk Community!

Splunk Observability Cloud's AI Assistant in Action Series: Auditing Compliance and ...

This is the third post in the Splunk Observability Cloud’s AI Assistant in Action series that digs into how to ...

Splunk Community Badges!

  Hey everyone! Ready to earn some serious bragging rights in the community? Along with our existing badges ...

What You Read The Most: Splunk Lantern’s Most Popular Articles!

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...