Getting Data In

webping logging errors

vbumgarn
Path Finder

webping is a lovely little application. It is logging this error with splunk 4.1.x, though. Any plans to update it?

12-02-2010 08:07:19.922 ERROR ExecProcessor - message from "python /opt/splunk/etc/apps/webping/bin/webping.py"   import getopt, sys, imaplib, os, urllib2, urlparse, httplib, gzip, md5, \
12-02-2010 08:22:19.929 ERROR ExecProcessor - message from "python /opt/splunk/etc/apps/webping/bin/webping.py" /opt/splunk/etc/apps/webping/bin/webping.py:2: DeprecationWarning: the md5 module is deprecated; use hashlib instead

Thanks.

Tags (1)
0 Karma

southeringtonp
Motivator

That's a pretty common error in Python. If it's the only problem you're having it should be pretty easy to fix yourself.

Based on a very quick look, edit webping.py and make the following changes:

1) In the line of imports in lines 3-4, change md5 to hashlib.

2) At line 107, change it to read:

        if (u.config['indexMD5'] and u.result.has_key('data')):
            s = u.result.get('data')
            h = hashlib.new('md5')
            h.update(s)
            checksum = h.hexdigest()
            print 'ping_md5 =', checksum

A side effect is that you can replace 'md5' with 'sha1' or something else in hashlib.new() if you'd rather use a different hash algorithm.

Get Updates on the Splunk Community!

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...

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 ...