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

fix: Few fixes on sentry table management and data display #15

Merged
merged 5 commits into from
Oct 28, 2022
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix: sentry plugin on fetch stats should not pass an empty transactio…
…n duration
  • Loading branch information
adrien2p committed Oct 28, 2022
commit 371bec43452bfeb394d64cea5768705ffbb230af
2 changes: 1 addition & 1 deletion packages/medusa-plugin-sentry/src/services/sentry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ export default class SentryService extends TransactionBaseService {
partial: 1,
project,
statsPeriod,
query: `transaction.duration event.type:transaction ${transaction ? `transaction:"${transaction}"` : ''}`,
query: `event.type:transaction ${transaction ? `transaction:"${transaction}"` : ''}`,
yAxis: ['apdex()', 'tpm()', 'failure_rate()'],
};

Expand Down