Fixed some missing metrics
This commit is contained in:
parent
810cfee22b
commit
dc980e269d
|
@ -124,6 +124,7 @@ class ManagedSystem extends MetaSystem {
|
||||||
|
|
||||||
HashMap<String, BigDecimal> fieldsMap = [
|
HashMap<String, BigDecimal> fieldsMap = [
|
||||||
sentBytes: it.sentBytes.first(),
|
sentBytes: it.sentBytes.first(),
|
||||||
|
receivedBytes: it.receivedBytes.first(),
|
||||||
transferredBytes: it.transferredBytes.first(),
|
transferredBytes: it.transferredBytes.first(),
|
||||||
]
|
]
|
||||||
map.put("fields", fieldsMap)
|
map.put("fields", fieldsMap)
|
||||||
|
@ -156,6 +157,7 @@ class ManagedSystem extends MetaSystem {
|
||||||
HashMap<String, BigDecimal> fieldsMap = [
|
HashMap<String, BigDecimal> fieldsMap = [
|
||||||
writeBytes: it.writeBytes.first(),
|
writeBytes: it.writeBytes.first(),
|
||||||
readBytes: it.readBytes.first(),
|
readBytes: it.readBytes.first(),
|
||||||
|
transmittedBytes: it.transmittedBytes.first(),
|
||||||
]
|
]
|
||||||
map.put("fields", fieldsMap)
|
map.put("fields", fieldsMap)
|
||||||
log.debug(fieldsMap.toString())
|
log.debug(fieldsMap.toString())
|
||||||
|
|
|
@ -10,11 +10,11 @@ class VirtualFiberChannelAdapter {
|
||||||
String physicalLocation
|
String physicalLocation
|
||||||
String physicalPortWWPN
|
String physicalPortWWPN
|
||||||
Integer viosId
|
Integer viosId
|
||||||
BigDecimal numOfReads
|
List<BigDecimal> numOfReads
|
||||||
BigDecimal numOfWrites
|
List<BigDecimal> numOfWrites
|
||||||
BigDecimal readBytes
|
List<BigDecimal> readBytes
|
||||||
BigDecimal writeBytes
|
List<BigDecimal> writeBytes
|
||||||
BigDecimal runningSpeed
|
List<BigDecimal> runningSpeed
|
||||||
BigDecimal transmittedBytes
|
List<BigDecimal> transmittedBytes
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue