OpenObserve Docs
OverviewComparison with alternatives

OpenObserve as a New Relic Alternative

New Relic is a long-established APM and observability platform. For teams running at scale, the per-user pricing, the proprietary query language (NRQL), and the SaaS-only model are the most common reasons to evaluate alternatives. This page covers how OpenObserve compares and what changes if you migrate.

Why Teams Consider Moving Off New Relic

Per-user pricing

New Relic's pricing model combines ingest with per-user fees, with the higher tiers charging several hundred dollars per user per month. For an org with even a moderate engineering team, the per-seat line item often outpaces the ingest line item.

OpenObserve charges $0 per seat. Pricing is purely ingest-based, so adding engineers to the platform is free.

NRQL, a proprietary query language

NRQL is specific to New Relic. Every dashboard, alert condition, and saved query is written in NRQL, so leaving New Relic means rewriting them.

OpenObserve uses SQL for logs and traces and PromQL for metrics. Both are widely known and portable.

Vendor lock-in

New Relic uses proprietary agents and a proprietary data model. Migrating off the platform requires re-evaluating your instrumentation strategy.

OpenObserve is OpenTelemetry-native end to end. Instrumentation done with OTel SDKs and the OTel Collector ports cleanly to any backend, so you're never locked into OpenObserve either.

SaaS-only

New Relic is delivered as a cloud service only. For workloads with data-residency, air-gap, or regulated-environment requirements, that can be a blocker.

OpenObserve runs as self-hosted (single binary or Helm chart) or OpenObserve Cloud. Self-hosted means raw telemetry stays in your bucket (S3, GCS, Azure Blob, MinIO, or local disk).

APM agent overhead

The New Relic APM agents are proprietary, language-specific, and heavier than the OpenTelemetry SDK + Collector combination.

Feature Comparison

FeatureNew RelicOpenObserve
LogsYesYes, real-time analytics without traditional indexing overhead
MetricsYesYes, full Prometheus / PromQL compatibility
Traces / APMYesYes, first-class OpenTelemetry support
DashboardsYesYes, prebuilt dashboards, UI builder, custom mode
AlertsYesYes, SQL/PromQL-based alerting
Frontend monitoring (RUM)YesYes
Pipelines / data transformsYesYes (Vector Remap Language)
Query languageNRQL (proprietary)SQL + PromQL
Pricing modelPer user + per GB ingestIngest-based only
OpenTelemetry nativePartialFull
Self-hosted optionNoYes
Monthly per-seat costPer-user fees on higher tiers$0
Bring your own storageNoYes (S3, GCS, Azure Blob, MinIO)
Open sourceNoYes

Architectural Differences

LayerNew RelicOpenObserve
Ingest agentsNew Relic APM agents (per language) + Infrastructure agentOpenTelemetry Collector, OTel SDKs, Fluent Bit, Vector
Wire protocolProprietary New Relic ingest APIsOTLP, Prometheus Remote Write, Loki Push API, JSON over HTTP
StorageNew Relic-managed (opaque)Apache Parquet on object storage (S3/GCS/Azure/MinIO/local)
QueryNRQL to New Relic backendSQL/PromQL to stateless queriers reading Parquet
VisualizationNew Relic OneOpenObserve UI (built-in)
DeploymentSaaS onlySelf-host or OpenObserve Cloud

Data Ownership

In New Relic, your raw telemetry lives on their cluster. You can query it through their UI and API, but you can't cheaply backfill, re-process, or join it against the rest of your data.

In OpenObserve, raw events live in your object storage as Parquet. You can query it from OpenObserve, but the data is also accessible directly from any tool that reads Parquet (Athena, Spark, DuckDB, Trino), so it stays usable beyond the observability use case.

What Stays the Same

Migrating off New Relic does not require re-instrumenting your applications when you've already adopted OpenTelemetry:

  • OTel SDKs in your code keep emitting OTLP. Only the exporter endpoint changes.
  • OTel Collectors keep their receivers and processors. Swap the newrelic exporter for otlphttp pointed at OpenObserve.
  • Prometheus scrapers keep working unchanged. Add an OpenObserve remote_write target.

If you still rely on New Relic APM agents, you can either keep them temporarily (with a Collector translation layer) or move incrementally to OpenTelemetry SDKs, language by language.

Migration Shape

A typical move off New Relic runs in three steps:

  1. Point collectors at OpenObserve. Update OTel Collector exporter endpoints to OpenObserve. No re-instrumentation required for apps already using OTel. Run dual-write for a window to validate.
  2. Rebuild dashboards and translate alerts. Convert NRQL queries to SQL/PromQL. The OpenObserve AI Assistant handles the bulk of NRQL to SQL/PromQL translation automatically.
  3. Cut over and optimize. Shift production workloads gradually, starting with non-critical services. Validate retention and query latency before decommissioning the New Relic side.

Teams already on OpenTelemetry can start ingesting into OpenObserve within hours. Full cutover usually lands in days to a few weeks, dominated by dashboard and alert rebuild rather than data movement.

Need Help?

Was this page helpful?

Last updated on

On this page