All Apps and Add-ons

Splunk grabbing website body information?

Jarohnimo
Builder

I have a request for Splunk to read the body message of a specific web url (https://myurl.com/health) and the health status shows up or down.

Without installing a forwarder on the server side or reading tomcat logs theyd like to know if it's possible for splunk to read the url body and print the status to the Indexer.

I'd imagine it maybe possible to do this with a bash/ powershell script. If anyone knows of a way please let me know.

Tags (1)
0 Karma

anthonymelita
Contributor

In python you can use the "requests" package. Basic example:

import requests

r = response.get('https://myurl.com/health')
print(r.content)

In powershell you can use Invoke-WebRequest

$r = Invoke-WebRequest https://myurl.com/health
echo $r.Content
0 Karma
Get Updates on the Splunk Community!

Fall Into Learning with New Splunk Education Courses

Every month, Splunk Education releases new courses to help you branch out, strengthen your data science roots, ...

Super Optimize your Splunk Stats Searches: Unlocking the Power of tstats, TERM, and ...

By Martin Hettervik, Senior Consultant and Team Leader at Accelerate at Iver, Splunk MVPThe stats command is ...

How Splunk Observability Cloud Prevented a Major Payment Crisis in Minutes

Your bank's payment processing system is humming along during a busy afternoon, handling millions in hourly ...