You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Current implementation auto captures spans (HTTP calls and DB operation for EF Core) even if those spans will be later discarded because the transaction is not sampled or it reached "transaction max spans" (assuming we already implemented the latter - see #178, #472)
Note: we might need to still capture some information for "to be discarded" spans in order to include it in breakdown metrics (#227) but we can still improve performance by not doing anything is not necessary for breakdown metrics. For example we can omit parsing DB statement, etc.
The text was updated successfully, but these errors were encountered:
SergeyKleyman
changed the title
Agent should not auto capture spans that will be not sampled/discarded as a performance improvement
Performance improvement: Agent should not auto capture spans that will be discarded
Sep 5, 2019
Current implementation auto captures spans (HTTP calls and DB operation for EF Core) even if those spans will be later discarded because the transaction is not sampled or it reached "transaction max spans" (assuming we already implemented the latter - see #178, #472)
Note: we might need to still capture some information for "to be discarded" spans in order to include it in breakdown metrics (#227) but we can still improve performance by not doing anything is not necessary for breakdown metrics. For example we can omit parsing DB statement, etc.
The text was updated successfully, but these errors were encountered: