public class DeviceDiskInfo extends AbstractModel
Constructor and Description |
---|
DeviceDiskInfo() |
Modifier and Type | Method and Description |
---|---|
Long[] |
getIoRatioPerSec()
Get 平均每秒有百分之几的时间用于IO操作
|
Long[] |
getIoWaitTime()
Get 平均每次设备I/O操作的等待时间*100,单位为毫秒。例如:该值为201,表示平均每次I/O操作等待时间为:201/100=2.1毫秒
|
Long[] |
getRead()
Get 磁盘平均每秒完成的读操作次数总和*100。例如:该值为2002,表示磁盘平均每秒完成读操作为:2002/100=20.2次
|
Long[] |
getWrite()
Get 磁盘平均每秒完成的写操作次数总和*100。例如:该值为30001,表示磁盘平均每秒完成写操作为:30001/100=300.01次
|
void |
setIoRatioPerSec(Long[] IoRatioPerSec)
Set 平均每秒有百分之几的时间用于IO操作
|
void |
setIoWaitTime(Long[] IoWaitTime)
Set 平均每次设备I/O操作的等待时间*100,单位为毫秒。例如:该值为201,表示平均每次I/O操作等待时间为:201/100=2.1毫秒
|
void |
setRead(Long[] Read)
Set 磁盘平均每秒完成的读操作次数总和*100。例如:该值为2002,表示磁盘平均每秒完成读操作为:2002/100=20.2次
|
void |
setWrite(Long[] Write)
Set 磁盘平均每秒完成的写操作次数总和*100。例如:该值为30001,表示磁盘平均每秒完成写操作为:30001/100=300.01次
|
void |
toMap(HashMap<String,String> map,
String prefix)
Internal implementation, normal users should not use it.
|
any, fromJsonString, getBinaryParams, getMultipartRequestParams, set, setParamArrayObj, setParamArraySimple, setParamObj, setParamSimple, toJsonString
public Long[] getIoRatioPerSec()
public void setIoRatioPerSec(Long[] IoRatioPerSec)
IoRatioPerSec
- 平均每秒有百分之几的时间用于IO操作public Long[] getIoWaitTime()
public void setIoWaitTime(Long[] IoWaitTime)
IoWaitTime
- 平均每次设备I/O操作的等待时间*100,单位为毫秒。例如:该值为201,表示平均每次I/O操作等待时间为:201/100=2.1毫秒public Long[] getRead()
public void setRead(Long[] Read)
Read
- 磁盘平均每秒完成的读操作次数总和*100。例如:该值为2002,表示磁盘平均每秒完成读操作为:2002/100=20.2次public Long[] getWrite()
public void setWrite(Long[] Write)
Write
- 磁盘平均每秒完成的写操作次数总和*100。例如:该值为30001,表示磁盘平均每秒完成写操作为:30001/100=300.01次Copyright © 2020. All rights reserved.