2018-04-06 19:48:58 +00:00
|
|
|
import asyncio
|
|
|
|
import cProfile
|
|
|
|
from mitmproxy import ctx
|
|
|
|
|
|
|
|
|
|
|
|
class Benchmark:
|
|
|
|
"""
|
|
|
|
A simple profiler addon.
|
|
|
|
"""
|
|
|
|
def __init__(self):
|
|
|
|
self.pr = cProfile.Profile()
|
|
|
|
self.started = False
|
|
|
|
|
2018-05-07 23:00:20 +00:00
|
|
|
self.resps = 0
|
|
|
|
self.reqs = 0
|
|
|
|
|
|
|
|
def request(self, f):
|
|
|
|
self.reqs += 1
|
|
|
|
|
|
|
|
def response(self, f):
|
|
|
|
self.resps += 1
|
|
|
|
|
2018-04-06 19:48:58 +00:00
|
|
|
async def procs(self):
|
|
|
|
ctx.log.error("starting benchmark")
|
|
|
|
backend = await asyncio.create_subprocess_exec("devd", "-q", "-p", "10001", ".")
|
|
|
|
traf = await asyncio.create_subprocess_exec(
|
|
|
|
"wrk",
|
|
|
|
"-c50",
|
|
|
|
"-d5s",
|
|
|
|
"http://localhost:%s/benchmark.py" % ctx.master.server.address[1],
|
|
|
|
stdout=asyncio.subprocess.PIPE
|
|
|
|
)
|
|
|
|
stdout, _ = await traf.communicate()
|
2019-01-06 14:06:30 +00:00
|
|
|
with open(ctx.options.benchmark_save_path + ".bench", mode="wb") as f:
|
|
|
|
f.write(stdout)
|
2020-11-20 18:25:26 +00:00
|
|
|
ctx.log.error(f"Proxy saw {self.reqs} requests, {self.resps} responses")
|
2018-04-06 19:48:58 +00:00
|
|
|
ctx.log.error(stdout.decode("ascii"))
|
|
|
|
backend.kill()
|
|
|
|
ctx.master.shutdown()
|
|
|
|
|
|
|
|
def load(self, loader):
|
|
|
|
loader.add_option(
|
|
|
|
"benchmark_save_path",
|
|
|
|
str,
|
|
|
|
"/tmp/profile",
|
|
|
|
"Destination for the .prof and and .bench result files"
|
|
|
|
)
|
|
|
|
ctx.options.update(
|
|
|
|
mode="reverse:http://devd.io:10001",
|
|
|
|
)
|
|
|
|
self.pr.enable()
|
|
|
|
|
|
|
|
def running(self):
|
|
|
|
if not self.started:
|
|
|
|
self.started = True
|
2022-03-15 17:33:46 +00:00
|
|
|
asyncio.get_running_loop().create_task(self.procs())
|
2018-04-06 19:48:58 +00:00
|
|
|
|
|
|
|
def done(self):
|
|
|
|
self.pr.dump_stats(ctx.options.benchmark_save_path + ".prof")
|
|
|
|
|
|
|
|
|
2022-03-15 17:33:46 +00:00
|
|
|
addons = [Benchmark()]
|