Skip to content

mratanusarkar/NodeJS-Logging-Mechanism

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NodeJS-Logging-Mechanism

Aim to develop a logging framework for node js applications using winston

log object

The module exports a log object that will take care of the logging mechanism, built on top of Winston.

Note: Log Levels available (as per RFC5424) are:

  1. error
  2. warn
  3. info
  4. http
  5. verbose
  6. debug
  7. silly

You can also pass an object along with the log data in the end, that will act as a metadata. a sample object format: { category: '<enter-category>', subcategory: '<enter-subcategory>' }

Example 1:

const logger = require('../logger/logger');
logger.log.info(`my info message with some data: ${data}`, { category: 'file locator', subcategory: 'code block locator' });

Example 2:

import { log } from '../logger/logger';
try {
  // some code
}
catch (err) {
  log.error(err, { category: 'file locator', subcategory: 'code block locator' });
}

Along with the log data generated from the system or codebase (messages for all log levels, and error stack + message for error log level), we also have some metadata to help identify the source of the logs.

The metadatas available are listed below:

  • project: name of the project
  • repo: the repo where the code resides
  • type: what type of repo it is? backend? frontend? cloud app?
  • location: where is the repo hosted?
  • timestamp: the time when this log was generated
  • level: what kind of log it is? info? error? etc... (RFC5424)
  • category: the category this log belongs to (maybe file name or similar)
  • subcategory: division of category (maybe line no, fn name, or logic - reference)
  • message: the actual error message
  • stack: if error, full error stack trace

About Logging Mechanism

This project was inspired from the talk "Everything You Wanted to Know About Logging" by Charlie Robbins

I have broken down the logging mechanism into 5 acts. (similar to what is there in the talk, but not exactly the same)

They are:

Act I - Log Levels & Log Format

decide on the log levels to be used in the logging framework, and decide on the format in which the log data would be generated by the logging framework.

  • use log levels as per the guidelines of RFC5424
  • have 7 log levels in this logging framework as described above
  • have metadata and category and subcategory data with each log data as described above

Act II - Log Transport & Log Rotate

have a log transport (to file or to the console), and a log rotate feature.

  • save the log data in the log files as JSON format
  • output the log data in the console as string in the format:

[timestamp] (log-level): repo-name > category > subcategory - message
if the log-level is error, then after this line, a full error stack trace would also be printed.

  • have a process to rotate the logs on the basis of date, time, frequency, memory or space, etc
  • have archival and removal options for old log data

Act III - Stream & Transfer

so, now that we have the logs in the code instance, we have to have a mechanism transfer and ship the log data outside. Maybe you want the log files to be dumped into your local machine? or into a database? or say to some cloud drive? or say Azure BLOB storage or AWS S3, ... etc

TODO

(work in progress)

Act IV - Collect & Combine the Logs

In scenarios where your code was running on multiple instances or pods, then the logs would be generated from all the instances, and your full application logs would be split into n number of files, where n=number of instances of your running application.

in such cases, we have to combine and stitch all the logs together, maintaining chronological order

TODO

Act V - Visualize, Filter & Sort, and Mutation

Once all the logs are gathered into one place, we can have a portal or a visulaization tool, where we can view all the logs, search and filter the log data based on all the metadata or some keywords.

We can also apply mutation to the log data, to convert the technical log strings (example error code or log id or number) into a more human understandable words.

Example:

  • HTTP 404 -> resource not found
  • ENOENT -> No such file or directory
  • etc.

TODO

About

Aim to develop a logging framework for node js applications using winston

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published