Skip to content

Commit 1ac6d3e

Browse files
authored
fix(agents-insights): link to samples instead of aggregates (#94156)
1 parent eac9f7a commit 1ac6d3e

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

static/app/views/insights/agentMonitoring/components/modelsTable.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,15 +176,14 @@ const BodyCell = memo(function BodyCell({
176176

177177
const exploreUrl = getExploreUrl({
178178
organization,
179-
mode: Mode.AGGREGATE,
179+
mode: Mode.SAMPLES,
180180
visualize: [
181181
{
182182
chartType: ChartType.BAR,
183183
yAxes: ['count(span.duration)'],
184184
},
185185
],
186186
query: `${AI_MODEL_ID_ATTRIBUTE}:${dataRow.model}`,
187-
sort: `-count(span.duration)`,
188187
});
189188

190189
switch (column.key) {

static/app/views/insights/agentMonitoring/components/toolsTable.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,15 +164,14 @@ const BodyCell = memo(function BodyCell({
164164

165165
const exploreUrl = getExploreUrl({
166166
organization,
167-
mode: Mode.AGGREGATE,
167+
mode: Mode.SAMPLES,
168168
visualize: [
169169
{
170170
chartType: ChartType.BAR,
171171
yAxes: ['count(span.duration)'],
172172
},
173173
],
174174
query: `${AI_TOOL_NAME_ATTRIBUTE}:${dataRow.tool}`,
175-
sort: `-count(span.duration)`,
176175
});
177176

178177
switch (column.key) {

0 commit comments

Comments
 (0)