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
Is it just engine performance API that prevents from collecting the data during just Ajax interactions?
I don't really understand the point of configuring the call like
Backbone.history.on 'route', (router, route) ->
# Will only send on the initial page load:
Bucky.sendPagePerformance("some.location.page.#{ route }")
if it is not going to send anything anyway because there was no full page request in SPA.
SPA often have bottlenecks on some specific subviews due to non-optimal implementation of DOM updates etc... So in general monitoring for that would be perfect thing (again, if it is something that can be supported by using standard APIs)
The text was updated successfully, but these errors were encountered:
As I see from the code
https://github.com/HubSpot/BuckyClient/blob/master/bucky.coffee#L369
Bucky will ignore all the calls to sendPagePerformance after it is done it once on initial load.
Is it just engine performance API that prevents from collecting the data during just Ajax interactions?
I don't really understand the point of configuring the call like
if it is not going to send anything anyway because there was no full page request in SPA.
SPA often have bottlenecks on some specific subviews due to non-optimal implementation of DOM updates etc... So in general monitoring for that would be perfect thing (again, if it is something that can be supported by using standard APIs)
The text was updated successfully, but these errors were encountered: