No third-party packages. Only Python logging module.
Just paste the code on the left into your Python app and log whatever you need with ease.
import logging
from logging.handlers import HTTPHandler
logger = logging.getLogger(__name__)
https_handler = HTTPHandler(
host='logger.host',
url='/handler/' + API_TOKEN,
method='POST',
secure=True
)
logger.setLevel(logging.DEBUG)
logger.addHandler(http_handler)
logger.error('Hello Error!')
All logs will be accessible through your dashboard. You can search and filter them as you need.
If you haven’t worked with Python logging before, below we put a list of useful links about the module:
Read about advanced installation
import logging
from logging.handlers import HTTPHandler
logger = logging.getLogger(__name__)
https_handler = HTTPHandler(
host='logger.host',
url='/handler/' + API_TOKEN,
method='POST',
secure=True
)
logger.setLevel(logging.DEBUG)
logger.addHandler(http_handler)
logger.error('Hello Error!')
We have a bunch of cool features, some of them we have placed below
All your records are available in a minimalistic and user-friendly dashboard.
You don't have to worry about archiving records. We do this automatically.
We believe that basic features should be free for everyone. And only additional functions are paid.
Collecting log data is only part of the task. We provide a convenient way to analyze your records.
You own your data. It is accessible only by you and team members you decided to share access with.
Don't garbage your project with third-party modules. Our project is using native Python logging.
Below you can find out what you can get for free and what we offer as additional services.
* Days to keep active records before archiving
Pricing
Just few lines in code will improve your whole project