Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update no-logs message #1670

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion src/robusta/core/playbooks/crash_reporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def send_crash_report(

if not container_log:
log_block = EmptyFileBlock(filename=f"{pod.metadata.name}.log",
remarks=f"Logs unavailable for container: {container_status.name}")
remarks=f"No logs were written by container: {container_status.name}")
logging.info(
f"could not fetch logs from container: {container_status.name}"
)
Expand Down
2 changes: 1 addition & 1 deletion src/robusta/core/playbooks/oom_killer_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def start_log_enrichment(

if not log_data:
log_block = EmptyFileBlock(filename=f"{pod.metadata.name}.log",
remarks=f"Logs unavailable for container: {container}")
remarks=f"No logs were written by container: {container}")
logging.info(
f"could not fetch logs from container: {container}"
)
Expand Down
Loading