Skip to content
This repository was archived by the owner on Jun 13, 2023. It is now read-only.

Commit 35a0bfb

Browse files
authored
http client timeout parameter (#26)
1 parent d50cb67 commit 35a0bfb

File tree

3 files changed

+20
-1
lines changed

3 files changed

+20
-1
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# GoLand IDE
2+
.idea
3+
14
# Binaries for programs and plugins
25
*.exe
36
*.exe~

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ Advanced options can be configured as a parameter to the `Config` struct to the
119119
|MetadataOnly |EPSAGON_METADATA |Boolean|`true` |Whether to send only the metadata (`True`) or also the payloads (`False`) |
120120
|CollectorURL |EPSAGON_COLLECTOR_URL |String |- |The address of the trace collector to send trace to |
121121
|Debug |EPSAGON_DEBUG |Boolean|`False` |Enable debug prints for troubleshooting |
122+
|SendTimeout |EPSAGON_SEND_TIMEOUT_SEC |String |`1s` |The timeout duration to send the traces to the trace collector |
122123

123124

124125

epsagon/tracer.go

+16-1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ func NewTracerConfig(applicationName, token string) *Config {
3939
Token: token,
4040
MetadataOnly: true,
4141
Debug: false,
42+
SendTimeout: "1s",
4243
}
4344
}
4445

@@ -49,6 +50,7 @@ type Config struct {
4950
CollectorURL string
5051
MetadataOnly bool
5152
Debug bool
53+
SendTimeout string
5254
}
5355

5456
type epsagonTracer struct {
@@ -84,7 +86,13 @@ func (tracer *epsagonTracer) sendTraces() {
8486
log.Printf("Epsagon: Encountered an error while marshaling the traces: %v\n", err)
8587
return
8688
}
87-
client := &http.Client{Timeout: time.Duration(time.Second)}
89+
sendTimeout, err := time.ParseDuration(tracer.Config.SendTimeout)
90+
if err != nil {
91+
log.Printf("Epsagon: Encountered an error while parsing send timeout: %v\n", err)
92+
return
93+
}
94+
95+
client := &http.Client{Timeout: sendTimeout}
8896

8997
handleSendTracesResponse(client.Post(tracer.Config.CollectorURL, "application/json", tracesReader))
9098
}
@@ -175,6 +183,13 @@ func fillConfigDefaults(config *Config) {
175183
log.Printf("EPSAGON DEBUG: setting collector url to %s\n", config.CollectorURL)
176184
}
177185
}
186+
sendTimeout := os.Getenv("EPSAGON_SEND_TIMEOUT_SEC")
187+
if len(sendTimeout) != 0 {
188+
config.SendTimeout = sendTimeout
189+
if config.Debug {
190+
log.Println("EPSAGON DEBUG: setting send timeout from environment variable")
191+
}
192+
}
178193
}
179194

180195
// CreateTracer will initiallize a global epsagon tracer

0 commit comments

Comments
 (0)