This repository was archived by the owner on Jun 13, 2023. It is now read-only.
File tree 3 files changed +20
-1
lines changed
3 files changed +20
-1
lines changed Original file line number Diff line number Diff line change
1
+ # GoLand IDE
2
+ .idea
3
+
1
4
# Binaries for programs and plugins
2
5
* .exe
3
6
* .exe~
Original file line number Diff line number Diff line change @@ -119,6 +119,7 @@ Advanced options can be configured as a parameter to the `Config` struct to the
119
119
| MetadataOnly | EPSAGON_METADATA | Boolean| ` true ` | Whether to send only the metadata (` True ` ) or also the payloads (` False ` ) |
120
120
| CollectorURL | EPSAGON_COLLECTOR_URL | String | - | The address of the trace collector to send trace to |
121
121
| 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 |
122
123
123
124
124
125
Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ func NewTracerConfig(applicationName, token string) *Config {
39
39
Token : token ,
40
40
MetadataOnly : true ,
41
41
Debug : false ,
42
+ SendTimeout : "1s" ,
42
43
}
43
44
}
44
45
@@ -49,6 +50,7 @@ type Config struct {
49
50
CollectorURL string
50
51
MetadataOnly bool
51
52
Debug bool
53
+ SendTimeout string
52
54
}
53
55
54
56
type epsagonTracer struct {
@@ -84,7 +86,13 @@ func (tracer *epsagonTracer) sendTraces() {
84
86
log .Printf ("Epsagon: Encountered an error while marshaling the traces: %v\n " , err )
85
87
return
86
88
}
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 }
88
96
89
97
handleSendTracesResponse (client .Post (tracer .Config .CollectorURL , "application/json" , tracesReader ))
90
98
}
@@ -175,6 +183,13 @@ func fillConfigDefaults(config *Config) {
175
183
log .Printf ("EPSAGON DEBUG: setting collector url to %s\n " , config .CollectorURL )
176
184
}
177
185
}
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
+ }
178
193
}
179
194
180
195
// CreateTracer will initiallize a global epsagon tracer
You can’t perform that action at this time.
0 commit comments