Truncate long hostnames in monitoring view Host column

Hostnames longer than 32 characters are now truncated with an ellipsis
in view.py tables, with the full name shown as a tooltip on hover. The
copy buttons in the Extra column keep copying the full, untruncated
hostname regardless of the displayed text.
This commit is contained in:
Luigi D'Acunto 2026-07-29 17:27:04 +02:00
parent 95f8a899a7
commit 45d6187150
3 changed files with 24 additions and 1 deletions

View file

@ -88,6 +88,8 @@ Adds a dedicated **Extra** column before the Host column in all monitoring view
The IP address is read from the tooltip Checkmk places on the hostname cell. Clicking any clipboard button briefly turns it green to confirm the copy.
Hostnames longer than 32 characters are truncated with an ellipsis in the Host column; hover to see the full name in a tooltip. The copy buttons above always copy the full, untruncated hostname regardless of what's displayed.
Applies to: `view.py` host and service views.
---