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

monitoring-utils

v1.0.2

Published

monitoring module for NestJS that includes Healthcheck and Logger services.

Downloads

207

Readme

NestJS Monitoring Utils - Healthcheck & Logger

Esta biblioteca foi desenvolvida para fornecer componentes reutilizáveis para microsserviços em NestJS, focando em dois aspectos essenciais: Healthcheck (verificação de saúde dos serviços) e Logger (sistema de log). A biblioteca é modular, permitindo a fácil integração desses componentes em diferentes microsserviços, promovendo consistência e eficiência no desenvolvimento.

Índice

Configuração

Healthcheck

O módulo Healthcheck fornece um endpoint para monitorar a saúde dos serviços utilizados no sistema.

Configuração do Módulo

  1. Importe o HealthcheckModule no seu módulo principal do microsserviço:
import { Module } from "@nestjs/common";
import { HealthcheckModule } from "nestjs-microservices-lib";

@Module({
  imports: [HealthcheckModule],
})
export class AppModule {}
  1. Implemente o controller para expor o endpoint /health:
import { Controller, Get, HttpCode } from "@nestjs/common";
import { ApiOperation, ApiResponse, ApiTags } from "@nestjs/swagger";
import { HealthcheckService } from "../services/healthcheck.service";

@ApiTags("healthcheck")
@Controller("healthcheck")
export class HealthcheckController {
  constructor(private readonly healthcheckService: HealthcheckService) {}

  @Get()
  @HttpCode(200)
  @ApiOperation({ summary: "Get status if Server is OK" })
  @ApiResponse({ status: 200, description: "ok" })
  @ApiResponse({ status: 500, description: "Internal server error" })
  async status(): Promise<any> {
    const status = await this.healthcheckService.status();
    return {
      status: status,
      message: 'Application is running smoothly',
      timestamp: new Date().toISOString(),
    };
  }
}

Configuração do Serviço

O serviço HealthcheckService é responsável por recuperar as informações de configuração e status dos serviços:

import { Injectable } from "@nestjs/common";
import { ConfigService } from "@nestjs/config";

@Injectable()
export class HealthcheckService {
  constructor(private configService: ConfigService) {}

  status(): any {
    return {
      appName: this.configService.get("app.name"),
      appVersion: this.configService.get("app.version"),
    };
  }
}

Exemplo de Resposta

A resposta do endpoint /healthcheck pode ser:

{
  "status": {
    "appName": "my-service",
    "appVersion": "1.0.0",
  },
  "message": "Application is running smoothly",
  "timestamp": "2024-10-10T14:00:00Z"
}
  • 200 OK: O serviço está em execução normal.
  • 503 Service Unavailable: O serviço está indisponível.

Logger

O módulo Logger padroniza e facilita a geração de logs, permitindo integração com ferramentas como ELK Stack, Datadog, entre outras.

Configuração do Módulo

  1. Importe o LoggerModule no seu microsserviço:
import { Module } from "@nestjs/common";
import { LoggerModule } from "nestjs-microservices-lib";

@Module({
  imports: [LoggerModule],
})
export class AppModule {}
  1. Utilize o LoggerService para registrar logs no seu serviço ou controladores:
import { LoggerService } from "nestjs-microservices-lib";

@Injectable()
export class ExampleService {
  constructor(private readonly logger: LoggerService) {}

  someFunction() {
    this.logger.info("This is an info log message.");
  }
}

Níveis de Log

O Logger suporta os seguintes níveis de log:

  • INFO: Para informações gerais.
  • WARN: Para alertas.
  • ERROR: Para erros.
  • DEBUG: Para informações de depuração.
  • VERBOSE: Para mensagens detalhadas.

Exemplo de Log

{
  "timestamp": "2024-10-10T14:00:00Z",
  "level": "INFO",
  "message": "This is an info log message",
  "context": "ExampleService",
  "correlationId": "abc123"
}

Boas Práticas

  • Adicione verificações de saúde facilmente configuráveis no Healthcheck para garantir que os serviços estão funcionando corretamente.
  • Use o Logger para manter a consistência dos logs em diferentes microsserviços e facilitar o monitoramento e depuração.
  • Utilize os níveis de log apropriados (INFO, WARN, ERROR, etc.) para diferenciar a criticidade dos eventos registrados.

Testes

A biblioteca vem com testes unitários para garantir o comportamento correto dos módulos.

Para rodar os testes:

npm run test

Versionamento

Este projeto segue o padrão de versionamento SemVer.

  • Versão 1.0.0: Onde 1 representa uma versão principal com mudanças que podem quebrar compatibilidade, 0 são novas funcionalidades que não quebram compatibilidade, e 0 para correções de bugs.

Contribuição

Contribuições são bem-vindas! Por favor, envie um Pull Request ou abra uma Issue no repositório GitHub.