Skip to content

feat: Add data entry for APM #17501

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

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/sentry/static/sentry/app/utils/profiler.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default function profiler() {
description: `<${displayName}>`,
},
{
autoPopAfter: 500, // After this timeout we'll pop this activity regardless
autoPopAfter: 2000, // After this timeout we'll pop this activity regardless
}
);
// For whatever reason it's not guaranteed that `finishProfile` will be called, that's why we need
Expand Down
2 changes: 1 addition & 1 deletion src/sentry/templates/sentry/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
{% block scripts %}
{% locale_js_include %}
<script src="{% asset_url "sentry" "dist/vendor.js" %}"{% crossorigin %}></script>
<script src="{% asset_url "sentry" "dist/app.js" %}"{% crossorigin %}></script>
<script src="{% asset_url "sentry" "dist/app.js" %}"{% crossorigin %} data-entry="true"></script>

<script>
// if the ads.js file loads below it will mark this variable as false
Expand Down