We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a68b0aa commit 798f501Copy full SHA for 798f501
1 file changed
src/sources/opentelemetry/config.rs
@@ -230,7 +230,7 @@ impl SourceConfig for OpentelemetryConfig {
230
cx.shutdown.clone(),
231
)
232
.map_err(|error| {
233
- error!(message = "Source future failed.", %error);
+ error!(message = "OpenTelemetry gRPC source failed. Terminating.", %error);
234
});
235
236
let http_tls_settings = MaybeTlsSettings::from_config(self.http.tls.as_ref(), true)?;
@@ -259,7 +259,7 @@ impl SourceConfig for OpentelemetryConfig {
259
self.http.keepalive.clone(),
260
261
262
+ error!(message = "OpenTelemetry HTTP source failed. Terminating", %error);
263
264
265
Ok(join(grpc_source, http_source).map(|_| Ok(())).boxed())
0 commit comments