Skip to content
New issue

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

Read build tool info from sentry-debug-meta.properties and attach it to events #4314

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

lcian
Copy link
Member

@lcian lcian commented Apr 3, 2025

📜 Description

Reads the build tool and its version from sentry-debug-meta.properties and sends it as part of the packages.

The build tool is being written to sentry-debug-meta.properties by the plugin (io.sentry.build-tool set to resp. maven and gradle).
The plugins don't currently set io.sentry.build-tool-version, so if it's not there we fall back to reporting "unknown" as the version.
In a future release of the plugin we can make it so they both write io.sentry.build-tool-version as well.

💡 Motivation and Context

Closes #4142

💚 How did you test it?

Unit tests

📝 Checklist

  • I added tests to verify the changes.
  • No new PII added or SDK only sends newly added PII if sendDefaultPII is enabled.
  • I updated the docs if needed.
  • I updated the wizard if needed.
  • Review from the native team if needed.
  • No breaking change or entry added to the changelog.
  • No breaking change for hybrid SDKs or communicated to hybrid SDKs.

🔮 Next steps

Change both of the plugins to report io.sentry.build-tool-version.

applyBuildTool(options, debugMetaProperties);
}
}

public static void applyToOptions(
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This class and method are public and not marked as internal so I've created a new method to implement the new behavior

.getLogger()
.log(
SentryLevel.DEBUG, "Build tool found: %s, version %s", buildTool, buildToolVersion);
SentryIntegrationPackageStorage.getInstance().addPackage(buildTool, buildToolVersion);
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't like that we're abusing the sdk.packages field of the envelope.
Should we maybe send it as sdk.build-tool or something? Even though it's not officially supported by the protocol.

Copy link
Contributor

github-actions bot commented Apr 3, 2025

Performance metrics 🚀

  Plain With Sentry Diff
Startup time 419.33 ms 461.70 ms 42.37 ms
Size 1.58 MiB 2.08 MiB 505.35 KiB

Previous results on branch: lcian/feat/report-build-tool

Startup times

Revision Plain With Sentry Diff
3d440b1 394.16 ms 409.35 ms 15.19 ms

App size

Revision Plain With Sentry Diff
3d440b1 1.58 MiB 2.08 MiB 505.34 KiB

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Send build tool info to Sentry
1 participant