We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa45875 commit cd5cc7dCopy full SHA for cd5cc7d
.changeset/unlucky-peaches-reply.md
@@ -0,0 +1,5 @@
1
+---
2
+"@hyperdx/app": patch
3
4
+
5
+fix: Fixed trace table source inference to correctly infer span events column
packages/app/src/source.ts
@@ -281,7 +281,7 @@ export async function inferTableSourceConfig({
281
]);
282
283
// Check if SpanEvents column is available
284
- const hasSpanEvents = columns.some(col => col.name === 'Events');
+ const hasSpanEvents = columns.some(col => col.name === 'Events.Timestamp');
285
286
const timestampColumns = filterColumnMetaByType(columns, [JSDataType.Date]);
287
const primaryKeyTimestampColumn = timestampColumns?.find(c =>
0 commit comments