mikan3rd

Results 11 comments of mikan3rd
trafficstars

@unlight I ran the command you gave me and was able to create the files and directories without any problems.

I found the solution of the problem. 1. Update react-ga (now I use 2.5.2) 2. Install [Chrome GA Debugger Extension](https://chrome.google.com/webstore/detail/google-analytics-debugger/jnkmfdileelhofjcijamephohjechhna). It's help you to watch detail log. 3. Initialize Multiple...

I solved the problem by using setTimeout instead of requestAnimationFrame.

Similar problem occurred when building. ``` firebase.auth() WebpackError: TypeError: gatsby_plugin_firebase__WEBPACK_IMPORTED_MODULE_1__.default.auth is not a function ``` I can fix it by adding `import "firebase/auth"`, but that was not specified in the...

Sorry, I didn't provide enough links to refer to. See the following frontend and backend Issue. "View full trace" shows that the trace ID allocated on the frontend side is...

The following is the log Log ``` Sentry Logger [debug]: @opentelemetry/instrumentation-http Applying instrumentation patch for nodejs core module on require hook { module: 'http' } Sentry Logger [debug]: @opentelemetry/instrumentation-http Applying...

The following is `Sentry.init`. Code ```ts Sentry.init({ dsn: process.env.SENTRY_DSN, environment: process.env.APP_ENV, enabled: true, debug: true, release: process.env.SENTRY_RELEASE, serverName: 'app', sampleRate: 1.0, tracesSampleRate: 1.0, normalizeDepth: 10, beforeSend(event, hint) { event.fingerprint =...

I removed the code and the code about continueTrace, but the frontend and backend trace IDs remained different. - frontend: https://bizforward.sentry.io/issues/5667469061/events/964695b1aabd41fc95bc65a7c45a0eaf/ - backend: https://bizforward.sentry.io/issues/5667469057/events/befa404b15d54c46acb52c574db28962/ Log ``` Sentry Logger [debug]: @opentelemetry/instrumentation-http...

The following is the logs from application startup. Logs ``` [INFO] 11:06:42 ts-node-dev ver. 2.0.0 (using ts-node ver. 10.9.2, typescript ver. 5.5.4) Debugger listening on ws://127.0.0.1:9229/bbbfeaeb-b7ea-48d8-81fe-f15da2092a96 For help, see: https://nodejs.org/en/docs/inspector...

Thanks for the reply. I have managed to get trace to work by putting `Sentry.init` before all imports. However, I am concerned that I am getting the following error after...