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 and call init with your API key, service name, and environment (ingest URL is built into the SDK). Logs 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
// Ingest URL is fixed inside the SDK: https://api.monitea.com/api/v1/logs (see api-docs).
// Pass apiKey, service label, and environment name (must match the key's environment).
import { init, info, error, flush } from "@monitea/log-sdk";
init({
apiKey: process.env.MONITEA_API_KEY!,
service: "checkout-api",
environment: "production",
});
// Emit logs (batched + retried in the background)
info("User completed checkout", { userId: "usr_123", cartTotal: 49.99 });
error("Payment provider timeout", { orderId: "ord_456" });
// Optional: flush on graceful shutdown
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.