Skip to main content

Print an unseen tailing part of a log file

Project description

Cutthelog is a Python module and command-line tool to print an unseen tailing part of a log file.

The documentation of the module is available in the code (import to readthedocs in progress). You can find the tool documentation below.

On each execution, the tool saves an offset and value of the last line of a file in a cache. On the next reading of the same file, it jumps to that offset and checks the last line value. If the check passed the tool prints file content from the current position. If the check failed the tool prints the file from the beginning.

Here is a demo:

$ echo -e "one\ntwo\nthree" > example
$ cutthelog example
one
two
three
$ cutthelog example
$ echo -e "four\nfive\nsix" >> example
$ cutthelog example
four
five
six
$ cutthelog example
$ echo -e "seven\neight\nnine\nten\neleven\ntwelve" > example
$ cutthelog example
seven
eight
nine
ten
eleven
twelve

The tool requires only Python 2 or Python 3 interpreter of almost any version (by default using Python 3) and its standard libraries. All the code is located in the single file.

By default, the cache is stored in the user’s home folder with the name .cutthelog. If the home folder is unavailable the tool creates the cache in the working directory. You can specify the cache path by the -c/--cache-file option.

Installation

From PyPI:

$ sudo pip install cutthelog

or just download the tool file from github, make it executable and move it to the proper bin folder e.g.

$ chmod +x cutthelog.py; sudo mv cutthelog.py /usr/local/bin/cutthelog

Usage

In most cases it’s enough to pass a logfile path:

$ cutthelog /var/log/syslog

You can apply the tool to check the rate of some kinds of log messages:

  1. First, you should save the current log position to the cache by command

$ sudo -u syslog cutthelog /var/log/syslog > /dev/null
  1. Then you should create a cron job something like

MAILTO="admin@example.org"

*/10 * * * * syslog [ $(cutthelog /var/log/syslog | grep 'error' | wc -l) -gt 3 ] && echo "Too many errors"
  1. To process rotated logs more accurately you should add similar command as a pre-rotate script.

To see all available options you should use the -h/--help option:

$ cutthelog --help

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

cutthelog-0.9.1.tar.gz (6.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

cutthelog-0.9.1-py3-none-any.whl (7.0 kB view details)

Uploaded Python 3

File details

Details for the file cutthelog-0.9.1.tar.gz.

File metadata

  • Download URL: cutthelog-0.9.1.tar.gz
  • Upload date:
  • Size: 6.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.10

File hashes

Hashes for cutthelog-0.9.1.tar.gz
Algorithm Hash digest
SHA256 86ed2474eda99e7e888dcb1353fcfc3348b0a4bad53513077fc8d9aeaffebeef
MD5 806b5cc7bfcaa433a9950bf1a84181d0
BLAKE2b-256 f005539b9ce1ea1aa84c4cd5b1cf6e96ccaaa3d260e4043e64109678c459665a

See more details on using hashes here.

File details

Details for the file cutthelog-0.9.1-py3-none-any.whl.

File metadata

  • Download URL: cutthelog-0.9.1-py3-none-any.whl
  • Upload date:
  • Size: 7.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.10

File hashes

Hashes for cutthelog-0.9.1-py3-none-any.whl
Algorithm Hash digest
SHA256 69f77aeede5caf80f286c5e42bd601fac450401aeb9a3a07765e5ff458dda78f
MD5 c294cf84e99c2d4dbfa5fb3d269b3eb0
BLAKE2b-256 41ca923b5516c12267badd6ebf1d14065fc4cfb0061ff455b4cd4de232955aaa

See more details on using hashes here.

Supported by

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