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
@@ -206,6 +207,10 @@ type TracingConfiguration struct {
206
207
207
208
```
208
209
210
+
### Risks and Mitigations
211
+
212
+
There is a risk of memory usage incurred by storing spans prior to export. This is mitigated by limiting the number of spans that can be queued for export, and dropping spans if necessary to stay under that limit.
213
+
209
214
## Design Details
210
215
211
216
### Test Plan
@@ -456,6 +461,10 @@ details). For now, we leave it here.
456
461
levels that could help debug the issue? **go-opentelemetry sdk provides logs indicating failure**
457
462
- Testing: It isn't particularly useful to test misconfigurations.
458
463
464
+
###### What steps should be taken if SLOs are not being met to determine the problem?
465
+
466
+
If you believe tracing is causing issues (e.g. increasing memory consumption), try disabling it by not providing a configuration file. It can also be helpful to collect CPU or memory profiles if you think tracing might be to blame for higher resource usage.
0 commit comments