We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The GroupRegExs and FoldRegExs filters are not propagated to StackWindow when using OpenStackViewer.
GroupRegExs
FoldRegExs
StackWindow
OpenStackViewer
public class Commands : CommandEnvironment { public void TestFileView(string fileName, string viewName) { var etlFile = OpenETLFile(fileName); var stacks = new Stacks(new MutableTraceEventStackSource(etlFile.TraceLog), viewName, etlFile); stacks.Filter.GroupRegExs += "GroupRegExs"; stacks.Filter.FoldRegExs += "FoldRegExs"; stacks.Filter.IncludeRegExs += "IncludeRegExs"; stacks.Filter.ExcludeRegExs += "ExcludeRegExs"; stacks.Filter.MinInclusiveTimePercent += "12.34"; OpenStackViewer(stacks); } }
I think they are applied to the data itself, but the drop downs don't show them.
Default values for the Stacks.Filter don't seem to match with those in StackWindow.
Stacks.Filter
When changing the values on the dropdown, it doesn't seem to overwrite the filter values set to Stacks (e.g., when clearing the FoldPats).
Stacks
FoldPats
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The
GroupRegExs
andFoldRegExs
filters are not propagated toStackWindow
when usingOpenStackViewer
.I think they are applied to the data itself, but the drop downs don't show them.
Default values for the
Stacks.Filter
don't seem to match with those inStackWindow
.When changing the values on the dropdown, it doesn't seem to overwrite the filter values set to
Stacks
(e.g., when clearing theFoldPats
).The text was updated successfully, but these errors were encountered: