Python log viewer application

I want to have a GUI application or a web application where I can view the python log information. I can choose any formatter. But it should work with a standard logging module.

I installed my logs in a file. But I wanted the log to be stored in mysql db (this is possible), but I really need a user interface to view the log from a remote place.

Any recommended tool or approach?

+3
source share
2 answers

You can write a database handler for registration, as in this example, using any database interface compatible with Python DB-API 2.0. Then, of course, you can view the logs using any medium that allows you to receive and display data over the Internet.

Or you can use the log4j Chainsaw GUI using the approach described here . Here is a screenshot:

alt text
(source: pylonshq.com )

Just two approaches - no doubt many others.

+2
source

vsConsole FileView allows you to view server logs through a web application. Check out the demo and see if it suits your needs:

http://demo.vamonossoftware.com/

0
source

Source: https://habr.com/ru/post/1730918/


All Articles