Problems: use problems.get method for fetching triggers, closes #495
This commit is contained in:
@@ -34,3 +34,172 @@ export enum ShowProblemTypes {
|
||||
Recent = 'recent',
|
||||
History = 'history',
|
||||
}
|
||||
|
||||
export interface ProblemDTO {
|
||||
triggerid?: string;
|
||||
eventid?: string;
|
||||
timestamp: number;
|
||||
|
||||
/** Name of the trigger. */
|
||||
name?: string;
|
||||
|
||||
/** Same as a name. */
|
||||
description?: string;
|
||||
|
||||
/** Whether the trigger is in OK or problem state. */
|
||||
value?: string;
|
||||
|
||||
datasource?: string;
|
||||
comments?: string;
|
||||
host?: string;
|
||||
hostTechName?: string;
|
||||
proxy?: string;
|
||||
severity?: string;
|
||||
|
||||
acknowledged?: '1' | '0';
|
||||
acknowledges?: ZBXAcknowledge[];
|
||||
|
||||
groups?: ZBXGroup[];
|
||||
hosts?: ZBXHost[];
|
||||
items?: ZBXItem[];
|
||||
alerts?: ZBXAlert[];
|
||||
tags?: ZBXTag[];
|
||||
url?: string;
|
||||
|
||||
expression?: string;
|
||||
correlation_mode?: string;
|
||||
correlation_tag?: string;
|
||||
suppressed?: string;
|
||||
suppression_data?: any[];
|
||||
state?: string;
|
||||
maintenance?: boolean;
|
||||
manual_close?: string;
|
||||
error?: string;
|
||||
|
||||
showAckButton?: boolean;
|
||||
}
|
||||
|
||||
export interface ZBXProblem {
|
||||
acknowledged?: '1' | '0';
|
||||
acknowledges?: ZBXAcknowledge[];
|
||||
clock: string;
|
||||
ns: string;
|
||||
correlationid?: string;
|
||||
datasource?: string;
|
||||
name?: string;
|
||||
eventid?: string;
|
||||
maintenance?: boolean;
|
||||
object?: string;
|
||||
objectid?: string;
|
||||
opdata?: any;
|
||||
r_eventid?: string;
|
||||
r_clock?: string;
|
||||
r_ns?: string;
|
||||
severity?: string;
|
||||
showAckButton?: boolean;
|
||||
source?: string;
|
||||
suppressed?: string;
|
||||
suppression_data?: any[];
|
||||
tags?: ZBXTag[];
|
||||
userid?: string;
|
||||
}
|
||||
|
||||
export interface ZBXTrigger {
|
||||
acknowledges?: ZBXAcknowledge[];
|
||||
showAckButton?: boolean;
|
||||
alerts?: ZBXAlert[];
|
||||
age?: string;
|
||||
color?: string;
|
||||
comments?: string;
|
||||
correlation_mode?: string;
|
||||
correlation_tag?: string;
|
||||
datasource?: string;
|
||||
description?: string;
|
||||
error?: string;
|
||||
expression?: string;
|
||||
flags?: string;
|
||||
groups?: ZBXGroup[];
|
||||
host?: string;
|
||||
hostTechName?: string;
|
||||
hosts?: ZBXHost[];
|
||||
items?: ZBXItem[];
|
||||
lastEvent?: ZBXEvent;
|
||||
lastchange?: string;
|
||||
lastchangeUnix?: number;
|
||||
maintenance?: boolean;
|
||||
manual_close?: string;
|
||||
priority?: string;
|
||||
proxy?: string;
|
||||
recovery_expression?: string;
|
||||
recovery_mode?: string;
|
||||
severity?: string;
|
||||
state?: string;
|
||||
status?: string;
|
||||
tags?: ZBXTag[];
|
||||
templateid?: string;
|
||||
triggerid?: string;
|
||||
/** Whether the trigger can generate multiple problem events. */
|
||||
type?: string;
|
||||
url?: string;
|
||||
value?: string;
|
||||
}
|
||||
|
||||
export interface ZBXGroup {
|
||||
groupid: string;
|
||||
name: string;
|
||||
}
|
||||
|
||||
export interface ZBXHost {
|
||||
hostid: string;
|
||||
name: string;
|
||||
host: string;
|
||||
maintenance_status?: string;
|
||||
proxy_hostid?: string;
|
||||
}
|
||||
|
||||
export interface ZBXItem {
|
||||
itemid: string;
|
||||
name: string;
|
||||
key_: string;
|
||||
lastvalue?: string;
|
||||
}
|
||||
|
||||
export interface ZBXEvent {
|
||||
eventid: string;
|
||||
clock: string;
|
||||
ns?: string;
|
||||
value?: string;
|
||||
source?: string;
|
||||
object?: string;
|
||||
objectid?: string;
|
||||
acknowledged?: string;
|
||||
severity?: string;
|
||||
hosts?: ZBXHost[];
|
||||
acknowledges?: ZBXAcknowledge[];
|
||||
}
|
||||
|
||||
export interface ZBXTag {
|
||||
tag: string;
|
||||
value?: string;
|
||||
}
|
||||
|
||||
export interface ZBXAcknowledge {
|
||||
acknowledgeid: string;
|
||||
eventid: string;
|
||||
userid: string;
|
||||
action: string;
|
||||
clock: string;
|
||||
time: string;
|
||||
message?: string;
|
||||
user: string;
|
||||
alias: string;
|
||||
name: string;
|
||||
surname: string;
|
||||
}
|
||||
|
||||
export interface ZBXAlert {
|
||||
eventid: string;
|
||||
clock: string;
|
||||
message: string;
|
||||
error: string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user