Code Monkey home page Code Monkey logo

Comments (8)

rogerc avatar rogerc commented on June 14, 2024 2

version with log deletion option has been published to npm - [email protected]

https://www.npmjs.com/package/file-stream-rotator

from file-stream-rotator.

jrpomeroy avatar jrpomeroy commented on June 14, 2024

A log file retention policy is something I really wish this had. I'm using it for now but still looking for alternatives.

from file-stream-rotator.

rogerc avatar rogerc commented on June 14, 2024

The goal for this module is to be as light as possible while performing the core function of rotating logs effectively. Log retention policy can be quite complex and resource heavy depending on what is required (compression, parsing, pushing to AWS/other,etc). For now, to support this I've added the on.rotate and on.new events to handle log management as required.

For log management, it's best to do it in the quiet periods and by a scheduler to guarantee that it will happen. I'd rather not add setInterval or any other "background" task that could affect the performance of the main application.

from file-stream-rotator.

jonerer avatar jonerer commented on June 14, 2024

I'm really looking for this too. Just a feature to say "maximum 10 log files" would be enough.

from file-stream-rotator.

rogerc avatar rogerc commented on June 14, 2024

I've added a clean-up option. Not published yet. To avoid doing a directory listing on a path containing thousands of files, it keeps track of the files it has created and will only delete the files in the audit log. This also reduces the chances of deleting the wrong files. I will publish it on tomorrow/Monday

from file-stream-rotator.

rogerc avatar rogerc commented on June 14, 2024

Examples below as found in the README.

    // Rotate on the hour or any specified number of hours and keep 10 files
    var rotatingLogStream = require('file-stream-rotator').getStream({filename:"/tmp/test.log", frequency:"1h", verbose: false, max_logs: 10});

    // Rotate on the hour or any specified number of hours and keep 10 days
    var rotatingLogStream = require('file-stream-rotator').getStream({filename:"/tmp/test.log", frequency:"1h", verbose: false, max_logs: "10d"});

    // Rotate on the hour or any specified number of hours and keep 10 days and store the audit file in /tmp/log-audit.json
    var rotatingLogStream = require('file-stream-rotator').getStream({filename:"/tmp/test.log", frequency:"1h", verbose: false, max_logs: "10d", audit_file: "/tmp/log-audit.json"});

from file-stream-rotator.

jonerer avatar jonerer commented on June 14, 2024

That sounds cool!
When you say "it keepst rack of the files it has created", do you mean in memory or between restarts as well?

from file-stream-rotator.

rogerc avatar rogerc commented on June 14, 2024

They get written to a file with a default location of the root folder of the static part of where the logs are written. By that I mean that if the path contains a %DATE% placeholder, it will be in the directory preceding that, e.g. /tmp/logs/%DATE%/server.log, it will store the audit file in /tmp/logs/.audit.json. The name and path can be changed through configuration.

By writing them to a file, as you mention, it will handle application restarts/crashes and continue where it left off.

The implementation I think should have little impact on performance of the host application as unlinking a defined file should be almost instant in most OS.

from file-stream-rotator.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.