Query Logfire Data
When to Use This Skill
Invoke this skill when:
- User wants to query traces, logs, spans, or metrics from Logfire
- User wants to search for specific events, errors, or patterns in telemetry data
- User wants to analyze OpenTelemetry data stored in Logfire
- User wants to add programmatic query capabilities to their code
- User asks to "query logfire", "search traces", "find logs", "get metrics", "count", "summarize", "compare", or "find root cause"
User-Facing Progress
Keep progress updates terse. Do not narrate route classification, local skill instructions, schema selection, or routine query setup. If an update is needed, use one short sentence focused on the action, such as "Querying recent Logfire errors."
Critical Routing: One Workflow Per Request
Before using any query tool, classify the request.
- Query route: "analyze", "query", "count", "summarize", "compare", "find root cause", "find slowest", "look up errors", "get metrics", or "add query capabilities".
- UI route: "open", "show in browser", "show in Codex", "show in Logfire", "live view", "open Explore", "open the UI", "give me a link", or GUI/browser presentation. Use
logfire-ui; do not call query_run just to make a URL.
- Ambiguous route: prompts like "show recent errors", "view logs", or "show spans" do not specify whether the user wants chat analysis or the Logfire UI. Ask the user to choose query analysis or UI view.
- Combined route: if the user explicitly asks for both analysis and a link, query only for the requested analysis or to identify the requested item, then provide the relevant Logfire link. Do not add UI/browser work unless the user asked for it.
Only query before opening Logfire UI when the user asks to open a specific unknown item that must be found first, such as "find the slowest trace and open it" or "open the latest error trace".
Two Approaches
| Aspect |
MCP query_run |
REST API /v1/query |
| Best for |
Interactive analysis in Codex |
Adding query code to a project |
| Auth |
OAuth via MCP session |
Bearer read token |
| Setup |
Already configured via plugin |
Need a read token |
| Formats |
JSON rows |
JSON, CSV, Apache Arrow |
| Default window |
Last 30 min |
Last 24 hours |
| Max range |
14 days |
14 days |
| Row limit |
Must be in SQL |
Default 500, max 10,000 |
Quick Schema Reference
records table (spans and logs)
Key columns for querying:
| Column |
Type |
Description |
start_timestamp |
timestamp (UTC) |
When span/log was created |
end_timestamp |
timestamp (UTC) |
When span/log completed |
duration |
double (seconds) |
Time between start and end; NULL for logs |
trace_id |
string (32 hex) |
Unique trace identifier |
span_id |
string (16 hex) |
Unique span identifier |
parent_span_id |
string (16 hex) |
Parent span; NULL for root spans |
span_name |
string |
Low-cardinality label for similar records |
message |
string |
Human-readable description with arguments filled in |
level |
integer |
Severity (supports level = 'error' string comparison) |
kind |
string |
span, log, span_event, or pending_span |
service_name |
string |
Service identifier |
is_exception |
boolean |
Whether an exception was recorded |
exception_type |
string |
Exception class name |
exception_message |
string |
Exception message |
exception_stacktrace |
string |
Full traceback |
attributes |
JSON |
Structured data; query with ->>'key' |
tags |
string[] |
Grouping labels; query with array_has(tags, 'x') |
http_response_status_code |
integer |
HTTP status code |
http_method |
string |
HTTP method |
http_route |
string |
HTTP route pattern |
otel_status_code |
string |
Span status |
metrics table
| Column |
Type |
Description |
recorded_timestamp |
timestamp (UTC) |
When metric was recorded |
metric_name |
string |
Metric name |
metric_type |
string |
Type (gauge, counter, histogram) |
unit |
string |
Unit of measurement |
scalar_value |
double |
Metric value |
service_name |
string |
Service identifier |
attributes |
JSON |
Metric dimensions |
Full schema: references/schema.md
SQL Syntax
Logfire uses Apache DataFusion (Postgres-like). Key patterns:
-- Time filtering
WHERE start_timestamp > now() - interval '1 hour'
-- JSON attribute access
WHERE attributes->>'user_id' = '123'
SELECT attributes->>'http.url' as url FROM records
-- Nested JSON
attributes->'request'->>'method'
-- Array filtering
WHERE array_has(tags, 'production')
-- Level filtering (string comparison works)
WHERE level = 'error'
-- Case-insensitive matching
WHERE message ILIKE '%timeout%'
-- Time bucketing for aggregation
SELECT time_bucket(interval '5 minutes', start_timestamp) as bucket,
count(*) FROM records GROUP BY bucket ORDER BY bucket
MCP Approach (Interactive)
Call the query_run MCP tool:
query (required): SQL query string
project (optional): target project (default: user's current project)
min_timestamp / max_timestamp (optional): ISO timestamps for time window
Default window is last 30 min. Max range is 14 days. Always include LIMIT in SQL.
Common queries
-- Recent errors
SELECT start_timestamp, message, exception_type, exception_message
FROM records WHERE is_exception LIMIT 20
-- Slow spans
SELECT span_name, duration, start_timestamp
FROM records WHERE duration > 1.0 ORDER BY duration DESC LIMIT 20
-- Endpoint errors
SELECT start_timestamp, message, http_response_status_code
FROM records WHERE http_route = '/api/users' AND level = 'error' LIMIT 20
-- Full trace
SELECT span_name, message, duration, parent_span_id
FROM records WHERE trace_id = '<id>' ORDER BY start_timestamp
-- Error breakdown by service
SELECT service_name, count(*) as errors
FROM records WHERE is_exception GROUP BY service_name ORDER BY errors DESC
UI Links After Querying
If the user explicitly asks for both analysis and a Logfire link, finish the query analysis first, then use a Logfire link only for the known result:
- For a known
trace_id, use project_logfire_link(trace_id=trace_id, project=project, handoff=True) only when the user asked to open it immediately in the browser. Use project_logfire_link(trace_id=trace_id, project=project) for a durable or shareable URL.
- For a project/filter view, use the
logfire-ui routing rules.
- Do not open the browser unless the user asked to open the link.
For a span-count prompt, provide SQL like this when the user wants an aggregate query or analysis:
SELECT
time_bucket(interval '5 minutes', start_timestamp) AS bucket,
count(*) AS span_count
FROM records
WHERE kind = 'span'
GROUP BY bucket
ORDER BY bucket
LIMIT 200
REST API Approach (Programmatic)
Endpoint: GET https://logfire-api.pydantic.dev/v1/query
Region variants:
- US:
https://logfire-us.pydantic.dev/v1/query
- EU:
https://logfire-eu.pydantic.dev/v1/query
Auth: Authorization: Bearer <read_token>
Parameters:
sql (required): SQL query
min_timestamp / max_timestamp (optional): ISO timestamps
limit (optional): row limit (default 500, max 10,000)
Response formats (via Accept header):
application/json — column-oriented JSON (default)
application/json with row_oriented=true param — row-oriented JSON
text/csv — CSV
application/vnd.apache.arrow.stream — Apache Arrow
Python clients: LogfireQueryClient (sync), AsyncLogfireQueryClient (async), logfire.db_api (PEP 249 / pandas).
Detailed examples: references/client-usage.md
Query Best Practices
- Always LIMIT — start with 20, increase as needed
- Use
min_timestamp/max_timestamp params for simple time windows instead of SQL WHERE
- Filter efficiently —
service_name, span_name, trace_id, is_exception are fast filters
- Use
->>'key' for JSON attribute access (returns text); use -> for nested JSON objects
- Avoid
SELECT * — select only the columns you need
- Max 14-day range — queries cannot span more than 14 days
1---2name: logfire-query3description: Query and analyze Logfire telemetry data — traces, logs, spans, metrics, summaries, and SQL results. Use this skill when the user asks to "query logfire", "search traces", "find logs", "query data", "search spans", "look up errors in logfire", "get metrics from logfire", "analyze telemetry", "summarize errors", "find root cause", or add Logfire querying capabilities to code. Do not use this skill for direct Logfire UI, browser, live-view, Explore-page, or link-opening requests; use logfire-ui instead. If "show" or "view" wording is ambiguous, ask whether the user wants a UI view or query analysis.4---5
6# Query Logfire Data
7
8## When to Use This Skill
9
10Invoke this skill when:
11- User wants to query traces, logs, spans, or metrics from Logfire
12- User wants to search for specific events, errors, or patterns in telemetry data
13- User wants to analyze OpenTelemetry data stored in Logfire
14- User wants to add programmatic query capabilities to their code
15- User asks to "query logfire", "search traces", "find logs", "get metrics", "count", "summarize", "compare", or "find root cause"
16
17## User-Facing Progress
18
19Keep progress updates terse. Do not narrate route classification, local skill instructions, schema selection, or routine query setup. If an update is needed, use one short sentence focused on the action, such as "Querying recent Logfire errors."
20
21## Critical Routing: One Workflow Per Request
22
23Before using any query tool, classify the request.
24
25- Query route: "analyze", "query", "count", "summarize", "compare", "find root cause", "find slowest", "look up errors", "get metrics", or "add query capabilities".
26- UI route: "open", "show in browser", "show in Codex", "show in Logfire", "live view", "open Explore", "open the UI", "give me a link", or GUI/browser presentation. Use `logfire-ui`; do not call `query_run` just to make a URL.
27- Ambiguous route: prompts like "show recent errors", "view logs", or "show spans" do not specify whether the user wants chat analysis or the Logfire UI. Ask the user to choose query analysis or UI view.
28- Combined route: if the user explicitly asks for both analysis and a link, query only for the requested analysis or to identify the requested item, then provide the relevant Logfire link. Do not add UI/browser work unless the user asked for it.
29
30Only query before opening Logfire UI when the user asks to open a specific unknown item that must be found first, such as "find the slowest trace and open it" or "open the latest error trace".
31
32## Two Approaches
33
34| Aspect | MCP `query_run` | REST API `/v1/query` |
35|--------|-----------------|----------------------|
36| **Best for** | Interactive analysis in Codex | Adding query code to a project |
37| **Auth** | OAuth via MCP session | Bearer read token |
38| **Setup** | Already configured via plugin | Need a read token |
39| **Formats** | JSON rows | JSON, CSV, Apache Arrow |
40| **Default window** | Last 30 min | Last 24 hours |
41| **Max range** | 14 days | 14 days |
42| **Row limit** | Must be in SQL | Default 500, max 10,000 |
43
44## Quick Schema Reference
45
46### `records` table (spans and logs)
47
48Key columns for querying:
49
50| Column | Type | Description |
51|--------|------|-------------|
52| `start_timestamp` | timestamp (UTC) | When span/log was created |
53| `end_timestamp` | timestamp (UTC) | When span/log completed |
54| `duration` | double (seconds) | Time between start and end; NULL for logs |
55| `trace_id` | string (32 hex) | Unique trace identifier |
56| `span_id` | string (16 hex) | Unique span identifier |
57| `parent_span_id` | string (16 hex) | Parent span; NULL for root spans |
58| `span_name` | string | Low-cardinality label for similar records |
59| `message` | string | Human-readable description with arguments filled in |
60| `level` | integer | Severity (supports `level = 'error'` string comparison) |
61| `kind` | string | `span`, `log`, `span_event`, or `pending_span` |
62| `service_name` | string | Service identifier |
63| `is_exception` | boolean | Whether an exception was recorded |
64| `exception_type` | string | Exception class name |
65| `exception_message` | string | Exception message |
66| `exception_stacktrace` | string | Full traceback |
67| `attributes` | JSON | Structured data; query with `->>'key'` |
68| `tags` | string[] | Grouping labels; query with `array_has(tags, 'x')` |
69| `http_response_status_code` | integer | HTTP status code |
70| `http_method` | string | HTTP method |
71| `http_route` | string | HTTP route pattern |
72| `otel_status_code` | string | Span status |
73
74### `metrics` table
75
76| Column | Type | Description |
77|--------|------|-------------|
78| `recorded_timestamp` | timestamp (UTC) | When metric was recorded |
79| `metric_name` | string | Metric name |
80| `metric_type` | string | Type (gauge, counter, histogram) |
81| `unit` | string | Unit of measurement |
82| `scalar_value` | double | Metric value |
83| `service_name` | string | Service identifier |
84| `attributes` | JSON | Metric dimensions |
85
86Full schema: [`references/schema.md`](./references/schema.md)
87
88## SQL Syntax
89
90Logfire uses **Apache DataFusion** (Postgres-like). Key patterns:
91
92```sql
93-- Time filtering
94WHERE start_timestamp > now() - interval '1 hour'
95
96-- JSON attribute access
97WHERE attributes->>'user_id' = '123'
98SELECT attributes->>'http.url' as url FROM records
99
100-- Nested JSON
101attributes->'request'->>'method'
102
103-- Array filtering
104WHERE array_has(tags, 'production')
105
106-- Level filtering (string comparison works)
107WHERE level = 'error'
108
109-- Case-insensitive matching
110WHERE message ILIKE '%timeout%'
111
112-- Time bucketing for aggregation
113SELECT time_bucket(interval '5 minutes', start_timestamp) as bucket,
114 count(*) FROM records GROUP BY bucket ORDER BY bucket
115```
116
117## MCP Approach (Interactive)
118
119Call the `query_run` MCP tool:
120- `query` (required): SQL query string
121- `project` (optional): target project (default: user's current project)
122- `min_timestamp` / `max_timestamp` (optional): ISO timestamps for time window
123
124Default window is last 30 min. Max range is 14 days. Always include `LIMIT` in SQL.
125
126### Common queries
127
128```sql
129-- Recent errors
130SELECT start_timestamp, message, exception_type, exception_message
131FROM records WHERE is_exception LIMIT 20
132
133-- Slow spans
134SELECT span_name, duration, start_timestamp
135FROM records WHERE duration > 1.0 ORDER BY duration DESC LIMIT 20
136
137-- Endpoint errors
138SELECT start_timestamp, message, http_response_status_code
139FROM records WHERE http_route = '/api/users' AND level = 'error' LIMIT 20
140
141-- Full trace
142SELECT span_name, message, duration, parent_span_id
143FROM records WHERE trace_id = '<id>' ORDER BY start_timestamp
144
145-- Error breakdown by service
146SELECT service_name, count(*) as errors
147FROM records WHERE is_exception GROUP BY service_name ORDER BY errors DESC
148```
149
150## UI Links After Querying
151
152If the user explicitly asks for both analysis and a Logfire link, finish the query analysis first, then use a Logfire link only for the known result:
153
154- For a known `trace_id`, use `project_logfire_link(trace_id=trace_id, project=project, handoff=True)` only when the user asked to open it immediately in the browser. Use `project_logfire_link(trace_id=trace_id, project=project)` for a durable or shareable URL.
155- For a project/filter view, use the `logfire-ui` routing rules.
156- Do not open the browser unless the user asked to open the link.
157
158For a span-count prompt, provide SQL like this when the user wants an aggregate query or analysis:
159
160```sql
161SELECT
162 time_bucket(interval '5 minutes', start_timestamp) AS bucket,
163 count(*) AS span_count
164FROM records
165WHERE kind = 'span'
166GROUP BY bucket
167ORDER BY bucket
168LIMIT 200
169```
170
171## REST API Approach (Programmatic)
172
173**Endpoint**: `GET https://logfire-api.pydantic.dev/v1/query`
174
175Region variants:
176- US: `https://logfire-us.pydantic.dev/v1/query`
177- EU: `https://logfire-eu.pydantic.dev/v1/query`
178
179**Auth**: `Authorization: Bearer <read_token>`
180
181**Parameters**:
182- `sql` (required): SQL query
183- `min_timestamp` / `max_timestamp` (optional): ISO timestamps
184- `limit` (optional): row limit (default 500, max 10,000)
185
186**Response formats** (via `Accept` header):
187- `application/json` — column-oriented JSON (default)
188- `application/json` with `row_oriented=true` param — row-oriented JSON
189- `text/csv` — CSV
190- `application/vnd.apache.arrow.stream` — Apache Arrow
191
192**Python clients**: `LogfireQueryClient` (sync), `AsyncLogfireQueryClient` (async), `logfire.db_api` (PEP 249 / pandas).
193
194Detailed examples: [`references/client-usage.md`](./references/client-usage.md)
195
196## Query Best Practices
197
1981. **Always LIMIT** — start with 20, increase as needed
1992. **Use `min_timestamp`/`max_timestamp` params** for simple time windows instead of SQL `WHERE`
2003. **Filter efficiently** — `service_name`, `span_name`, `trace_id`, `is_exception` are fast filters
2014. **Use `->>'key'`** for JSON attribute access (returns text); use `->` for nested JSON objects
2025. **Avoid `SELECT *`** — select only the columns you need
2036. **Max 14-day range** — queries cannot span more than 14 days