Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ public class HostCanonicalEvents {
public static final String HOST_PROCESS_PHYSICAL_MEMORY_USAGE_ABNORMAL = "/host/process/physicalMemory/usage/abnormal";
public static final String HOST_PING_SKIP = "/host/ping/skip";
public static final String HOST_PING_CANCEL_SKIP = "/host/ping/cancel/skip";
public static final String HOST_MULTIPATH_CONFIG_CHANGED = "/host/multipathConfig/changed";


@NeedJsonSchema
Expand Down Expand Up @@ -404,6 +405,28 @@ public void setInterfaceStatus(String interfaceStatus) {
}
}

@NeedJsonSchema
public static class MultipathConfigChangedData {
private String hostUuid;
private String details;

public String getDetails() {
return details;
}

public void setDetails(String details) {
this.details = details;
}

public String getHostUuid() {
return hostUuid;
}

public void setHostUuid(String hostUuid) {
this.hostUuid = hostUuid;
}
}

@NeedJsonSchema
public static class HostProcessPhysicalMemoryUsageAlarmData {
private String hostUuid;
Expand Down