
Research
/Security News
Weaponizing Discord for Command and Control Across npm, PyPI, and RubyGems.org
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
@treelab/logger-metrics-middleware
Advanced tools
{
serviceName?: string // 当前服务名
prettyPrint?: boolean // 是否以json方式输出, 默认false
headers?: string[] // 需要记录的header列表
... // 后续新增..
}
下面2种方法任选一个:
配置环境变量 SERVICE_NAME 为当前服务名,log中的serviceName会读env中 SERVICE_NAME 的值.
初始化时,传递serviceName参数 (暂不可用)
HTTP:
app.use(ExpressHttpLoggerMiddleware({serviceName: 'svcName'}))
Grpc:
@UseInterceptors(new GrpcLoggerMiddleware({ serviceName: 'svcName' }))
import { ExpressHttpLoggerMiddleware } from '@treelab/logger-metrics-middleware'
import * as Prometheus from 'prom-client'
// 日志
app.use(ExpressHttpLoggerMiddleware())
// 指标
app.use('/metrics', async (req, res) => {
res.set('Content-Type', Prometheus.register.contentType)
const end = await Prometheus.register.metrics()
res.end(end)
})
}
import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';
import { ExpressHttpLoggerMiddleware } from '@treelab/logger-metrics-middleware'
import * as Prometheus from 'prom-client'
import bodyParser = require('body-parser');
async function bootstrap() {
const app = await NestFactory.create(AppModule);
app.use(bodyParser.json());
app.use(ExpressHttpLoggerMiddleware())
app.use('/metrics', async (req, res) => {
res.set('Content-Type', Prometheus.register.contentType)
const end = await Prometheus.register.metrics()
res.end(end)
})
await app.listen(3000);
}
bootstrap();
import { KoaHttpLoggerMiddleware } from '@treelab/logger-metrics-middleware/dist/http-logger'
import * as Prometheus from 'prom-client'
// 日志
app.use(KoaHttpLoggerMiddleware())
// 指标
router.get('/metrics',async (ctx) => {
ctx.header.set('Content-Type', Prometheus.register.contentType)
const end = await Prometheus.register.metrics()
ctx.body = end
})
}
import { GrpcLoggerMiddleware } from '@treelab/logger-metrics-middleware';
// 在grpc Controller 上使用
@UseInterceptors(GrpcLoggerMiddleware)
@Controller()
export class GrpcController {
constructor(){}
}
FAQs
nest js logger-metrics-middleware
We found that @treelab/logger-metrics-middleware demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 12 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
/Security News
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Research
The Socket Threat Research Team is tracking weekly intrusions into the npm registry that follow a repeatable adversarial playbook used by North Korean state-sponsored actors.