LuminaLog
Waitlist
Query & Filter

Log Search

Search and filter your log history with SQL-powered queries. Search by level, environment, metadata fields, or full-text search across your entire log archive.

Quick Search

The search bar in your dashboard supports multiple query types. Start typing to search across all your logs in real-time with sub-second latency.

Full-Text

"Search for any text in log messages. Case-insensitive by default."

payment failed

Field Filters

"Filter by specific metadata fields using key:value syntax."

userId:user_123

Level Filters

"Focus on errors, warnings, or specific severity levels."

level:error

Advanced Query Syntax

LuminaLog supports powerful query syntax with boolean operators, field filters, and metadata search. Queries are converted to optimized Athena SQL at the edge.

OperatorExampleDescription
Text Searchpayment failedSearch for text in log messages
Field Filterlevel:errorFilter by specific field value
Metadata SearchuserId:user_123Search metadata fields
AND / ORerror AND paymentCombine multiple search terms
NOTerror NOT timeoutExclude logs containing term
Group / Parens(error OR warn) AND paymentGroup conditions for priority
Comparisonduration:>5000Numeric (>, <, >=, <=)

Search Latency

Logs are searchable within 60 seconds of ingestion. Our indexing engine (SmartIndex) optimizes storage while keeping historical data instantly accessible.

Query Examples

Find All Payment Errors

level:error AND payment

Shows all error-level logs containing the word "payment"

Find Logs for Specific User

userId:user_abc123

Shows all logs where metadata includes the specific user ID

Production Errors Excluding Timeouts

environment:production AND level:error NOT timeout

Filters for high-impact errors while ignoring network transients

Slow Database Queries

database AND (slow OR timeout) AND duration:>5000

Database-related logs with duration over 5 seconds

API Endpoint Errors

path:/api/checkout AND (level:error OR level:warn)

Errors or warnings originating from the checkout path

Time Range Filters

Use the intuitive time picker in the dashboard to switch between historical views and real-time streams.

Last hour

6 hours

24 hours

7 days

30 days

Metadata Field Search

LuminaLog extracts and indexes all metadata fields sent in your JSON payloads, enabling deep inspection.

userId

Find all logs for a specific user

userId:user_123

requestId

Trace a request across the stack

requestId:req_abc

orderId

Track e-commerce lifecycle events

orderId:ord_456

statusCode

Filter all backend server errors

statusCode:500

duration

Identify high-latency operations

duration:>1000

method

Filter by specific HTTP verbs

method:POST

Search Tips

Specific Text

Use quotes for exact phrase matching and reduce false positives.

Filter Combinations

Narrow down by environment and project first to speed up scans.

Time Context

Focus on the smallest relevant time window to maximize query performance.

Live Tail

Use the live stream when debugging active issues for sub-100ms latency.

Next Steps