作为 Node.js 开发人员,在调试、监控和维护应用程序时,日志记录几乎就是一切。但是您是否使用日志记录最佳实践?让我们探索一些可以将 Node.js 应用程序提升到新水平的日志记录技术。
要了解更多信息,您可以查看完整的博客文章。
?工具:温斯顿
?描述:Node.js 的多功能日志库
?主要特点:
javascriptCopyconst winston = require('winston'); const logger = winston.createLogger({ level: 'info', format: winston.format.json(), transports: [ new winston.transports.File({ filename: 'error.log', level: 'error' }), new winston.transports.File({ filename: 'combined.log' }) ] });
?工具:摩根
?描述:简化 Express.js 中的 HTTP 请求日志记录
?主要特点:
javascriptCopyconst express = require('express'); const morgan = require('morgan'); const app = express(); app.use(morgan('combined'));
?工具:Bunyan
?描述:Node.js 应用程序的结构化 JSON 日志记录
?主要特点:
javascriptCopyconst bunyan = require('bunyan'); const log = bunyan.createLogger({name: "myapp"}); log.info("Hi"); log.warn({lang: 'fr'}, "Au revoir");
?工具:皮诺
?描述:具有 JSON 输出的低开销日志记录
?主要特点:
javascriptCopyconst pino = require('pino'); const logger = pino(); logger.info('hello world'); logger.error('this is at error level');
?工具:调试
?描述:Node.js 的小型调试实用程序
?主要特点:
javascriptCopyconst debug = require('debug')('http'); debug('booting %o', name);
?工具:Log4js
?描述:log4j框架到JavaScript的转换
?主要特点:
javascriptCopyconst log4js = require("log4js"); log4js.configure({ appenders: { cheese: { type: "file", filename: "cheese.log" } }, categories: { default: { appenders: ["cheese"], level: "error" } } }); const logger = log4js.getLogger("cheese"); logger.error("Cheese is too ripe!");
?工具:ELK Stack
?描述:日志管理和分析的强大组合
?主要特点:
javascriptCopyconst winston = require('winston'); const Elasticsearch = require('winston-elasticsearch'); const esTransportOpts = { level: 'info', clientOpts: { node: 'http://localhost:9200' } }; const logger = winston.createLogger({ transports: [ new Elasticsearch(esTransportOpts) ] });
?工具:哨兵
?描述:实时错误跟踪和性能监控
?主要特点:
javascriptCopyconst Sentry = require("@sentry/node"); Sentry.init({ dsn: "https://[email protected]/0" }); try { someFunction(); } catch (e) { Sentry.captureException(e); }
?工具:新遗物
?描述:全面的应用程序性能监控
?主要特点:
javascriptCopyconst newrelic = require('newrelic'); newrelic.setTransactionName('myCustomTransaction'); // Your application code here
?工具:Loggly
?描述:基于云的日志管理和分析服务
?主要特点:
javascriptCopyconst winston = require('winston'); const { Loggly } = require('winston-loggly-bulk'); winston.add(new Loggly({ token: "YOUR-TOKEN", subdomain: "YOUR-SUBDOMAIN", tags: ["Winston-NodeJS"], json: true }));
winston.log('info', "来自 Node.js 的 Hello World!");
无论您选择哪种工具,实现结构化日志记录都可以极大地提高您的日志分析能力:
javascriptCopylogger.info({ event: 'user_login', userId: user.id, timestamp: new Date().toISOString(), ipAddress: req.ip });
通过使用这些附加工具和实践,您将拥有全面的日志记录策略,涵盖从基本调试到高级应用程序性能监控的所有内容。请记住,有效日志记录的关键是根据您的特定需求选择正确的工具,并在整个代码库中一致应用最佳实践。
如果您在调试 Web 应用程序时需要帮助,请查看 https://alerty.ai 以了解有关简单前端监控的更多信息。
祝您日志记录愉快,祝您的 Node.js 应用程序顺利运行! ??
免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。
Copyright© 2022 湘ICP备2022001581号-3