Skip to content
Open
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 packages/cmk-ec/cmk/ec/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -1787,7 +1787,7 @@ def create_event_from_trap(trap: Iterable[tuple[str, str]], ipaddress_: str) ->
priority=5, # notice
facility=31, # not used by syslog -> we use this for all traps
application=scrub_string(trapOIDs[0][1] if trapOIDs else ""),
text=scrub_string(", ".join(f"{oid}: {value}" for oid, value in other)),
text="\x01".join(scrub_string(f"{oid}: {value}") for oid, value in other),
core_host=None,
host_in_downtime=False,
)
Expand Down
Loading