diff options
| author | Will Hawkins <[email protected]> | 2023-05-23 00:04:04 -0400 |
|---|---|---|
| committer | Will Hawkins <[email protected]> | 2023-05-23 00:04:04 -0400 |
| commit | d4a0d400be96b8dda43096d41bdd6a1fc1fd4245 (patch) | |
| tree | 54e2d41add55840af2b3b28379d562bc85c16a62 /rpm/rpm.go | |
| parent | b0ebad5427f6378d2b1923cba59d357efeb86a1b (diff) | |
Additional debugging around non-reused connections
When a probe does not properly reuse an existing connection, do some
additional logging to help the debugging process.
Diffstat (limited to 'rpm/rpm.go')
| -rw-r--r-- | rpm/rpm.go | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -151,6 +151,7 @@ func CombinedProber( networkActivityCtx, &wg, foreignProbeClient, + nil, foreignProbeConfiguration.URL, foreignProbeConfiguration.Host, probe.Foreign, @@ -169,6 +170,7 @@ func CombinedProber( networkActivityCtx, &wg, selfDownProbeConnection.Client(), + selfDownProbeConnection, selfProbeConfiguration.URL, selfProbeConfiguration.Host, probe.SelfDown, @@ -191,6 +193,7 @@ func CombinedProber( proberCtx, &wg, selfUpProbeConnection.Client(), + nil, selfProbeConfiguration.URL, selfProbeConfiguration.Host, probe.SelfUp, |
