Environments

Sentry automatically creates environments when it receives an event with the environment tag. Environments are case sensitive. The environment name can't contain newlines, spaces or forward slashes, can't be the string "None", or exceed 64 characters. You can't delete environments, but you can hide them.

Copied
import * as Sentry from "@sentry/node";
// or using CommonJS
// const Sentry = require('@sentry/node');

Sentry.init({
  environment: "production",
});

Environments help you better filter issues, releases, and user feedback in the Issue Details page of sentry.io, which you learn more about in our documentation that covers using environments.