LogTide
Comparison

LogTide vs SigNoz for Log Management

Compare LogTide and SigNoz for log management. Both open-source, both support OpenTelemetry. See where they differ.

Built-in SIEM & Sigma rules Simpler PostgreSQL backend Native SDKs + OTLP Incident management

SigNoz and LogTide are both open-source, self-hosted platforms that support OpenTelemetry. SigNoz focuses on full observability (metrics, traces, logs). LogTide focuses on log management with built-in SIEM capabilities. Here’s how they compare.

Philosophy Comparison

SigNoz

SigNoz positions itself as an open-source alternative to Datadog and New Relic, covering all three pillars of observability: metrics, traces, and logs. It’s built on ClickHouse for high-performance analytics.

LogTide

LogTide focuses specifically on log management with security built in. Rather than trying to replace your entire observability stack, LogTide does one thing well: logs + security detection. It’s built on PostgreSQL/TimescaleDB for operational simplicity.

Feature Comparison

FeatureSigNozLogTide
OpenTelemetryNative OTLPNative OTLP
LogsYesYes
TracesYesYes (via OTLP)
MetricsYesRoadmap
Custom SDKsOTel onlyOTel + Custom (Node.js, Python, Go, etc.)
AlertingYesYes
Sigma detection rulesNoBuilt-in
Incident managementNoBuilt-in
MITRE ATT&CK mappingNoBuilt-in
DatabaseClickHouseTimescaleDB (PostgreSQL)
Full-text searchYesYes
Real-time streamingYesYes (SSE)
Custom dashboardsYesSIEM dashboard
Multi-tenancyLimitedOrganizations + Projects

Where SigNoz Wins

Full observability. SigNoz covers metrics, traces, and logs in a single platform. If you need all three pillars with correlated views, SigNoz is more complete.

ClickHouse performance. ClickHouse is purpose-built for analytical queries on large datasets. For high-volume aggregation queries, ClickHouse can outperform PostgreSQL.

Custom dashboards. SigNoz has a query builder and dashboard creator for building custom visualizations across metrics, traces, and logs.

Service maps. SigNoz auto-generates service dependency maps from trace data, helping you understand your microservice architecture.

Where LogTide Wins

Security detection. LogTide includes Sigma rules, MITRE ATT&CK mapping, and incident management. SigNoz is purely an observability tool with no security capabilities.

Simpler backend. ClickHouse requires operational expertise for tuning, merges, and cluster management. LogTide uses PostgreSQL/TimescaleDB, which most teams already know how to operate.

Native SDKs. SigNoz relies exclusively on OpenTelemetry SDKs. LogTide provides lightweight, purpose-built SDKs for Node.js, Python, Go, PHP, Kotlin, and C# in addition to OTLP support.

Multi-tenancy. LogTide has built-in multi-tenancy with organizations and projects, each with separate API keys and access controls. SigNoz’s multi-tenancy is more limited.

SIEM dashboard. LogTide provides a security-focused dashboard for threat monitoring, detection rule management, and incident tracking that SigNoz doesn’t offer.

When to Choose SigNoz

  • You need metrics, traces, and logs in a single platform
  • You want custom dashboards across all telemetry types
  • Service dependency mapping is important
  • You prefer ClickHouse’s analytical performance
  • You don’t need security detection or SIEM capabilities

When to Choose LogTide

  • Security detection (Sigma rules, SIEM) is a requirement
  • You want a simpler database backend (PostgreSQL vs ClickHouse)
  • You need native SDKs beyond OpenTelemetry
  • Incident management and MITRE ATT&CK mapping are important
  • You already have a metrics solution (Prometheus, Grafana) and need focused log management

Migration: Seamless via OpenTelemetry

Since both platforms support OTLP natively, migration is straightforward - just update the endpoint:

// Before (SigNoz)
const logExporter = new OTLPLogExporter({
  url: 'http://signoz:4318/v1/logs',
});

// After (LogTide)
const logExporter = new OTLPLogExporter({
  url: 'http://logtide:8080/v1/otlp/logs',
  headers: { 'X-API-Key': 'lp_your_api_key' },
});

For OpenTelemetry Collector, update the exporter config:

# Before (SigNoz)
exporters:
  otlp:
    endpoint: signoz-otel-collector:4317

# After (LogTide)
exporters:
  otlphttp/logtide:
    endpoint: http://logtide:8080
    headers:
      X-API-Key: lp_your_api_key

Concept Mapping

SigNozLogTideNotes
ServiceService1:1 mapping (from OTel resource)
Tracetrace_idIndexed for correlation
Spanspan_idIndexed for correlation
Log attributesmetadataStored as JSON
AlertAlert RuleSimilar configuration
DashboardSIEM DashboardSecurity-focused
N/ASigma RulesLogTide exclusive
N/AIncidentsLogTide exclusive

Migration Path

Our migration guide covers updating OTLP endpoints, migrating alerts, and enabling LogTide’s security features that aren’t available in SigNoz.

View the full SigNoz migration guide


Ready to add security to your log management?