Log rotation in pure javascript for node
logrotator for egg
logrotator for egg
logrotator for nodinx
logrotator for egg
Lightweight Node.js JSON log rotation library with flat and grouped logging support. Automatically rotates log files by entry count or time interval.
Winston rotate the file based on datepattern and limit the file size to rotate
[![NPM version][npm-image]][npm-url] [![build status][travis-image]][travis-url] [![Test coverage][codecov-image]][codecov-url] [![David deps][david-image]][david-url] [![Known Vulnerabilities][snyk-image]][snyk-url] [![npm download][download-image]][down
No description provided.
No description provided.
No description provided.
Easily rotate log files the way you want to
No description provided.
Log Rotator Package
Cli tool for rotating / archiving files within specified directory.
tracing logfile writer with rotation and expiry
Event driven logrotate implementation
Log rotation for files
Please see 'file-rotate' instead. ( This is a fork with changes needed by Polyverse until the upstream PR has been marged. https://github.com/BourgondAries/file-rotate/pull/3
Log rotation for files, supports synchronous std API and an asynchronous tokio-based API.
Logup is a UNIX-style command that can be used to pipe stdout logs to location on disk or in the cloud without the need of an agent, logrotate, systemd or other configuration files
Stores, rotates, compresses process logs.
Stores, rotates, compresses process logs.
Log rotation for files
A thread-safe rotating file with customizable rotation behavior.
Sticky file handles to file paths
Logrotate integration for Capistrano.
Logrotate features to use with mina
Capistrano recipies for DB Syncing, Logrotate, Apache, Thin, Basecamp, Activecollab, Monit, NodeJS, Nginx
More modern alternative to classical 'logrotate' tool with more features and less limitations. It implements very similar functionality, features openness and flexibility of the scripting environment and removes some most known 'logrotate' limitations.
Watch files safely from within Ractors with support for rotation (inode detection).
Amazon S3 file uploader that can build folder structures based on timestamp. Typically used in conjunction with Unix's logrotate.
Capistrano recipes useful for rails app deployment. Includes repices for nginx, unicorn, postgres, logrotate, resque
This package is a library of methods that perform log rotation on files and directories. The log rotate methods allow the caller to specify options (via parameters) such as how many rotated files to keep, what type of extension to place on the rotated file (date or a simple count), and whether to zip the rotated files. Live log files (currently being written to by a live process) can be rotated as well. The post_rotate option is useful in that context, as it can be used to send a HUP signal to notify the live process to reopen its log file. This package was inspired by the need to have a library version of the unix logrotate tool. The unix logrotate tool requires the user to specify options in a config file, and is usually invoked through cron. Directories can be rotated with this library. However, the gzip option does not work with directories. In this case, please zip/tar the directory in question before invoking this library.
This gem provides an IO like object, that can be used with any logging class (such as Ruby's native Logger). This object will save its input to a file, and allows: rotation by time / date, compression of old files and removal of old compressed files. Its purpuse is to supplement logging classes, allowing everything related to logging management, to be done within Ruby, without relying on external tools (such as logrotate).