hmci/src/main/groovy/biz/nellemann/hmci/ManagedSystem.groovy

192 lines
6.3 KiB
Groovy
Raw Normal View History

2020-08-18 11:49:48 +00:00
/**
* Copyright 2020 Mark Nellemann <mark.nellemann@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package biz.nellemann.hmci
2020-08-07 06:13:48 +00:00
import groovy.util.logging.Slf4j
@Slf4j
class ManagedSystem extends MetaSystem {
2020-08-07 06:13:48 +00:00
public final String hmcId
public final String id
public final String name
public final String type
public final String model
public final String serialNumber
2020-08-07 06:13:48 +00:00
ManagedSystem(String hmcId, String id, String name, String type, String model, String serialNumber) {
this.hmcId = hmcId
2020-08-07 06:13:48 +00:00
this.id = id
this.name = name
this.type = type
this.model = model
this.serialNumber = serialNumber
2020-08-07 06:13:48 +00:00
}
String toString() {
return "[${id}] ${name} (${type}-${model} ${serialNumber})"
}
2020-08-10 13:44:14 +00:00
2020-08-13 09:48:00 +00:00
List<Map> getMemoryMetrics() {
List<Map> list = new ArrayList<>()
Map<String, Map> map = new HashMap<String, Map>()
HashMap<String, String> tagsMap = [
system: name,
]
map.put("tags", tagsMap)
log.debug("getMemoryMetrics() - tags: " + tagsMap.toString())
2020-08-13 09:48:00 +00:00
HashMap<String, BigDecimal> fieldsMap = [
totalMem: metrics.systemUtil.utilSamples.first().serverUtil.memory.totalMem.first(),
availableMem: metrics.systemUtil.utilSamples.first().serverUtil.memory.availableMem.first(),
configurableMem: metrics.systemUtil.utilSamples.first().serverUtil.memory.configurableMem.first(),
assignedMemToLpars: metrics.systemUtil.utilSamples.first().serverUtil.memory.assignedMemToLpars.first(),
]
2020-08-13 09:48:00 +00:00
map.put("fields", fieldsMap)
log.debug("getMemoryMetrics() - fields: " + fieldsMap.toString())
2020-08-13 09:48:00 +00:00
list.add(map)
return list
}
2020-08-13 09:48:00 +00:00
List<Map> getProcessorMetrics() {
2020-08-13 09:48:00 +00:00
List<Map> list = new ArrayList<>()
Map<String, Map> map = new HashMap<String, Map>()
HashMap<String, String> tagsMap = [
system: name,
]
map.put("tags", tagsMap)
log.debug("getProcessorMetrics() - tags: " + tagsMap.toString())
2020-08-13 09:48:00 +00:00
HashMap<String, BigDecimal> fieldsMap = [
availableProcUnits: metrics.systemUtil.utilSamples.first().serverUtil.processor.totalProcUnits.first(),
utilizedProcUnits: metrics.systemUtil.utilSamples.first().serverUtil.processor.utilizedProcUnits.first(),
availableProcUnits: metrics.systemUtil.utilSamples.first().serverUtil.processor.availableProcUnits.first(),
configurableProcUnits: metrics.systemUtil.utilSamples.first().serverUtil.processor.configurableProcUnits.first(),
]
2020-08-13 09:48:00 +00:00
map.put("fields", fieldsMap)
log.debug("getProcessorMetrics() - fields: " + fieldsMap.toString())
2020-08-13 09:48:00 +00:00
list.add(map)
return list
}
2020-08-13 09:48:00 +00:00
List<Map> getSharedProcessorPools() {
2020-08-13 09:48:00 +00:00
List<Map> list = new ArrayList<>()
Map<String, Map> map = new HashMap<String, Map>()
metrics.systemUtil.utilSamples.first().serverUtil.sharedProcessorPool.each {
2020-08-13 09:48:00 +00:00
HashMap<String, String> tagsMap = [
system: name,
pool: it.name,
]
map.put("tags", tagsMap)
log.debug("getSharedProcessorPools() - tags: " + tagsMap.toString())
2020-08-13 09:48:00 +00:00
HashMap<String, BigDecimal> fieldsMap = [
assignedProcUnits: it.assignedProcUnits.first(),
availableProcUnits: it.availableProcUnits.first(),
]
2020-08-13 09:48:00 +00:00
map.put("fields", fieldsMap)
log.debug("getSharedProcessorPools() - fields: " + fieldsMap.toString())
2020-08-13 09:48:00 +00:00
list.add(map)
}
return list
}
2020-08-13 09:48:00 +00:00
List<Map> getSystemSharedAdapters() {
List<Map> list = new ArrayList<>()
Map<String, Map> map = new HashMap<String, Map>()
metrics.systemUtil.utilSamples.first().viosUtil.each {vios ->
vios.network.sharedAdapters.each {
HashMap<String, String> tagsMap = [
system: name,
type: it.type,
vios: vios.name,
]
map.put("tags", tagsMap)
log.debug("getSystemSharedAdapters() - tags: " + tagsMap.toString())
2020-08-13 09:48:00 +00:00
HashMap<String, BigDecimal> fieldsMap = [
sentBytes: it.sentBytes.first(),
2020-08-13 10:27:16 +00:00
receivedBytes: it.receivedBytes.first(),
2020-08-13 09:48:00 +00:00
transferredBytes: it.transferredBytes.first(),
]
map.put("fields", fieldsMap)
log.debug("getSystemSharedAdapters() - fields: " + fieldsMap.toString())
2020-08-13 09:48:00 +00:00
list.add(map)
}
}
2020-08-13 09:48:00 +00:00
return list
}
2020-08-13 09:48:00 +00:00
List<Map> getSystemFiberChannelAdapters() {
List<Map> list = new ArrayList<>()
Map<String, Map> map = new HashMap<String, Map>()
metrics.systemUtil.utilSamples.first().viosUtil.each { vios ->
vios.storage.fiberChannelAdapters.each {
HashMap<String, String> tagsMap = [
system: name,
wwpn: it.wwpn,
vios: vios.name,
device: it.physicalLocation,
2020-08-13 09:48:00 +00:00
]
map.put("tags", tagsMap)
log.debug("getSystemFiberChannelAdapters() - tags: " + tagsMap.toString())
2020-08-13 09:48:00 +00:00
HashMap<String, BigDecimal> fieldsMap = [
writeBytes: it.writeBytes.first(),
readBytes: it.readBytes.first(),
2020-08-13 10:27:16 +00:00
transmittedBytes: it.transmittedBytes.first(),
2020-08-13 09:48:00 +00:00
]
map.put("fields", fieldsMap)
log.debug("getSystemFiberChannelAdapters() - fields: " + fieldsMap.toString())
2020-08-13 09:48:00 +00:00
list.add(map)
}
}
return list
}
2020-08-07 14:27:42 +00:00
2020-08-18 11:49:48 +00:00
2020-08-07 06:13:48 +00:00
}