com.aliyun.arms20190808.models.ListInsightsEventsResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of arms20190808 Show documentation
Show all versions of arms20190808 Show documentation
Alibaba Cloud Application Real-Time Monitoring Service (20190808) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.arms20190808.models;
import com.aliyun.tea.*;
public class ListInsightsEventsResponseBody extends TeaModel {
/**
* The details of the event.
*/
@NameInMap("InsightsEvents")
public java.util.List insightsEvents;
/**
* The request ID.
*
* example:
* 6F1174DC-6085-5353-AAE7-D4ADCD******
*/
@NameInMap("RequestId")
public String requestId;
public static ListInsightsEventsResponseBody build(java.util.Map map) throws Exception {
ListInsightsEventsResponseBody self = new ListInsightsEventsResponseBody();
return TeaModel.build(map, self);
}
public ListInsightsEventsResponseBody setInsightsEvents(java.util.List insightsEvents) {
this.insightsEvents = insightsEvents;
return this;
}
public java.util.List getInsightsEvents() {
return this.insightsEvents;
}
public ListInsightsEventsResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public static class ListInsightsEventsResponseBodyInsightsEvents extends TeaModel {
/**
* The time when the event occurred. The value is a timestamp.
*
* example:
* 1658890560
*/
@NameInMap("Date")
public Long date;
/**
* The description of the alert event.
*
* example:
* The overall response time of the [HTTP] service of the application [sd] spikes at [2022-07-27 10:57:00]
*/
@NameInMap("Desc")
public String desc;
/**
* The severity of the event.
*
* example:
* P3
*/
@NameInMap("Level")
public String level;
/**
* The ID of the application associated with the event.
*
* example:
* dsv9zcel92@7da413b******
*/
@NameInMap("Pid")
public String pid;
/**
* The problem identifier.
*
* example:
* erep3o9zue@01ebe697ab70566|@1499161100890550|@cn-hangzhou|@1701841800000|@1701842040000|@daa6c51a-3c44-4d57-9548-4e212c******
*/
@NameInMap("ProblemId")
public String problemId;
/**
* The title of the event.
*
* example:
* Average response-time spikes of application services
*/
@NameInMap("Title")
public String title;
/**
* The type of the event.
*
* example:
* rtIncrease
*/
@NameInMap("Type")
public String type;
public static ListInsightsEventsResponseBodyInsightsEvents build(java.util.Map map) throws Exception {
ListInsightsEventsResponseBodyInsightsEvents self = new ListInsightsEventsResponseBodyInsightsEvents();
return TeaModel.build(map, self);
}
public ListInsightsEventsResponseBodyInsightsEvents setDate(Long date) {
this.date = date;
return this;
}
public Long getDate() {
return this.date;
}
public ListInsightsEventsResponseBodyInsightsEvents setDesc(String desc) {
this.desc = desc;
return this;
}
public String getDesc() {
return this.desc;
}
public ListInsightsEventsResponseBodyInsightsEvents setLevel(String level) {
this.level = level;
return this;
}
public String getLevel() {
return this.level;
}
public ListInsightsEventsResponseBodyInsightsEvents setPid(String pid) {
this.pid = pid;
return this;
}
public String getPid() {
return this.pid;
}
public ListInsightsEventsResponseBodyInsightsEvents setProblemId(String problemId) {
this.problemId = problemId;
return this;
}
public String getProblemId() {
return this.problemId;
}
public ListInsightsEventsResponseBodyInsightsEvents setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
public ListInsightsEventsResponseBodyInsightsEvents setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy