Giter Club home page Giter Club logo

sprinting-retail-common's Introduction

Sprinting Retail Comon

Introduction

This library provides:
  • Error handling
  • Logging to ELK - both logs and APM

Check out the RELEASE_LETTERS here

Setup

  1. Install in your project
$ npm i sprinting-retail-common
  1. Add CommonAppModule to your AppModule using forRoot to pass config which must implement the RetailCommonConfig interface.
import { CommonAppModule } from "sprinting-retail-common"
...
const config: RetailCommonConfig = {
    ...assign config properties from your AppConfig...
}
...
@Module(
  {
    imports: [
      CommonAppModule.forRoot(config),
      ...
    ],
    ...
  }
)
export class AppModule {}

Using the LoggerService

Once you have imported CommonAppModule in your AppModule, the LoggerService with be provided globally.

This means you can inject the LoggerService in the constructor of your controllers or providers like here: With this you can log messages, events and errors as shown below.

export class DevSupportController {
    constructor(private readonly logger: LoggerService) { }

    @Get("trigger-logs") async triggerLogs()
    {
      const contextData = { a: 1, b: 2 }
      const sharedContext: ICommonLogContext = { client: { name: "Bifrost" }, tenantId: 100 }
      this.logger.info(__filename, "my message info", contextData, )
      this.logger.debug(__filename, "my message info", contextData)
      this.logger.warn(__filename, "my message info", contextData)
      this.logger.logError(new Exception("SomeError", "Some description", contextData, innerError))
      this.logger.event(__fileName, "SomeEvent", { someKey: "someValue" }, "SomeCategory")
    }
}

Please notice:

  • You have three normal log methods: info, debug and warn, each taking a message and contextData. ContextData will be serialized and concatenated to the message field in ELK.
  • You have a special method logError for error handling. You have to create an AppException or one of the derived classes to invoke it.
  • You have a special method event for logging custom events. You have to pass an eventName, eventData and eventCategory.

Using the error classes

You should preferably use the following error classes for error handling:

  • Exception is a custom exception class which extends Error. You need to provide a http status for this exception.
  • ServerException is a custom exception class which extends Exception, use it for internal server errors. It has http status 500.
  • ClientException is a custom exception class which extends Exception, use it for errors that you assume to be caused by the clients calling your API. It has http status 400

We have these additional exception classes for special occasions:

  • CustomBadRequestException
  • SecurityException

If needed you can create your own exception classes by extending the AppException class - although it should not be necessary under normal circumstances.

The logError function will both log the error as part of application logs and at the same time send the error to APM

    this.logger.logError(new ForbiddenException('Access denied'), {});

Appendix

For the sending logs the module using Logstash UDP transport. To test if udp port is responding, use netcat.

$ nc -v -u -z -w 3 10.0.0.xxx 5xxx

sprinting-retail-common's People

Contributors

eduardaleksanyan avatar goran-blazin avatar nairi-abgaryan avatar nikolaschou avatar umrbrwn avatar vpavlovi avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

sprinting-retail-common's Issues

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.