Werk #17249: notifications: change to the 'url_prefix_for_links_to_checkmk' field
Component | REST API | ||
Title | notifications: change to the 'url_prefix_for_links_to_checkmk' field | ||
Date | Nov 12, 2024 | ||
Level | Trivial Change | ||
Class | Bug Fix | ||
Compatibility | Incompatible - Manual interaction might be required | ||
Checkmk versions & editions |
|
Due to recent changes to notifications, we've made a change to the field "url_prefix_for_links_to_checkmk" in the Pushover plugin. This change brings this plugin in line with all other plugins and offers more flexibility. You can now set it to automatic http, automatic https or manual, providing the url.
Please update your scripts accordingly.
Previously, this field looked like
''' "url_prefix_for_links_to_checkmk": { "state": "enabled", "value": "http://http_proxy_test_url/here", }, '''
and now it looks like
''' "url_prefix_for_links_to_checkmk": { "state": "enabled", "value": {"option": "manual", "url": "http://http_proxy_test_url/here"} } '''
or
''' "url_prefix_for_links_to_checkmk": { "state": "enabled", "value": {"option": "automatic", "schema": "https"} } '''
or
''' "url_prefix_for_links_to_checkmk": { "state": "enabled", "value": {"option": "automatic", "schema": "https"} }
'''