architect-fastify-access-log

provide access logs to architect fastify application using fastify hooks


Keywords
architect, access, log, rest, fastify
License
Apache-2.0
Install
npm install architect-fastify-access-log@1.0.0

Documentation

architect-fastify-access-log

Access logger for architect fastify

Installation

npm install --save architect-fastify-access-log

Usage

Boot Architect :

var path = require('path');
var architect = require("architect");

var config = architect.loadConfig(path.join(__dirname, "config.js"));

architect.createApp(config, function (err, app) {
    if (err) {
        throw err;
    }
    console.log("app ready");
});

Configure logging with Architect config.js :

module.exports = [{
    packagePath: "architect-access-log",
    fmt: 'url=":url" method=":method" statusCode=":statusCode" delta=":delta" ip=":ip"'
}, './services'];