Open stack trace content from plugin

Hi

I found this extension point, AnalyzeStacktraceUtil, but it is marked with @Internal. How can I open the stack trace tab, as this extension does, from a plugin, which holds the stack trace content?

Thanks

Hi @jgafner!

The analyzeStacktraceRunContentProvider extension point’s API is currently marked as @Internal because it’s not finalized and may change. While you can use it, please be aware that future updates could break your plugin’s compatibility.

You have two options:

  1. Use the current internal API if you want to extend Analyze Stacktrace action but be prepared to handle potential breaking changes in future IDE versions.
  2. You can create a custom action that opens a Run tool window tab with your stack trace content. You can use AnalyzeStacktraceUtil as a reference.

Thanks - I am actively working on the plugin so I will keep it from now.
Thanks