We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95ab76a commit e75bc0dCopy full SHA for e75bc0d
2 files changed
changelog.d/24708_log_error.fix.md
@@ -2,4 +2,4 @@ The `opentelemetry` source now logs an error if it fails to start up or during r
2
This can happen when the configuration is invalid, for example trying to bind to the wrong
3
IP or when hitting the open file limit.
4
5
-author: fbs
+authors: fbs
src/sources/opentelemetry/config.rs
@@ -357,7 +357,7 @@ impl SourceConfig for OpentelemetryConfig {
357
self.http.keepalive.clone(),
358
)
359
.map_err(|error| {
360
- error!(message = "OpenTelemetry HTTP source failed. Terminating", %error);
+ error!(message = "OpenTelemetry HTTP source failed. Terminating.", %error);
361
});
362
363
Ok(join(grpc_source, http_source).map(|_| Ok(())).boxed())
0 commit comments