Skip to content

dahlia/loglet

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

49 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Loglet

Loglet is a tiny tool for keeping tabs on long-running processes. Send log messages to Loglet using a simple POST request and then view them in your browser or subscribe to an Atom feed.

Head over to the site and create a new log. Then send POST requests to add messages:

curl -d message=hello http://loglet.radbox.org/LOGID

Or use the included Python logging handler to hook into your existing logs:

import logging
import loglet
log = logging.getLogger('mylog')
log.addHandler(loglet.LogletHandler('LOGID'))
log.error('something horrible has happened')

About

Loglet is by Adrian Sampson (@samps) and depends on Python, Flask, and SQLite. It includes the Bootstrap compiled CSS framework.

The code is made available under the MIT license.

About

send log messages to the web

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 95.4%
  • Shell 4.6%