Http Response Time monitoring
I wanted to monitor response time of our websites in munin. I have found nice plugin http_response_time, which worked fine for https://example.com URLs.
Problems started, when I wanted to monitor some http and some https websites.
Here is small modification of http_response_time plugin, which will allow you to monitor both types of protocols.
The modification is marked with bold:
#!/usr/bin/env python
#
# Copyright (c) 2009, devdoodles
# All rights reserved.
#
# Redistribution an...