Event
AbyssMonitor allows you to send EVENT to an application. Each event is stored with details (event, level, extra data...), and it can be linked to a log
Event helps you to monitor you application activity easily
Send an event
logger.info(
`User signup !`,
{
applicationEvent: {
event: 'auth.user.signup',
level: LogLevel.INFO,
},
}
)
Check your events
Last updated