We don't trace outgoing requests to data-fetchers when navigating: We monkeypatch Route.changeState by starting a transaction when it's called. This doesn't work because the requests to the data fetching endpoints (e.g. getServerSideProps) happen before Route.changeState is called. There are no active transaction when these requests happen so there are no traced requests.
We don't trace outgoing requests to data-fetchers when navigating: We monkeypatch
Route.changeStateby starting a transaction when it's called. This doesn't work because the requests to the data fetching endpoints (e.g.getServerSideProps) happen beforeRoute.changeStateis called. There are no active transaction when these requests happen so there are no traced requests.