94 lines
2.3 KiB
Java
94 lines
2.3 KiB
Java
|
|
package com.zdjizhi.common;
|
||
|
|
|
||
|
|
import java.io.Serializable;
|
||
|
|
|
||
|
|
public class DosMetricsLog implements Serializable {
|
||
|
|
|
||
|
|
private long sketch_start_time;
|
||
|
|
private String common_sled_ip;
|
||
|
|
private String common_data_center;
|
||
|
|
private String attack_type;
|
||
|
|
private String destination_ip;
|
||
|
|
private long session_rate;
|
||
|
|
private long packet_rate;
|
||
|
|
private long bit_rate;
|
||
|
|
|
||
|
|
public long getSketch_start_time() {
|
||
|
|
return sketch_start_time;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setSketch_start_time(long sketch_start_time) {
|
||
|
|
this.sketch_start_time = sketch_start_time;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getCommon_sled_ip() {
|
||
|
|
return common_sled_ip;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setCommon_sled_ip(String common_sled_ip) {
|
||
|
|
this.common_sled_ip = common_sled_ip;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getCommon_data_center() {
|
||
|
|
return common_data_center;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setCommon_data_center(String common_data_center) {
|
||
|
|
this.common_data_center = common_data_center;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getAttack_type() {
|
||
|
|
return attack_type;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setAttack_type(String attack_type) {
|
||
|
|
this.attack_type = attack_type;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getDestination_ip() {
|
||
|
|
return destination_ip;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setDestination_ip(String destination_ip) {
|
||
|
|
this.destination_ip = destination_ip;
|
||
|
|
}
|
||
|
|
|
||
|
|
public long getSession_rate() {
|
||
|
|
return session_rate;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setSession_rate(long session_rate) {
|
||
|
|
this.session_rate = session_rate;
|
||
|
|
}
|
||
|
|
|
||
|
|
public long getPacket_rate() {
|
||
|
|
return packet_rate;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setPacket_rate(long packet_rate) {
|
||
|
|
this.packet_rate = packet_rate;
|
||
|
|
}
|
||
|
|
|
||
|
|
public long getBit_rate() {
|
||
|
|
return bit_rate;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setBit_rate(long bit_rate) {
|
||
|
|
this.bit_rate = bit_rate;
|
||
|
|
}
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public String toString() {
|
||
|
|
return "DosMetricsLog{" +
|
||
|
|
"sketch_start_time=" + sketch_start_time +
|
||
|
|
", common_sled_ip='" + common_sled_ip + '\'' +
|
||
|
|
", common_data_center='" + common_data_center + '\'' +
|
||
|
|
", attack_type='" + attack_type + '\'' +
|
||
|
|
", destination_ip='" + destination_ip + '\'' +
|
||
|
|
", session_rate=" + session_rate +
|
||
|
|
", packet_rate=" + packet_rate +
|
||
|
|
", bit_rate=" + bit_rate +
|
||
|
|
'}';
|
||
|
|
}
|
||
|
|
}
|