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!

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