Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
refactor(http_exporter): add empty space in logs
  • Loading branch information
pafi-code committed Dec 9, 2025
commit f63e8100b0eb2aa3a659002f0c83f98fefb820ed
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ def export(
or self._shutdown
):
_logger.error(
"Failed to export logs batch due to timeout,"
"Failed to export logs batch due to timeout, "
"max retries or shutdown."
)
return LogRecordExportResult.FAILURE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ def export(
or self._shutdown
):
_logger.error(
"Failed to export metrics batch due to timeout,"
"Failed to export metrics batch due to timeout, "
"max retries or shutdown."
)
return MetricExportResult.FAILURE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ def export(self, spans: Sequence[ReadableSpan]) -> SpanExportResult:
or self._shutdown
):
_logger.error(
"Failed to export span batch due to timeout,"
"Failed to export span batch due to timeout, "
"max retries or shutdown."
)
return SpanExportResult.FAILURE
Expand Down