Skip to content

Commit a54f660

Browse files
committed
Ensure stacktrace has a base line scope to avoid intermitted rendering issues
Signed-off-by: Dom Del Nano <ddelnano@gmail.com>
1 parent bf7e68f commit a54f660

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/pxl_scripts/px/differential_flamegraph/differential.pxl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,4 +74,4 @@ def differential_flamegraph(start_time: str, namespace: str, pod: str, baseline_
7474
pod2 = pod2.drop(['node', 'namespace', 'stack_trace_id'])
7575

7676
merged = merge_and_compute_delta(pod1, pod2, negate)
77-
return merged[['stack_trace', 'count', 'delta', 'percent']]
77+
return merged[['stack_trace', 'count', 'delta', 'percent', 'pod']]

src/pxl_scripts/px/differential_flamegraph/vis.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@
5858
"stacktraceColumn": "stack_trace",
5959
"countColumn": "count",
6060
"percentageColumn": "percent",
61+
"podColumn": "pod",
6162
"differenceColumn": "delta"
6263
}
6364
}

0 commit comments

Comments
 (0)