npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@moshontong/winston-transport-sentry-bun

v1.0.0-rc.2

Published

@sentry/bun transport for the winston v3 logger

Downloads

198

Readme

@moshontong/winston-transport-sentry-bun

@moshontong/winston-transport-sentry-bun is a Winston v3 transport for sending logs to Sentry using the @sentry/bun SDK. This package allows you to easily integrate Sentry into your logging pipeline for error tracking and monitoring.

Features

  • Supports Sentry logging for various severity levels (info, error, debug, etc.).
  • Automatically captures and sends exceptions to Sentry.
  • Allows tagging, user context, and additional metadata with logs.
  • Fully compatible with Winston v3 and Bun runtime.

Installation

Install the package and its dependencies:

bun add @moshontong/winston-transport-sentry-bun winston

Usage

Below is an example of how to configure and use the transport in your application.

Example

import {
  SentryTransport,
  type SentryTransportOptions,
} from "@moshontong/winston-transport-sentry-bun/sentry-winston";
import winston from "winston";

// Configure SentryTransport options
const options: SentryTransportOptions = {
  sentry: {
    dsn: Bun.env.SENTRY_DSN, // Replace with your Sentry DSN
    environment: Bun.env.APP_MODE, // Set environment (e.g., production, staging)
    enabled: Bun.env.APP_MODE === "production", // Enable only in production
  },
  level: "error", // Log errors to Sentry
  format: winston.format.combine(
    winston.format.label({ label: "background-worker" }), // Custom label
    winston.format.timestamp(), // Add timestamp
    winston.format.json() // JSON format for Sentry logs
  ),
};

// Create a logger instance
const logger = winston.createLogger({
  level: Bun.env.APP_MODE === "production" ? "info" : "debug", // Set log level based on environment
  format: winston.format.combine(
    winston.format.colorize(), // Add color to the console output
    winston.format.simple() // Simple text format for console logs
  ),
  transports: [
    new winston.transports.Console(), // Log to console
    new SentryTransport(options), // Log to Sentry
  ],
});

// Example logging
logger.info("This is an info message"); // Logs to console only
logger.error("This is an error message"); // Logs to console and Sentry

export default logger;

Configuration Options

SentryTransportOptions

| Option | Type | Description | |------------------|-----------------------------|-----------------------------------------------------------------------------| | sentry | Sentry.BunOptions | Configuration options for Sentry (e.g., dsn, environment, etc.). | | level | string | The log level to capture (e.g., error, info, debug). | | silent | boolean | If true, suppresses sending logs to Sentry. | | levelsMap | Record<string, string> | Custom mapping of Winston log levels to Sentry severity levels. | | skipSentryInit | boolean | If true, skips initializing Sentry (useful if already initialized). | | format | winston.Logform.Format | Custom formatting for logs sent to Sentry. |

Environment Variables

This package supports the following environment variables for easy configuration:

| Variable | Description | |--------------------|--------------------------------------------------| | SENTRY_DSN | Your Sentry DSN for sending logs. | | APP_MODE | Application environment (production, dev). | | SENTRY_DEBUG | Enable Sentry debug mode (optional). |

Advanced Features

Adding Tags, User Context, and Metadata

You can include additional context in your logs by adding tags, user, or meta fields to your log messages:

logger.error("Error occurred", {
  tags: { feature: "background-job" }, // Add tags
  user: { id: "1234", email: "[email protected]" }, // Add user context
  someMetaKey: "someMetaValue", // Add extra metadata
});

Capturing Exceptions

If a log contains an Error object, the transport will capture it as an exception in Sentry:

try {
  throw new Error("Something went wrong");
} catch (error) {
  logger.error("Caught an exception", { error });
}

Contributing

Contributions are welcome! If you encounter bugs or have suggestions, feel free to create an issue or submit a pull request on GitHub.

License

This package is licensed under the MIT License. See the LICENSE file for details.