2013-04-15 18:32:13 -07:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
import os
|
2014-11-11 22:45:32 -08:00
|
|
|
import time
|
2013-04-15 18:32:13 -07:00
|
|
|
import select
|
|
|
|
import subprocess
|
|
|
|
import sys
|
2014-11-11 22:45:32 -08:00
|
|
|
from optparse import OptionParser
|
|
|
|
from requests.exceptions import ConnectionError
|
2013-04-15 18:32:13 -07:00
|
|
|
|
2014-11-11 22:45:32 -08:00
|
|
|
sys.path.insert(0, '/srv/newsblur')
|
|
|
|
os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
|
|
|
|
import fabfile
|
2013-04-15 18:32:13 -07:00
|
|
|
|
2014-11-11 22:45:32 -08:00
|
|
|
NEWSBLUR_USERNAME = 'sclay'
|
2013-04-15 18:32:13 -07:00
|
|
|
IGNORE_HOSTS = [
|
|
|
|
'push',
|
|
|
|
]
|
|
|
|
|
2014-11-11 22:45:32 -08:00
|
|
|
def main(role="app", role2="work", command=None, path=None):
|
|
|
|
delay = 1
|
|
|
|
|
|
|
|
while True:
|
|
|
|
try:
|
|
|
|
streams = create_streams_for_roles(role, role2, command=command, path=path)
|
|
|
|
print " --- Loading %s App Log Tails ---" % len(streams)
|
|
|
|
read_streams(streams)
|
|
|
|
except UnicodeDecodeError: # unexpected end of data
|
|
|
|
print " --- Lost connections - Retrying... ---"
|
|
|
|
time.sleep(1)
|
|
|
|
continue
|
|
|
|
except ConnectionError:
|
|
|
|
print " --- Retrying in %s seconds... ---" % delay
|
|
|
|
time.sleep(delay)
|
|
|
|
delay += 1
|
|
|
|
continue
|
|
|
|
except KeyboardInterrupt:
|
|
|
|
print " --- End of Logging ---"
|
|
|
|
break
|
|
|
|
|
|
|
|
def create_streams_for_roles(role, role2, command=None, path=None):
|
2013-04-15 18:32:13 -07:00
|
|
|
streams = list()
|
2016-02-09 16:34:59 -08:00
|
|
|
hosts = fabfile.assign_digitalocean_roledefs(split=True)
|
2014-11-11 22:45:32 -08:00
|
|
|
found = set()
|
|
|
|
|
2013-04-15 18:32:13 -07:00
|
|
|
if not path:
|
|
|
|
path = "/srv/newsblur/logs/newsblur.log"
|
|
|
|
if not command:
|
|
|
|
command = "tail -f"
|
2014-11-11 22:45:32 -08:00
|
|
|
for hostname in (hosts[role] + hosts[role2]):
|
|
|
|
if isinstance(hostname, dict):
|
|
|
|
address = hostname['address']
|
|
|
|
hostname = hostname['name']
|
|
|
|
elif ':' in hostname:
|
2013-04-15 18:32:13 -07:00
|
|
|
hostname, address = hostname.split(':', 1)
|
2014-11-11 22:45:32 -08:00
|
|
|
elif isinstance(hostname, tuple):
|
|
|
|
hostname, address = hostname[0], hostname[1]
|
2013-04-15 18:32:13 -07:00
|
|
|
else:
|
|
|
|
address = hostname
|
2014-11-11 22:45:32 -08:00
|
|
|
if any(h in hostname for h in IGNORE_HOSTS): continue
|
|
|
|
if hostname in found: continue
|
2013-04-15 18:32:13 -07:00
|
|
|
if 'ec2' in hostname:
|
2014-11-11 22:45:32 -08:00
|
|
|
s = subprocess.Popen(["ssh",
|
|
|
|
"-i", os.path.expanduser(os.path.join(fabfile.env.SECRETS_PATH,
|
|
|
|
"keys/ec2.pem")),
|
2013-04-15 18:32:13 -07:00
|
|
|
address, "%s %s" % (command, path)], stdout=subprocess.PIPE)
|
|
|
|
else:
|
2014-11-11 22:45:32 -08:00
|
|
|
s = subprocess.Popen(["ssh", "-l", NEWSBLUR_USERNAME,
|
|
|
|
"-i", os.path.expanduser(os.path.join(fabfile.env.SECRETS_PATH,
|
|
|
|
"keys/newsblur.key")),
|
|
|
|
address, "%s %s" % (command, path)], stdout=subprocess.PIPE)
|
2013-04-15 18:32:13 -07:00
|
|
|
s.name = hostname
|
|
|
|
streams.append(s)
|
2014-11-11 22:45:32 -08:00
|
|
|
found.add(hostname)
|
|
|
|
|
|
|
|
return streams
|
2013-04-15 18:32:13 -07:00
|
|
|
|
2014-11-11 22:45:32 -08:00
|
|
|
def read_streams(streams):
|
|
|
|
while True:
|
|
|
|
r, _, _ = select.select(
|
|
|
|
[stream.stdout.fileno() for stream in streams], [], [])
|
|
|
|
for fileno in r:
|
|
|
|
for stream in streams:
|
|
|
|
if stream.stdout.fileno() != fileno:
|
|
|
|
continue
|
|
|
|
data = os.read(fileno, 4096)
|
|
|
|
if not data:
|
|
|
|
streams.remove(stream)
|
2013-04-15 18:32:13 -07:00
|
|
|
break
|
2014-11-11 22:45:32 -08:00
|
|
|
combination_message = "[%-6s] %s" % (stream.name[:6], data)
|
|
|
|
sys.stdout.write(combination_message)
|
2013-04-15 18:32:13 -07:00
|
|
|
break
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
parser = OptionParser()
|
|
|
|
parser.add_option("-f", "--find", dest="find")
|
|
|
|
parser.add_option("-p", "--path", dest="path")
|
2015-08-21 13:12:07 -07:00
|
|
|
parser.add_option("-r", "--role", dest="role")
|
2013-04-15 18:32:13 -07:00
|
|
|
(options, args) = parser.parse_args()
|
|
|
|
|
|
|
|
path = options.path
|
|
|
|
find = options.find
|
2015-08-21 13:12:07 -07:00
|
|
|
role = options.role or 'app'
|
2013-04-15 18:32:13 -07:00
|
|
|
command = "zgrep \"%s\"" % find
|
2015-08-21 13:12:07 -07:00
|
|
|
main(role=role, command=command, path=path)
|