Honeycomb is the observability tool we use everyday at Buser. They help us tracking application bottlenecks, slow database queries, slow requests, requests with too many queries and much more.
Their automatic instrumentation with beeline is a good start, but at some point we had to extend the default behaviour.
Python has awesome tools for logging, including standard logging module. Also, through WSGI protocol we have the wsgilog middleware. Using it is easy with any Python web framework.
You can easily integrate it in bottle environment.
If you develop a Chrome Extension, you should know that. Some days ago, I received a scary red warning during development of FunBlocker Chrome Extension.
No problem, I can just follow the rules defined in Chrome Extensions Manifest Version and migrate my manifest to get rid of this warning. I …
First of all, you must know bottle and Google App Engine. Both are awesome tools to any web project. They together make both even easier to use. This integration is easy but isn't too much documented.
Add bottle.py to your source folder and create a helloworld.py file with …