A logger for python logging outputting to easily viewable (and filterable) html files. Good for people not grep savey, and color higlighting and quickly changing filters might even bye useful for commandline wizards.
Project description
Logscanner
A simple proof of concept rendering python logging as html pages with a gui for quick filtering and analysis. A single html file contains everything (html, css, javascript, logdata) so it is easy to pass along. If the log data should be handled automatically, it is easy to either install an additional handler/formatter or to extract the json from the html file.
Install
pip install logscanner
Filtering
Currently the viewer allows to filter messages out based on the logger and the level of the message.
There are 4 filter settings, in descending priority order:
- show
- hide
- show-weak
- hide-weak
In general the hierarchy is based on a don't hide the smoking gun philosophy, i.e. in case of doubt messages are rather shown than hidden.
If a logger is set to hide-weak, the message will be hidden, unless a parent logger is set to show. Child logger messages will be displayed based on their visibility.
If a logger is set to show-weak, the message will be shown, unless a parent logger is set to hide. Child logger messages will be displayed based on their visibility.
If a logger is set to hide, the message will be hidden, unless a parent logger is set to show. Child logger messages will be hidden, unless they or a parent logger is set to show. Parent logger includes loggers above the logger which is set to hide.
If a logger is set to show, its messages and all the messages of child loggers will be shown.
The usual usage would be to set all loggers to show-weak and remove all messages below a certain sublogger level by setting the topmost logger level below which messages should be hidden to hide.
A word on the name
Original the project was supposed to be called logviewer
but that name was taken on pypi, so here we are until we come up with a better name than logscanner
.
Example usage
The simplest way to use this with pytest is to use the pytest-logscanner plugin (pip install logscanner[pytest]
).
from logscanner import LogviewHandler
import logging
handler = LogviewHandler("your_logfile") # will generate the logfile your_logfile.html in the current directory, once the logger is shutdown.
logging.root.addHandler(handler)
logging.root.setLevel(logging.NOTSET) # allow everything from the root logger
# Optional second handler to output to stderr
streamhandler = logging.StreamHandler()
streamhandler.setLevel(logging.INFO) # Filter on the handler, not on the logger
logging.root.addHandler(streamhandler)
In case you want to use this without the pytest plugin you could create a fixture like this in your conftest.py:
import logging
from collections.abc import Generator
import pytest
from logscanner import LogviewHandler
@pytest.fixture(autouse=True) # , scope="function")
def _setup_logging(request: pytest.FixtureRequest) -> Generator[None, None, None]:
logfile = (
request.path.parent / f"{request.path.name}_{request.function.__name__}.log"
)
# will generate the logfile your_logfile.html in the current directory,
# once the logger is shutdown.
handler = LogviewHandler(
str(logfile),
)
logging.root.addHandler(handler)
# allow everything from the root logger
logging.root.setLevel(logging.NOTSET)
yield
logging.root.removeHandler(handler)
handler.close()
Building
pdm build
Development
: build the html template
cd html
npm install
npm run build
cd ..
: might be useful for working on the template
npx webpack --watch
project structure
in ./html is the source to create a html page with gui elements (css, javascript, fonts, etc.). The page is baked into a single file template using webpack. This file is bundled with a trivial logging formatter (json) and a logging handler which combines the json log and the html template into a single file log.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file logscanner-0.9.3.tar.gz
.
File metadata
- Download URL: logscanner-0.9.3.tar.gz
- Upload date:
- Size: 60.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8cd30829bbcac486fb7a1ceb297471c6e69db45653ccfff7d3909cd6fc054b0a |
|
MD5 | e9568f8ba4fbd7a68a366f689bc03995 |
|
BLAKE2b-256 | 5ed5f6fd0b4ab26e9d67fcf3912f34ccf2605fca8fbaea5429a20f442adf093c |
File details
Details for the file logscanner-0.9.3-py3-none-any.whl
.
File metadata
- Download URL: logscanner-0.9.3-py3-none-any.whl
- Upload date:
- Size: 38.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 392a8dc2b879e13cdd6eca5a19a473c188467dec5f25dcc15bdc971aa6765628 |
|
MD5 | 0d3df055bace33f8662343bff7764403 |
|
BLAKE2b-256 | 0cafc33ccac2f176fe134065b3d330ce7c013e5047add7a5bf303fcd1fd9130d |