- Notifications
You must be signed in to change notification settings - Fork7
A lightweight application environment checker
License
humangeo/preflyt
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
A lightweight application environment checker.
Python 3 only. The future is now.
To use Preflyt, install itpip install preflyt
, and then invoke it:
importpreflytok,results=preflyt.check([# Assert the presence and value of the $APP_ENV environment variable {"checker":"env","name":"APP_ENV","value":"production"},# Assert that a file at the given path exists {"checker":"file","path":DATA_FILE},])ifok:print("Preflyt checks passed.")run()else:print("Preflyt checks failed!")forresultinresults:ifnotresult["success"]:print("{checker[checker]}: {message}".format(**result))
Out of the box, the following checkers are available.
Name | Description | Args |
---|---|---|
env | Check environment state |
|
es | Check Elasticsearch state |
|
dir | Check directory state |
|
file | Check file state |
|
psql | Check PostgreSQL state |
|
sqlite | Check SQLite3 state |
|
web | Check web service state |
|
Future versions of Preflyt will add additional default checkers while allowing third parties to ship their own.
You know what sucks? Kicking off a long running data ingestion/processing task only to discover, near the end, that an external dependency (e.g. webservice, binary) is missing or otherwise inaccessible. "I know what I'll do!" you, the frustrated programmer, exclaims. Choose your own adventure:
"I'm going to manually verify things are as they should be before I kick off the task."
Congratulations, you just played yourself. Not only do you run the risk of forgetting a checklist item, but now you have to enforce this practice within your team.
"I'm going to programatically check things on script start."
Getting warm! Hopefully your solution is configuration driven. Even then, what are the odds you wind up with this boilerplate across your scripts?
# settings.pyifenv_name=="production":ES_HOST="http://example.com"POSTGRES_HOST="10.0.1.120"ENABLE_DATA_DIR_CHECK=Trueelse:ES_HOST="localhost:9200"POSTGRES_HOST="localhost"ENABLE_DATA_DIR_CHECK=FalseDATA_DIR="/mnt/data/dir"DATA_FILE="/mnt/data/dir/metadata.json"POSTGRES_PORT=5432# run.pyifnotrequests.get(settings.ES_HOST).status_ok:#Now you've got a requests dependencyprint("Elasticsearch is unreachable.")sys.exit(1)ifsettings.ENABLE_DATA_DIR_CHECKandnotos.path.exists(settings.DATA_DIR):# Whoops, should have used `isdir`print("Can't access: ",settings.DATA_DIR)sys.exit(1)ifnotos.path.exists(settings.DATA_FILE):# Whoops, should have used `isfile`print("Can't access: ",settings.DATA_FILE)sys.exit(1)try:postgres.connect(settings.POSTGRES_HOST,settings.POSTGRES_PORT)exceptExceptionasexe:print(exe)sys.exit(1)
And so forth. You've now got a crazy-long series of if statements in your code, and changing the checks is a code change, not a configuration change. Also, you've generated boilerplate that should be abstracted and reused.
"I'm going to programatically check things on script start... with Preflyt!"
Bingo. That ugly series of code above?
# settings.pyCHECKS= [ {"checker":"web","url":ES_HOST}, {"checker":"psql","host":POSTGRES_HOST,"port":POSTGRES_PORT}, {"checker":"file","path":DATA_FILE},]ifENVNAME=="production":CHECKS.append({"checker":"dir","path":DATA_DIR})# run.pyimportpreflytok,results=preflyt.check(settings.CHECKS)ifnotok:print([resultforresultinresultsifnotresult["success"]])sys.exit(1)
Now all the checks you're performing are defined in configuration, and no boilerplate!
Additional checkers are more than welcome! The goal is to keep this package free of dependencies, so cleverness is appreciated :-)
Please write tests for whatever checkers you wish to submit. Preflyt uses nose. Development packages can be installed viapip install -e .[test]
, and tests can be run vianosetests .
.
MIT, Copyright (c) 2016 The HumanGeo Group, LLC. See the LICENSE file for more information.
About
A lightweight application environment checker