All Apps and Add-ons

httpstatus command: Why does the command return "0" when any path is added to to the URL?

jensonthottian
Contributor

This command works great with url as "www.splunk.com" - return status code as "200",
But return http status as "0" when any path is added - i.e.“www.splunk.com/en_us/products.html”

index=abc| eval url="www.splunk.com" |httpstatus |table url httpstatus

Below is the python script :

import sys,splunk.Intersplunk
import string
import httplib

urlfield="url"

if len(sys.argv)>1 and len(sys.argv) != 4:
    print "Usage |httpstatus url as <local-field> (or have url field name in data)"
    sys.exit()
elif len(sys.argv) == 4:
    urlfield=sys.argv[3]

results = []

try:

results,dummyresults,settings = splunk.Intersplunk.getOrganizedResults()

for r in results:
    if "_raw" in r:
        if urlfield in r:
            try:
                conn = httplib.HTTPConnection(r[urlfield], timeout=5)
                conn.request("HEAD","")
                res = conn.getresponse()
                r["httpstatus"] = res.status
                conn.close()
            except:
                r["httpstatus"] = "0"
                if (conn != None):
                    conn.close()
except:
    import traceback
    stack =  traceback.format_exc()
    results = splunk.Intersplunk.generateErrorResults("Error : Traceback: " + str(stack))

splunk.Intersplunk.outputResults( results )
0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

The httpConnection() method expects either hostname or hostname:port. It does not work with a path. Pass the full URL (with path) as the second argument to the request() method.

---
If this reply helps you, Karma would be appreciated.

View solution in original post

0 Karma

richgalloway
SplunkTrust
SplunkTrust

The httpConnection() method expects either hostname or hostname:port. It does not work with a path. Pass the full URL (with path) as the second argument to the request() method.

---
If this reply helps you, Karma would be appreciated.
0 Karma

jensonthottian
Contributor

The addition of path as second argument to the request method--

Broke the URL field in two parts - host and path
And created another variable host

conn = httplib.HTTPConnection(r[urlfield], timeout=5)
conn.request("HEAD", path)
return conn.getresponse().status
except StandardError:
return None

0 Karma
Get Updates on the Splunk Community!

Introducing Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...