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 failedField Filters
"Filter by specific metadata fields using key:value syntax."
userId:user_123Level Filters
"Focus on errors, warnings, or specific severity levels."
level:errorAdvanced 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.
| Operator | Example | Description |
|---|---|---|
| Text Search | payment failed | Search for text in log messages |
| Field Filter | level:error | Filter by specific field value |
| Metadata Search | userId:user_123 | Search metadata fields |
| AND / OR | error AND payment | Combine multiple search terms |
| NOT | error NOT timeout | Exclude logs containing term |
| Group / Parens | (error OR warn) AND payment | Group conditions for priority |
| Comparison | duration:>5000 | Numeric (>, <, >=, <=) |
Search Latency
Query Examples
Find All Payment Errors
level:error AND paymentShows all error-level logs containing the word "payment"
Find Logs for Specific User
userId:user_abc123Shows all logs where metadata includes the specific user ID
Production Errors Excluding Timeouts
environment:production AND level:error NOT timeoutFilters for high-impact errors while ignoring network transients
Slow Database Queries
database AND (slow OR timeout) AND duration:>5000Database-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_123requestId
Trace a request across the stack
requestId:req_abcorderId
Track e-commerce lifecycle events
orderId:ord_456statusCode
Filter all backend server errors
statusCode:500duration
Identify high-latency operations
duration:>1000method
Filter by specific HTTP verbs
method:POSTSearch 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.