Skip to content

Commit

Permalink
callstack: Add Descriptive Stats under new analysis
Browse files Browse the repository at this point in the history
Add the Descriptive Statistics view under the LTTng-UST CallStack (new)
analysis, alongside the others. Do so as Incubator also lists it there.

Change-Id: I786367c61d6e278461e71ba03713d7af745f50ac
Signed-off-by: Marco Miller <marco.miller@ericsson.com>
Reviewed-on: https://git.eclipse.org/r/c/tracecompass/org.eclipse.tracecompass/+/199921
Tested-by: Trace Compass Bot <tracecompass-bot@eclipse.org>
Tested-by: Bernd Hufmann <bernd.hufmann@ericsson.com>
Reviewed-by: Bernd Hufmann <bernd.hufmann@ericsson.com>
  • Loading branch information
marco-miller committed Mar 31, 2023
1 parent 7bb11af commit 97d76b1
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
package org.eclipse.tracecompass.internal.analysis.callstack.ui;

import org.eclipse.jdt.annotation.Nullable;
import org.eclipse.tracecompass.analysis.timing.ui.views.segmentstore.statistics.SegmentStoreStatisticsView;
import org.eclipse.tracecompass.internal.analysis.callstack.core.instrumented.IFlameChartProvider;
import org.eclipse.tracecompass.internal.analysis.callstack.core.tree.IWeightedTreeProvider;
import org.eclipse.tracecompass.internal.analysis.callstack.ui.flamegraph.FlameGraphSelView;
Expand All @@ -36,6 +37,7 @@ public void moduleCreated(@Nullable IAnalysisModule module) {
if (module instanceof IFlameChartProvider) {
module.registerOutput(new TmfAnalysisViewOutput(FlameChartView.ID, module.getId()));
module.registerOutput(new TmfAnalysisViewOutput(FunctionDensityView.ID, module.getId()));
module.registerOutput(new TmfAnalysisViewOutput(SegmentStoreStatisticsView.ID, module.getId()));
}
if (module instanceof IWeightedTreeProvider) {
module.registerOutput(new TmfAnalysisViewOutput(FlameGraphView.ID, module.getId()));
Expand Down

0 comments on commit 97d76b1

Please sign in to comment.