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!

Introducing Splunk Enterprise Security 8.0!

Join us on Wednesday, November 20 to learn about Splunk Enterprise Security 8.0!To enhance SOC efficiency, ...

Mastering Threat Hunting

Register to watch Mastering Threat Hunting on Monday, November 18Join us for an insightful talk where we dive ...

Upcoming Community Maintenance: 10/28

Howdy folks, just popping in to let you know that the Splunk Community site will be in read-only mode ...