chore(unified-storage): add tracing for unified storage folder implementation (#105601)

This commit is contained in:
Mustafa Sencer Özcan
2025-05-19 23:25:08 +03:00
committed by GitHub
parent d57ce72969
commit 91882cf50e
10 changed files with 95 additions and 28 deletions
+4 -1
View File
@@ -37,11 +37,14 @@ func TestIntegrationWillRunInstrumentationServerWhenTargetHasNoHttpServer(t *tes
errChan := make(chan error, 1)
go func() {
time.Sleep(1 * time.Second)
errChan <- ms.Run()
}()
require.Eventually(t, func() bool {
client := http.Client{}
client := http.Client{
Timeout: 1 * time.Second,
}
res, err := client.Get("http://localhost:3001/metrics")
if err != nil {
return false