All Projects → eggjs → egg-logger-sls

eggjs / egg-logger-sls

Licence: MIT License
Logger transport for aliyun sls.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to egg-logger-sls

Egg Authz
egg-authz is an authorization middleware for Egg.js based on Casbin
Stars: ✭ 50 (+257.14%)
Mutual labels:  egg-plugin, eggjs
Egg Mp
EggJS插件:微信公众平台基本服务
Stars: ✭ 153 (+992.86%)
Mutual labels:  egg-plugin, eggjs
Egg Mongo Native
MongoDB egg.js plugin using native driver.
Stars: ✭ 69 (+392.86%)
Mutual labels:  egg-plugin, eggjs
Egg Graphql
Stars: ✭ 345 (+2364.29%)
Mutual labels:  egg-plugin, eggjs
egg-rbac
Role Based Access Control for eggjs
Stars: ✭ 32 (+128.57%)
Mutual labels:  egg-plugin, eggjs
Egg Cancan
cancancan like authorization plugin for Egg.js
Stars: ✭ 47 (+235.71%)
Mutual labels:  egg-plugin, eggjs
Egg Router Plus
The missing router feature for eggjs
Stars: ✭ 117 (+735.71%)
Mutual labels:  egg-plugin, eggjs
Egg 24time
A Twitter-like news and social server for Egg. 微信小程序社区全栈解决方案
Stars: ✭ 493 (+3421.43%)
Mutual labels:  egg-plugin, eggjs
AliyunLogObjc
Aliyun Sls Log SDK for iOS
Stars: ✭ 22 (+57.14%)
Mutual labels:  sls, aliyun-sls
Cool Admin Api
cool-admin-api 是基于egg.js、typeorm、jwt等封装的api开发脚手架、快速开发api接口
Stars: ✭ 188 (+1242.86%)
Mutual labels:  egg-plugin, eggjs
Egg Sofa Rpc
SOFARPC plugin for egg
Stars: ✭ 71 (+407.14%)
Mutual labels:  egg-plugin, eggjs
egg-cache
💾 Cache plugin for eggjs
Stars: ✭ 60 (+328.57%)
Mutual labels:  egg-plugin, eggjs
Egg Oauth2 Server
🌟 OAuth2 server plugin for egg.js based on node-oauth2-server
Stars: ✭ 174 (+1142.86%)
Mutual labels:  egg-plugin, eggjs
egg-sentry
Sentry Plugin For Egg.js
Stars: ✭ 18 (+28.57%)
Mutual labels:  egg-plugin, eggjs
egg-parameters
Merge all parameters (ctx.params, ctx.request.query, ctx.request.body) into ctx.params like Rails application.
Stars: ✭ 24 (+71.43%)
Mutual labels:  egg-plugin, eggjs
egg-view-vue-ssr
Egg Vue Server Side Render (SSR) Plugin
Stars: ✭ 90 (+542.86%)
Mutual labels:  egg-plugin
Readhub
Readhub AndroidClient
Stars: ✭ 40 (+185.71%)
Mutual labels:  logger
egg-y-validator
☯️ Egg Magic Validator (Egg 魔法验证工具)
Stars: ✭ 30 (+114.29%)
Mutual labels:  egg-plugin
egg-nuxt-blog
Nuxt.js(web端) + Egg.js(api 服务) + Vue.js(管理后台)+ ElementUI(通用组件库)服务器渲染(SSR)搭建的个人博客系统
Stars: ✭ 16 (+14.29%)
Mutual labels:  eggjs
egg-session
session plugin for egg
Stars: ✭ 48 (+242.86%)
Mutual labels:  egg-plugin

egg-logger-sls

NPM version build status Test coverage David deps Known Vulnerabilities npm download

Logger transport for aliyun sls.

Install

$ npm i egg-sls --save
$ npm i egg-logger-sls --save

Usage

// {app_root}/config/plugin.js
exports.sls = {
  enable: true,
  package: 'egg-sls',
};
exports.loggerSLS = {
  enable: true,
  package: 'egg-logger-sls',
};

Configuration

You should configure egg-sls first.

// {app_root}/config/config.default.js
exports.loggerSLS = {
  // sls client name
  client: null,
  // sls project name
  project: '',
  // sls logstore name
  logstore: '',
  // the list of logger name that can be disabled
  disable: [],
  // the function that can modify and filter the logs
  transform: null,
};

If client is not specified, it will use app.sls as default client, otherwise it will get the sls client with the specified name in multiple client case.

// {app_root}/config/config.default.js
exports.sls = {
  clients: {
    sls: {
      endpoint: process.env.SLS_ENDPOINT,
      accessKeyId: process.env.SLS_ACCESS_KEY_ID,
      accessKeySecret: process.env.SLS_ACCESS_KEY_SECRET,
    },
  },
};
exports.loggerSLS = {
  client: 'sls',
  project: '',
  logstore: '',
};

see config/config.default.js for more detail.

Usage

The only thing you should do is configuration, this module will upload log automatically.

Disable Logger

You and disable logger with disable config.

exports.customLogger = {
  myLogger: {
    file: '/path/to/log',
  },
};
exports.loggerSLS = {
  disable: [
    // won't upload this logger
    'myLogger',
  ],
}

Transform and Filter

You can transform the log data before upload.

exports.loggerSLS = {
  transform(log, args) {
    return log;
  },
}

If you want to ignore some log, you can return false when transform.

exports.loggerSLS = {
  transform(log) {
    if (some condition) return false;
    return log;
  },
}

There is two arguments that transform have.

  1. One is log object, it contains the default property, which is ip, hostname, env, appName, loggerName, loggerFileName, level. The last one is content that is the log string formated from the arguments when you call log method.
  2. The other is original arguments when you call log method, it will not format to content.

Data Structure

The data structure uploaded in below, you can create index in aliyun console as your wish.

  • level: logger level
  • content: the infomation that you logged
  • ip: the host ip
  • hostname: the host name
  • env: the egg environment
  • appName: the package name
  • loggerName: the logger name defined by Egg
  • loggerFileName: the logger file path

Logger Level

The default logger in Egg contains two level: level and consoleLevel, If you want set level for sls, you can use slsLevel.

// config/config.default.js
module.exports = {
  logger: {
    // for all logs
    slsLevel: 'DEBUG',
  },

  customLogger: {
    // only for one log
    testLogger: {
      slsLevel: 'ERROR',
    },
  },
};

If slsLevel is not specified, it will use level instead.

Questions & Suggestions

Please open an issue here.

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].