A simple flask app container for testing out monitoring by generating cpu/memory/errors/latency
Listens on port 3333
Routes:
/ - Generates a hello world reply
/error/<int:number> - Same as /, except there is a 1 in number chance it generates a 418 error
/loop/<int:number> - Same as /, except it loops 1M x number times before completing request
/memory/<int:number> - Same as /, except it tries to create a number MB string in memory before it does so, in increments of 1MB
/slow/<int:number> - Same as /, except it randomally sleeps for up to number ms before completing the request