Skip to main content
Alerty SDK is a powerful monitoring tool designed, built, and priced for the needs of developers and founders. It helps you monitor your applications, track errors, and ensure your software runs smoothly.

Features

  • Error Monitoring: Automatically captures errors and their stack traces.
  • Service Monitoring: Monitors the health and performance of your services.
  • Customizable Alerts: Set up alerts to notify you when something goes wrong.
  • Lightweight and Fast: Designed to be efficient with minimal overhead.

Getting Started

You can install the Alerty SDK via npm or yarn:
npm install @alerty/nextjs
yarn add @alerty/nextjs
In a Next.js application, you can initialize Alerty SDK in app/layout.tsx:
import * as Alerty from "@alerty/nextjs";

Alerty.configure({
  dsn: "__YOUR_DSN__",
});

export default function RootLayout({
  children,
}: Readonly<{
  children: React.ReactNode;
}>) {
   // ...
}
Data should be flowing now!