Skip to content

Commit

Permalink
Show plug-in instead of result in failed notifications
Browse files Browse the repository at this point in the history
CMK-22033

Change-Id: If04d6a426e3512213a04db8e2bd8d27b88aebc63
  • Loading branch information
makanakoeln committed Feb 25, 2025
1 parent 4ac4d0b commit 4d1002d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmk/gui/notifications.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class FailedNotificationTimes(NamedTuple):
g_columns: list[str] = [
"time",
"contact_name",
"type",
"command_name",
"host_name",
"service_description",
"comment",
Expand Down Expand Up @@ -247,7 +247,7 @@ def _show_notification_table(self, failed_notifications: LivestatusResponse) ->
_("Time"), cmk.utils.render.approx_age(time.time() - row[header["time"]])
)
table.cell(_("Contact"), row[header["contact_name"]])
table.cell(_("Plug-in"), row[header["type"]])
table.cell(_("Plug-in"), row[header["command_name"]])
table.cell(_("Host"), row[header["host_name"]])
table.cell(_("Service"), row[header["service_description"]])
table.cell(_("Output"), row[header["comment"]])
Expand Down

0 comments on commit 4d1002d

Please sign in to comment.