打开React和Vanilla JS项目的遥测
有人可以帮助我了解是否有一种方法可以在客户端为 React 和 vanilla JS 项目配置开放遥测,我想做的就是控制台从浏览器进行的 fetch 调用的跟踪。
我看到的大部分文档都是针对nodejs的。请指出文档是否有?
Can someone help me understand if there is a way to configure open Telemetry on the client side for react and vanilla JS projects all I want to do is to console the traces of fetch call that are being made from the browser.
Most of the documentation I see is only for nodejs. Pls pinpoint a documentation if there are any?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该文档提供了 Javascript 的通用指南。您为 React 所做的事情与您为 Node.js 甚至简单的 JS 脚本所做的事情相同。
只需按照文档操作即可。创建并导出跟踪器:
在应用程序的入口点(通常是
index.js
)中像这样导入跟踪器:The documentation gives a common guide for Javascript. What you do for you React would be same as what you do for Node.js or even simple JS scripts.
Just follow the documentation. Create and export a tracer:
Import the tracer like this in your app's entry point (usually
index.js
):