Skip to main content

logging stream server written on gevent

Project description

logging server written on gevent

Run log server:

from netlog import Server
Server('./logs', 5010).start()

If you don’t need blocking in .start() line:

Server('./logs', 5010).start(blocking=False)

Simple way to run as daemon:

python -c "import netlog; netlog.Server('./logs', 5010').start()" &

Usage from clients:

from netlog import Client
client = Client('127.0.0.1', 5010, 'logname')
client.send('qwe asd')
client.send('ert\n dfg')    # may be multiline
client.close()              # or del client

Features:

  • put to one log file from many client processes

  • save in binary format .tar.gz, use zcat and zgrep for read

  • unlimited size of log string

  • rotation by date

  • automatic delete old logs

TODO:

  • realize rotator :)

  • fetch Ctrl+C and -9 signals for flush before exit

  • udp transfer (maybe, only after v1.0)

  • implement logging.handlers.SocketHandler protocol (maybe, only after v1.0)

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

netlog-0.5.5.tar.gz (2.8 kB view details)

Uploaded Source

File details

Details for the file netlog-0.5.5.tar.gz.

File metadata

  • Download URL: netlog-0.5.5.tar.gz
  • Upload date:
  • Size: 2.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for netlog-0.5.5.tar.gz
Algorithm Hash digest
SHA256 fddaf076c13f8338e0330629f63938ab3a189a3d785a2ff2536fc363298e0ceb
MD5 1fd384771ecf17259c1f9100128b25b2
BLAKE2b-256 dd34f78ee51b96ea917796b770b910ef83d3b841c27acc1b19ddfb1688d28119

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page