()
| 1186 | } |
| 1187 | |
| 1188 | func (c HTTPClientConfig) String() string { |
| 1189 | b, err := yaml.Marshal(c) |
| 1190 | if err != nil { |
| 1191 | return fmt.Sprintf("<error creating http client config string: %s>", err) |
| 1192 | } |
| 1193 | return string(b) |
| 1194 | } |
| 1195 | |
| 1196 | type ProxyConfig struct { |
| 1197 | // HTTP proxy server to use to connect to the targets. |
nothing calls this directly
no outgoing calls
no test coverage detected