
*** to conform to clang-format’s LLVM style. This kind of mass change has *** two obvious implications: Firstly, merging this particular commit into a downstream fork may be a huge effort. Alternatively, it may be worth merging all changes up to this commit, performing the same reformatting operation locally, and then discarding the merge for this particular commit. The commands used to accomplish this reformatting were as follows (with current working directory as the root of the repository): find . \( -iname "*.c" -or -iname "*.cpp" -or -iname "*.h" -or -iname "*.mm" \) -exec clang-format -i {} + find . -iname "*.py" -exec autopep8 --in-place --aggressive --aggressive {} + ; The version of clang-format used was 3.9.0, and autopep8 was 1.2.4. Secondly, “blame” style tools will generally point to this commit instead of a meaningful prior commit. There are alternatives available that will attempt to look through this change and find the appropriate prior commit. YMMV. llvm-svn: 280751
86 lines
2.0 KiB
Python
86 lines
2.0 KiB
Python
#!/usr/bin/env python
|
|
|
|
"""This runs Apache Status on the remote host and returns the number of requests per second.
|
|
|
|
./astat.py [-s server_hostname] [-u username] [-p password]
|
|
-s : hostname of the remote server to login to.
|
|
-u : username to user for login.
|
|
-p : Password to user for login.
|
|
|
|
Example:
|
|
This will print information about the given host:
|
|
./astat.py -s www.example.com -u mylogin -p mypassword
|
|
|
|
"""
|
|
|
|
import os
|
|
import sys
|
|
import time
|
|
import re
|
|
import getopt
|
|
import getpass
|
|
import traceback
|
|
import pexpect
|
|
import pxssh
|
|
|
|
|
|
def exit_with_usage():
|
|
|
|
print globals()['__doc__']
|
|
os._exit(1)
|
|
|
|
|
|
def main():
|
|
|
|
######################################################################
|
|
# Parse the options, arguments, get ready, etc.
|
|
######################################################################
|
|
try:
|
|
optlist, args = getopt.getopt(
|
|
sys.argv[
|
|
1:], 'h?s:u:p:', [
|
|
'help', 'h', '?'])
|
|
except Exception as e:
|
|
print str(e)
|
|
exit_with_usage()
|
|
options = dict(optlist)
|
|
if len(args) > 1:
|
|
exit_with_usage()
|
|
|
|
if [elem for elem in options if elem in [
|
|
'-h', '--h', '-?', '--?', '--help']]:
|
|
print "Help:"
|
|
exit_with_usage()
|
|
|
|
if '-s' in options:
|
|
hostname = options['-s']
|
|
else:
|
|
hostname = raw_input('hostname: ')
|
|
if '-u' in options:
|
|
username = options['-u']
|
|
else:
|
|
username = raw_input('username: ')
|
|
if '-p' in options:
|
|
password = options['-p']
|
|
else:
|
|
password = getpass.getpass('password: ')
|
|
|
|
#
|
|
# Login via SSH
|
|
#
|
|
p = pxssh.pxssh()
|
|
p.login(hostname, username, password)
|
|
p.sendline('apachectl status')
|
|
p.expect('([0-9]+\.[0-9]+)\s*requests/sec')
|
|
requests_per_second = p.match.groups()[0]
|
|
p.logout()
|
|
print requests_per_second
|
|
|
|
if __name__ == "__main__":
|
|
try:
|
|
main()
|
|
except Exception as e:
|
|
print str(e)
|
|
traceback.print_exc()
|
|
os._exit(1)
|