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!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...