Monitor. Trace. Examine. Alert.

Developer-first logging and monitoring platform. Send logs, trace errors, examine performance, and get alerts in real-time.

No credit card required · Free plan available · Setup in 2 minutes

Features built for engineering velocity

Real-time logs

Ingest and tail logs in near real time with instant filtering.

Error tracking

Group errors automatically and inspect stack traces in one click.

Alerts

Route incidents to Slack, PagerDuty, and email with flexible rules.

API monitoring

Track latency and error rates per endpoint and environment.

Dashboard

Build focused dashboards for deploy health and service metrics.

Team members

Invite engineers and collaborate using shared views and alerts.

How it works

Step 1

Create project

Step 2

Copy API key

Step 3

Send logs

Step 4

View dashboard

Code example

Install the JavaScript SDK, wire init once with your API key, then emit structured logs—they batch and send in the background. Other languages can use the HTTP API today; native SDKs are on the way.

instrumentation.ts
npm install @monitea/log-sdk
// ── 1) One-time setup: point the SDK at Monitea with your project API key ──
// (Dashboard → Settings → API Keys). Never commit keys; use env vars.
import { init, info, error, flush } from "@monitea/log-sdk";
init({
apiKey: process.env.MONITEA_API_KEY!,
service: "checkout-api", // shown in the UI to group logs
environment: "production",
// Base URL only — the SDK POSTs to {endpoint}/v1/logs
endpoint: "https://api.monitea.com/api",
});
// ── 2) Emit logs anywhere in your app (async batching + retries behind the scenes) ──
info("User completed checkout", { userId: "usr_123", cartTotal: 49.99 });
error("Payment provider timeout", { orderId: "ord_456" });
// ── 3) Optional: flush on graceful shutdown so batches are not cut off ──
process.on("SIGTERM", () => void flush());

The SDK batches and retries automatically. For Express, you can add expressMiddleware from @monitea/log-sdk/express to log requests with minimal wiring.

Pricing preview

View full pricing

Free

For side projects

$0

billed monthly

  • - 1 project
  • - 14-day retention
  • - Basic alerts
Start Free
Most Popular

Growth

For product teams

$79

billed yearly

  • - Unlimited projects
  • - 90-day retention
  • - Slack + PagerDuty
Start Free

Scale

For large orgs

Custom

billed monthly

  • - SAML SSO
  • - Dedicated support
  • - Custom retention
Start Free

Monitea vs alternatives

PlatformSetup SpeedDev UXCost Clarity
MoniteaMinutesDeveloper-firstTransparent
DatadogMediumPowerful but heavyComplex
NewRelicMediumGood enterprise featuresVariable
SentryFastGreat for errorsModerate

FAQ

Can I start for free?

Yes, the Free plan is available without a credit card.

Do you support API ingestion?

Yes, HTTP API and SDK integrations are supported.

Can I invite my team?

Yes, team seats and role-based access are included on paid plans.

Start monitoring in minutes

Create your free account and send your first event today.