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
You can view the [Jaeger UI](http://localhost:16686/) and trace your request.
1739
+
1740
+
By default, the tracing is enabled in Grid components. Without trace exporter endpoint, it will look up a local instance e.g. `localhost/[0:0:0:0:0:0:0:1]:4117`.
1741
+
In container logs you can see few lines like below:
1742
+
1743
+
```bash
1744
+
ERROR (ThrottlingLogger.dolog) Failed to export spans.
1745
+
The request could not be executed. Error message: Failed to connect to localhost/[0:0:0:0:0:0:0:1]:4117
1746
+
java.net.ConnectException: Failed to connect to localhost/[0:0:0:0:0:0:0:1]:4317
1747
+
at okhttp3.internal.connection.RealConnection.connectSocket(RealConnection.kt:297)
1748
+
at okhttp3.internal.connection. ExchangeFinder.findConnection (Exchangefinder.kt: 226)
1749
+
at okhttp3.internal.connection.okhttps.internal.connection.RealConnection.connect(RealConnection.kt:207)
1750
+
```
1751
+
1752
+
In this case, just simply set `SE_ENABLE_TRACING=false` to all components container to disable tracing (each component exports its own traces).
1753
+
1739
1754
___
1740
1755
1741
1756
## Troubleshooting
@@ -1769,7 +1784,11 @@ or
1769
1784
1770
1785
`Message: unknown error: Chrome failed to start: exited abnormally`
1771
1786
1772
-
The reason _might_ be that you've set the `START_XVFB` environment variable to "false", but forgot to
1787
+
or
1788
+
1789
+
` [DriverServiceSessionFactory.apply] - Error while creating session with the driver service. Stopping driver service: java.util.concurrent.TimeoutException`
1790
+
1791
+
The reason _might_ be that you've set the `SE_START_XVFB` environment variable to `false`, but forgot to
1773
1792
actually run Firefox, Chrome or Edge in headless mode.
0 commit comments