Skip to content

Commit

Permalink
feat(explore): Removing support for grouping by id (#83978)
Browse files Browse the repository at this point in the history
Co-authored-by: Abdullah Khan <[email protected]>
  • Loading branch information
Abdkhan14 and Abdullah Khan authored Jan 24, 2025
1 parent 8c0c473 commit 3a0b255
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion static/app/views/explore/toolbar/toolbarGroupBy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ export function ToolbarGroupBy({disabled}: ToolbarGroupByProps) {

const enabledOptions: Array<SelectOption<string>> = useMemo(() => {
const potentialOptions = [
...Object.keys(tags),
// We do not support grouping by span id, we have a dedicated sample mode for that
...Object.keys(tags).filter(key => key !== 'id'),

// These options aren't known to exist on this project but it was inserted into
// the group bys somehow so it should be a valid options in the group bys.
Expand Down

0 comments on commit 3a0b255

Please sign in to comment.