Skip to content

Latest commit

 

History

History
104 lines (84 loc) · 11.6 KB

NOTES.md

File metadata and controls

104 lines (84 loc) · 11.6 KB

jetbrains-error-utils Notes

Maven Central Release

OSS Implementations of com.intellij.openapi.diagnostic.ErrorReportSubmitter

Azure App Insights

Search Results: GitHub Code Search

GitHub

Search Results: GitHub Code Search

Jira

Search Results: GitHub Code Search

Sentry.io

Search Results: GitHub Code Search

Blog Post with Example

JetBrains Marketplace Exception Analyzer

2024-03-11 - Anna Maltceva - :jetbrains: - 9:39 AM
Dear Plugin Developers,
Exception Analyser beta version is now available on JetBrains Marketplace!
How It Works:
This new feature allows for exception reporting directly within JetBrains Marketplace. When users encounter an exception, they'll see the IDE Internal Errors dialog, offering them the option to report to the third-party plugin. This report will then be added to your exceptions listing for the plugin on JetBrains Marketplace. To see the Exception Analyzer report, navigate to your plugin's dashboard and select the Exceptions tab (see the screenshot attached).
How to Gain Early Access:
Express Your Interest:
Please send the email address associated with your Marketplace account via direct message, enabling us to activate this feature.
2. Implement Exception Reporting in Your Plugin:
Add the following entry to your plugin.xml file to enable the JetBrains Marketplace error handler:
<idea-plugin>
   <!--  ...  -->
  
   <extensions defaultExtensionNs="com.intellij">
       <errorHandler implementation="com.intellij.diagnostic.JetBrainsMarketplaceErrorReportSubmitter"/>
   </extensions>
</idea-plugin>
If you're using the IntelliJ Platform Plugin Template, update your gradle.properties file with the following configuration:
pluginSinceBuild = 233
pluginUntilBuild = 241.*
platformType = IC
platformVersion = 2023.3.4
We welcome any feedback on this feature and may reach out to you for further insights. Should you encounter any issues, please report them to our issue tracker: https://youtrack.jetbrains.com/issues/MP.
Looking forward to your participation and feedback!