npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

logloglog

v1.0.1

Published

Simplistic logger with metadata support, outputting JSONlines to stdout. Focused on containerized and serverless environments.

Downloads

3

Readme

logloglog

Simplistic stdout JSON logger for serverless and dockerized environments with metadata logging in mind. Focuses on delivering the logs with enough metadata, to the host to parse and ship. Metadata fields are typecasted by default, which will reduce some ELK mapping headachess.

Turn on readable logging for development purposes by passing NODE_ENV=development and you'll see only messages. DEBUG=true enables JSON output as well.

Configuration

const logloglog = require('logloglog');
logloglog.config.timestamp = false; // disable timestamp fields
logloglog.config.timestamp = 'my-timestamp'; // customize timestamp field name
logloglog.config.typecast = false; // disable typecasting of fields

Examples

const { getLogger } = require('logloglog'); 
const logger = getLogger('my-logger');

logger.info('My first message');

const foo = 'baa';
logger.info('My message with variables', foo, '. Fun right!');
/*
{
  "@timestamp":"2018-11-02T20:08:49.160Z",
  "message": "My message with variables baa . Fun right!",
  "logger_name": "my-logger",
  "level": "info"
}
*/

const err = new Error('nasty error!');
logger.warn('Something nasty happened', err);
/*
{
  "@timestamp":"2018-11-02T20:08:49.160Z",
  "message": "Something nasty happened (Error: nasty error!)",
  "logger_name": "my-logger",
  "level": "warn",
  "error__object": {
    "message__string": "nasty error!",
    "stack__string": "Error: nasty error!\n    at Object.<anonymous> (/home/joona/github/logloglog/example.js:9:13)\n    at Module._compile (module.js:652:30)\n    at Object.Module._extensions..js (module.js:663:10)\n    at Module.load (module.js:565:32)\n    at tryModuleLoad (module.js:505:12)\n    at Function.Module._load (module.js:497:3)\n    at Function.Module.runMain (module.js:693:10)\n    at startup (bootstrap_node.js:188:16)\n    at bootstrap_node.js:609:3",
    "full_message__string": "Error: nasty error!"
  }
}
*/

const metadata = {
  foo: 'baa',
  number: 1,
  arr: ['a', 'b', 'c'],
  stuff: {
    works: true
  }
};
logger.info('Also logs meaningful metadata', metadata);
/*
{
  "@timestamp":"2018-11-02T20:08:49.160Z",
  "message": "Also logs meaningful metadata",
  "logger_name": "my-logger",
  "level": "info",
  "foo__string": "baa",
  "number__number": 1,
  "arr__array": [
    "a",
    "b",
    "c"
  ],
  "stuff__object": {
    "works__boolean": true
  }
}
*/

const context = {
  user_id: 'foo-1',
  request_id: 1337,
  url: '/cool',
}

// NOTE: MDC fields are not typecasted!
const contextual = logger.update(context);
contextual.log('Look ma, I can do MDC too!', { noice: { watch: 'https://www.youtube.com/watch?v=UBX8MWYel3s' }});
/*
{
  "@timestamp":"2018-11-02T20:08:49.160Z",
  "user_id": "foo-1",
  "url": "/cool",
  "request_id": 1337,
  "message": "Look ma, I can do MDC too!",
  "logger_name": "my-logger",
  "level": "info",
  "noice__object": {
    "watch__string": "https://www.youtube.com/watch?v=UBX8MWYel3s"
  }
}
*/

logger.info('Nice, right?');
// { "@timestamp":"2018-11-02T20:08:49.160Z", "message":"Nice, right?","logger_name":"my-logger","level":"info"}

const another = getLogger('another', {
  environment: 'production',
});

another.debug('Also with static fields');
/*
{
  "environment": "production",
  "message": "Also with static fields",
  "logger_name": "another",
  "level": "debug",
  "@timestamp": "2018-11-02T20:09:42.974Z"
}
*/

const logloglog = require('logloglog');
logloglog.config.timestamp = 'mytimestampfield';
logloglog.config.typecast = false;

const yetAnother = getLogger('configured-logger');
yetAnother.log('Custom timestamp field and typecasting disabled', {
  bool: false,
  str: 'beware picky ELK mappings!',
  arr: [1, 2, 3]
});
/*
{
  "message": "Custom timestamp field and typecasting disabled",
  "logger_name": "configured-logger",
  "level": "info",
  "mytimestampfield": "2018-11-02T20:13:12.517Z",
  "bool": false,
  "str": "beware picky ELK mappings!",
  "arr": [
    1,
    2,
    3
  ]
}
*/