[ZBX-10518] not all cases when escalation can be cancelled are listed in documentation Created: 2016 Mar 10 Updated: 2017 May 30 Resolved: 2016 Apr 05 |
|
Status: | Closed |
Project: | ZABBIX BUGS AND ISSUES |
Component/s: | Documentation (D) |
Affects Version/s: | None |
Fix Version/s: | None |
Type: | Incident report | Priority: | Trivial |
Reporter: | Oleksii Zagorskyi | Assignee: | Unassigned |
Resolution: | Fixed | Votes: | 0 |
Labels: | consistency, escalations | ||
Remaining Estimate: | Not Specified | ||
Time Spent: | Not Specified | ||
Original Estimate: | Not Specified |
Issue Links: |
|
Description |
For actions we have:
Something similar is mentioned in section "An action is disabled during an escalation in progress (like a message being sent)" here https://www.zabbix.com/documentation/3.0/manual/config/notifications/action/escalations Similar things happen for other cases too. *error = zbx_dsprintf(*error, "event id:" ZBX_FS_UI64 " deleted.", escalation->eventid); for trigger events: *error = zbx_dsprintf(*error, "trigger id:" ZBX_FS_UI64 " deleted.", triggerid); *error = zbx_dsprintf(*error, "trigger \"%s\" disabled.", trigger.description); *error = zbx_dsprintf(*error, "item \"%s\" disabled.", items[i].key_orig); *error = zbx_dsprintf(*error, "host \"%s\" disabled.", items[i].host.host); for internal (only) events with trigger object: *error = zbx_dsprintf(*error, "trigger id:" ZBX_FS_UI64 " deleted.", triggerid); *error = zbx_dsprintf(*error, "trigger \"%s\" disabled.", trigger.description); for internal (only) events with item or lld rule objects: *error = zbx_dsprintf(*error, "item id:" ZBX_FS_UI64 " deleted.", escalation->itemid); *error = zbx_dsprintf(*error, "item \"%s\" disabled.", item.key_orig); *error = zbx_dsprintf(*error, "host \"%s\" disabled.", item.host.host); the case which already mentioned in documentation, with another one which is not: *error = zbx_dsprintf(*error, "action '%s' disabled.", row[1]); *error = zbx_dsprintf(*error, "action id:" ZBX_FS_UI64 " deleted", escalation->actionid); But such server behavior is not described in documentation for mentioned entities in "Status" property. It's a inconsistency and probably could be fixed. |
Comments |
Comment by Martins Valkovskis [ 2016 Mar 24 ] |
Updated documentation: https://www.zabbix.com/documentation/3.0/manual/config/notifications/action/escalations Please review. I wonder if we need to mention all the messages too or it's enough to just mention all the cases when an escalation gets cancelled and describe the message once with one example.
REOPENED martins-v RESOLVED in:
sasha Thanks! CLOSED |