Skip to main content

File system access monitoring daemon

Project description

pyflogd is a monitoring tool to support you when tracking down potential file system bottlenecks. It uses the inotify kernel API.

pyflogd uses a dev-friendly JSON output format. Every line will contain one JSON object with a type and a path property. You can parse the lines and analyse which files are accessed and written the most.

Requirements

  • daemon

  • docopt

  • hashlib

  • json

  • lockfile

  • pyinotify

  • schema

  • signal

Notes on using pyflogd on Ubuntu

When pyinotify is installed via apt you will get an old version that has a known bug regarding recursive watching. When using this version it is not possible to track files and folders in folders that are created after pyflogd has started. To solve this, you can run pip install --upgrade pyinotify.

Python 3 compatibility

pyflogd depends on python-daemon which is currently not compatible with Python 3. Running pyflogd as daemon will not work without this, but the run command should work just fine.

Installation

To install pyflog run the following commands:

git clone https://github.com/mkzero/pyflogd
python2 setup.py install

After that you should be able to use the pyflod command from you commandline.

Usage

Usage:
 pyflogd run [-f | --only-files] [-r | --recursive] [-o <file> | --outfile=<file>] <folder> ...
 pyflogd start [-f | --only-files] [-r | --recursive] [-o <file> | --outfile=<file>] <folder> ...
 pyflogd stop <folder> ...
 pyflogd -h | --help
 pyflogd -v | --version

Options:
 -h --help                 Show this screen
 -v --version              Show version
 -r --recursive            Watch a folder recursivly
 -f --only-files           Don't report events for folders
 -o FILE --outfile=FILE    Write to file instead of stdout

run

The run command starts pyflogd in foreground and outputs events to stdout when no outfile is supplied.

Example:

pyflogd run --outfile=/tmp/pyflogd.log --recursive /path/to/folder1 \
           /path/to/folder2 /path/to/folder3

start/stop

The start command starts a pyflogd daemon in the background and outputs events to the supplied outfile. To stop the daemon use the same folders as for the start command and omit all other options like outfile or recursive.

Example:

pyflogd start --outfile=/tmp/pyflogd.log --recursive /path/to/folder1 \
           /path/to/folder2 /path/to/folder3

pyflogd stop /path/to/folder1 /path/to/folder2 /path/to/folder3

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

pyflogd-0.1.1.tar.gz (3.6 kB view hashes)

Uploaded Source

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