SouthLink
SouthLink
Same issue with Next 14.0.4 with custom server.
Does anyone know how to solve this problem
> Hi @SouthLink , can you try updating to the [7.114.0](https://github.com/getsentry/sentry-javascript/releases/tag/7.114.0) version of the sdk? There are some fixes in the newer versions that may help with capturing webvitals. >...
> 你好@SouthLink,我没有发现您发布的哨兵配置有任何问题,并且似乎您已经更新到了 最新版本的 sdk。 > > 我认为有几个因素可能会导致您无法收到 INP 和其他 webvitals 数据: > > * INP 仅在事件发生时触发`pagehide`(即当用户更改选项卡时)。如果您的用户不触发`pagehides`,这可能会影响您看到的 INP 数量。 > * 您的`tracesSampleRate`设置为`0.1`.本身不是问题,但`tracesSampleRate`会影响您网站发送的 INP 数量。 > * 您的网页可能没有任何交互元素,只有导航 > > 这些因素的结合可能会导致看不到任何 INP。...
> 你好@SouthLink,感谢您分享您的网页。 > > 我在桌面浏览器上查看了您的页面,并且能够通过单击来触发一些 INP 事件,因此我不认为存在任何配置问题。 > > 我注意到您的网页适用于移动设备,但我们尚未完全支持所有 Web Vitals。如果您的大部分流量来自移动用户,这可以解释为什么您看不到任何/有限的 INP 数据。 > > 我们计划在未来的更新中添加更好的移动支持 Thank you and I will keep up with your updates
```typescript protected async excel文件下载(url: string, payload: any) { const getBuffer = new Promise((resolve) => { this.page.once('response', async (response) => { if (!response.url().includes(url)) return; const text = await response.text(); // 使用text()方法获取文本数据...