problems: initial timeline

This commit is contained in:
Alexander Zobnin
2018-12-14 23:30:41 +03:00
parent 1d1559d8e0
commit 566db376a2
5 changed files with 198 additions and 10 deletions

View File

@@ -132,6 +132,8 @@ export interface ZBXEvent {
object?: string;
objectid?: string;
acknowledged?: string;
hosts?: ZBXHost[];
acknowledges?: ZBXAcknowledge[];
}
export interface ZBXTag {
@@ -158,3 +160,8 @@ export interface ZBXAlert {
message: string;
error: string;
}
export interface GFTimeRange {
timeFrom: number;
timeTo: number;
}