UNPKG

@starbemtech/star-node-stack-helper

Version:

A helper library for Node.js applications that provides utilities for AWS Secrets Manager integration and Elasticsearch/OpenSearch logging with enterprise-grade features.

40 lines (34 loc) 1.33 kB
import { ExecutionContext, ArgumentsHost } from '@nestjs/common' export interface NestJSLogContext { method: string className: string executionTime?: number userId?: string requestId?: string [key: string]: unknown } export interface PinoLogger { info: (message: string, context?: Record<string, unknown>) => void warn: (message: string, context?: Record<string, unknown>) => void error: (message: string, context?: Record<string, unknown>) => void debug: (message: string, context?: Record<string, unknown>) => void trace: (message: string, context?: Record<string, unknown>) => void fatal: (message: string, context?: Record<string, unknown>) => void } export interface LogInterceptorOptions { skipRequestLogging?: boolean skipResponseLogging?: boolean logLevel?: 'trace' | 'debug' | 'info' | 'warn' | 'error' | 'fatal' customContext?: (context: ExecutionContext) => Record<string, unknown> } export interface LogGuardOptions { logLevel?: 'trace' | 'debug' | 'info' | 'warn' | 'error' | 'fatal' customContext?: (context: ExecutionContext) => Record<string, unknown> } export interface LogExceptionFilterOptions { logLevel?: 'trace' | 'debug' | 'info' | 'warn' | 'error' | 'fatal' customContext?: ( exception: unknown, host: ArgumentsHost ) => Record<string, unknown> }