problems panel: show actions status

This commit is contained in:
Alexander Zobnin
2018-12-08 18:08:32 +03:00
parent 198110e2af
commit 1d1559d8e0
2 changed files with 11 additions and 1 deletions

View File

@@ -70,6 +70,7 @@ export type TriggerColor = string;
export interface Trigger {
acknowledges?: ZBXAcknowledge[];
alerts?: ZBXAlert[];
age?: string;
color?: TriggerColor;
comments?: string;
@@ -151,3 +152,9 @@ export interface ZBXAcknowledge {
name: string;
surname: string;
}
export interface ZBXAlert {
clock: string;
message: string;
error: string;
}