problem panels: get problem actions

This commit is contained in:
Alexander Zobnin
2018-12-08 17:56:31 +03:00
parent 9e4bf88195
commit 198110e2af
4 changed files with 53 additions and 27 deletions

View File

@@ -398,6 +398,16 @@ export class ZabbixAPIConnector {
});
}
getEventAlerts(eventids) {
const params = {
eventids: eventids,
output: 'extend',
selectUsers: true,
};
return this.request('alert.get', params);
}
getAlerts(itemids, timeFrom, timeTo) {
var params = {
output: 'extend',