From 1f2235f16dcaed7ad17b32f712c9a6818e97f809 Mon Sep 17 00:00:00 2001 From: Mark Nellemann Date: Thu, 3 Sep 2020 16:12:07 +0200 Subject: [PATCH 1/2] Fixed issue where map was overridden and only last value saved. --- gradle.properties | 2 +- .../biz/nellemann/hmci/InfluxClient.groovy | 29 ++++++++ .../nellemann/hmci/LogicalPartition.groovy | 34 +++++++-- .../biz/nellemann/hmci/ManagedSystem.groovy | 73 ++++++++++++++++++- .../hmci/pcm/GenericVirtualAdapter.groovy | 10 +-- .../hmci/LogicalPartitionTest.groovy | 4 +- 6 files changed, 135 insertions(+), 17 deletions(-) diff --git a/gradle.properties b/gradle.properties index aee3848..bdf18db 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,2 +1,2 @@ group = biz.nellemann.hmci -version = 1.0.5 +version = 1.0.7 diff --git a/src/main/groovy/biz/nellemann/hmci/InfluxClient.groovy b/src/main/groovy/biz/nellemann/hmci/InfluxClient.groovy index cbfc876..e15854c 100644 --- a/src/main/groovy/biz/nellemann/hmci/InfluxClient.groovy +++ b/src/main/groovy/biz/nellemann/hmci/InfluxClient.groovy @@ -133,8 +133,16 @@ class InfluxClient { batchPoints.point(it) } + getSystemGenericPhysicalAdapters(system, timestamp).each { + batchPoints.point(it) + } + + getSystemGenericVirtualAdapters(system, timestamp).each { + batchPoints.point(it) + } } + private static List getSystemMemory(ManagedSystem system, Instant timestamp) { List metrics = system.getMemoryMetrics() return processMeasurementMap(metrics, timestamp, "SystemMemory") @@ -160,6 +168,16 @@ class InfluxClient { return processMeasurementMap(metrics, timestamp, "SystemFiberChannelAdapters") } + private static List getSystemGenericPhysicalAdapters(ManagedSystem system, Instant timestamp) { + List metrics = system.getSystemGenericPhysicalAdapters() + return processMeasurementMap(metrics, timestamp, "SystemGenericPhysicalAdapters") + } + + private static List getSystemGenericVirtualAdapters(ManagedSystem system, Instant timestamp) { + List metrics = system.getSystemGenericVirtualAdapters() + return processMeasurementMap(metrics, timestamp, "SystemGenericVirtualAdapters") + } + /* Logical Partitions @@ -180,6 +198,10 @@ class InfluxClient { //BatchPoints batchPoints = BatchPoints.database(database).build(); + getPartitionAffinityScore(partition, timestamp).each { + batchPoints.point(it) + } + getPartitionMemory(partition, timestamp).each { batchPoints.point(it) } @@ -199,6 +221,11 @@ class InfluxClient { //influxDB.write(batchPoints); } + private static List getPartitionAffinityScore(LogicalPartition partition, Instant timestamp) { + List metrics = partition.getAffinityScore() + return processMeasurementMap(metrics, timestamp, "PartitionAffinityScore") + } + private static List getPartitionMemory(LogicalPartition partition, Instant timestamp) { List metrics = partition.getMemoryMetrics() return processMeasurementMap(metrics, timestamp, "PartitionMemory") @@ -233,6 +260,7 @@ class InfluxClient { // Iterate fields map.get("fields").each { String fieldName, BigDecimal fieldValue -> + log.debug("processMeasurementMap() " + measurement + " - fieldName: " + fieldName + ", fieldValue: " + fieldValue) Point.Builder builder = Point.measurement(measurement) .time(timestamp.toEpochMilli(), TimeUnit.MILLISECONDS) @@ -242,6 +270,7 @@ class InfluxClient { // For each field, we add all tags map.get("tags").each { String tagName, String tagValue -> builder.tag(tagName, tagValue) + log.debug("processMeasurementMap() " + measurement + " - tagName: " + tagName + ", tagValue: " + tagValue) } list.add(builder.build()) diff --git a/src/main/groovy/biz/nellemann/hmci/LogicalPartition.groovy b/src/main/groovy/biz/nellemann/hmci/LogicalPartition.groovy index 08c6988..98c4ab5 100644 --- a/src/main/groovy/biz/nellemann/hmci/LogicalPartition.groovy +++ b/src/main/groovy/biz/nellemann/hmci/LogicalPartition.groovy @@ -37,6 +37,29 @@ class LogicalPartition extends MetaSystem { } + List getAffinityScore() { + + List list = new ArrayList<>() + Map map = new HashMap() + + HashMap tagsMap = [ + system: system.name, + partition: name, + ] + map.put("tags", tagsMap) + log.debug("getAffinityScore() - tags: " + tagsMap.toString()) + + HashMap fieldsMap = [ + affinityScore: metrics.systemUtil?.utilSamples?.first()?.lparsUtil?.first()?.affinityScore, + ] + map.put("fields", fieldsMap) + log.debug("getAffinityScore() - fields: " + fieldsMap.toString()) + + list.add(map) + return list + } + + List getMemoryMetrics() { List list = new ArrayList<>() @@ -75,10 +98,10 @@ class LogicalPartition extends MetaSystem { HashMap fieldsMap = [ utilizedProcUnits: metrics.systemUtil?.utilSamples?.first()?.lparsUtil?.first()?.processor?.utilizedProcUnits?.first(), - //maxVirtualProcessors: metrics.systemUtil.utilSamples.first().lparsUtil.first().processor.maxVirtualProcessors.first(), - //currentVirtualProcessors: metrics.systemUtil.utilSamples.first().lparsUtil.first().processor.currentVirtualProcessors.first(), + maxVirtualProcessors: metrics.systemUtil.utilSamples.first().lparsUtil.first().processor.maxVirtualProcessors.first(), + currentVirtualProcessors: metrics.systemUtil.utilSamples.first().lparsUtil.first().processor.currentVirtualProcessors.first(), //donatedProcUnits: metrics.systemUtil.utilSamples.first().lparsUtil.first().processor.donatedProcUnits.first(), - //entitledProcUnits: metrics.systemUtil.utilSamples.first().lparsUtil.first().processor.entitledProcUnits.first(), + entitledProcUnits: metrics.systemUtil.utilSamples.first().lparsUtil.first().processor.entitledProcUnits.first(), //idleProcUnits: metrics.systemUtil.utilSamples.first().lparsUtil.first().processor.idleProcUnits.first(), //maxProcUnits: metrics.systemUtil.utilSamples.first().lparsUtil.first().processor.maxProcUnits.first(), utilizedCappedProcUnits: metrics.systemUtil?.utilSamples?.first()?.lparsUtil?.first()?.processor?.utilizedCappedProcUnits?.first(), @@ -97,8 +120,8 @@ class LogicalPartition extends MetaSystem { List getVirtualEthernetAdapterMetrics() { List list = new ArrayList<>() - Map map = new HashMap() metrics.systemUtil?.utilSamples?.first()?.lparsUtil?.first()?.network?.virtualEthernetAdapters?.each { + Map map = new HashMap() HashMap tagsMap = [ system: system.name, @@ -131,8 +154,8 @@ class LogicalPartition extends MetaSystem { List getVirtualFiberChannelAdaptersMetrics() { List list = new ArrayList<>() - Map map = new HashMap() metrics.systemUtil?.utilSamples?.first()?.lparsUtil?.first()?.storage?.virtualFiberChannelAdapters?.each { + Map map = new HashMap() HashMap tagsMap = [ system: system.name, @@ -146,6 +169,7 @@ class LogicalPartition extends MetaSystem { HashMap fieldsMap = [ transmittedBytes: it.transmittedBytes.first(), writeBytes: it.writeBytes.first(), + readBytes: it.readBytes.first(), ] map.put("fields", fieldsMap) log.debug("getVirtualFiberChannelAdaptersMetrics() - fields: " + fieldsMap.toString()) diff --git a/src/main/groovy/biz/nellemann/hmci/ManagedSystem.groovy b/src/main/groovy/biz/nellemann/hmci/ManagedSystem.groovy index 2dc77d5..c339519 100644 --- a/src/main/groovy/biz/nellemann/hmci/ManagedSystem.groovy +++ b/src/main/groovy/biz/nellemann/hmci/ManagedSystem.groovy @@ -96,8 +96,8 @@ class ManagedSystem extends MetaSystem { List getSharedProcessorPools() { List list = new ArrayList<>() - Map map = new HashMap() metrics.systemUtil?.utilSamples?.first()?.serverUtil?.sharedProcessorPool?.each { + Map map = new HashMap() HashMap tagsMap = [ system: name, @@ -124,10 +124,9 @@ class ManagedSystem extends MetaSystem { List getSystemSharedAdapters() { List list = new ArrayList<>() - Map map = new HashMap() metrics.systemUtil?.utilSamples?.first()?.viosUtil?.each {vios -> - vios.network.sharedAdapters.each { + Map map = new HashMap() HashMap tagsMap = [ system: name, @@ -157,11 +156,13 @@ class ManagedSystem extends MetaSystem { List getSystemFiberChannelAdapters() { List list = new ArrayList<>() - Map map = new HashMap() metrics.systemUtil?.utilSamples?.first()?.viosUtil?.each { vios -> + log.debug("getSystemFiberChannelAdapters() - VIOS: " + vios.name) vios.storage?.fiberChannelAdapters?.each { + Map map = new HashMap() HashMap tagsMap = [ + id: it.id, system: name, wwpn: it.wwpn, vios: vios.name, @@ -178,6 +179,38 @@ class ManagedSystem extends MetaSystem { map.put("fields", fieldsMap) log.debug("getSystemFiberChannelAdapters() - fields: " + fieldsMap.toString()) + list.add(map) + } + + } + + return list + } + + + List getSystemGenericPhysicalAdapters() { + List list = new ArrayList<>() + metrics.systemUtil?.utilSamples?.first()?.viosUtil?.each { vios -> + vios.storage?.genericPhysicalAdapters?.each { + Map map = new HashMap() + + HashMap tagsMap = [ + id: it.id, + system: name, + vios: vios.name, + device: it.physicalLocation, + ] + map.put("tags", tagsMap) + log.debug("getSystemGenericPhysicalAdapters() - tags: " + tagsMap.toString()) + + HashMap fieldsMap = [ + writeBytes: it.writeBytes.first(), + readBytes: it.readBytes.first(), + transmittedBytes: it.transmittedBytes.first(), + ] + map.put("fields", fieldsMap) + log.debug("getSystemGenericPhysicalAdapters() - fields: " + fieldsMap.toString()) + list.add(map) } @@ -188,4 +221,36 @@ class ManagedSystem extends MetaSystem { } + List getSystemGenericVirtualAdapters() { + List list = new ArrayList<>() + metrics.systemUtil?.utilSamples?.first()?.viosUtil?.each { vios -> + vios.storage?.genericVirtualAdapters?.each { + Map map = new HashMap() + + HashMap tagsMap = [ + id: it.id, + system: name, + vios: vios.name, + device: it.physicalLocation, + ] + map.put("tags", tagsMap) + log.debug("getSystemGenericVirtualAdapters() - tags: " + tagsMap.toString()) + + HashMap fieldsMap = [ + writeBytes: it.writeBytes.first(), + readBytes: it.readBytes.first(), + transmittedBytes: it.transmittedBytes.first(), + ] + map.put("fields", fieldsMap) + log.debug("getSystemGenericVirtualAdapters() - fields: " + fieldsMap.toString()) + + list.add(map) + + } + + } + + return list + } + } diff --git a/src/main/groovy/biz/nellemann/hmci/pcm/GenericVirtualAdapter.groovy b/src/main/groovy/biz/nellemann/hmci/pcm/GenericVirtualAdapter.groovy index 47ab712..1a2334e 100644 --- a/src/main/groovy/biz/nellemann/hmci/pcm/GenericVirtualAdapter.groovy +++ b/src/main/groovy/biz/nellemann/hmci/pcm/GenericVirtualAdapter.groovy @@ -9,10 +9,10 @@ class GenericVirtualAdapter { String type Integer viosId String physicalLocation - BigDecimal numOfReads - BigDecimal numOfWrites - BigDecimal readBytes - BigDecimal writeBytes - BigDecimal transmittedBytes + List numOfReads + List numOfWrites + List readBytes + List writeBytes + List transmittedBytes } diff --git a/src/test/groovy/biz/nellemann/hmci/LogicalPartitionTest.groovy b/src/test/groovy/biz/nellemann/hmci/LogicalPartitionTest.groovy index 4c79c5a..0984707 100644 --- a/src/test/groovy/biz/nellemann/hmci/LogicalPartitionTest.groovy +++ b/src/test/groovy/biz/nellemann/hmci/LogicalPartitionTest.groovy @@ -94,8 +94,8 @@ class LogicalPartitionTest extends Specification { then: listOfMaps.size() == 4 - listOfMaps.first().get("fields")['writeBytes'] == 546.133 - listOfMaps.first().get("tags")['viosId'] == '2' + listOfMaps.first().get("fields")['writeBytes'] == 6690.133 + listOfMaps.first().get("tags")['viosId'] == '1' } From 79836e694dac8ddac5cf2ae0a50c16accc90f219 Mon Sep 17 00:00:00 2001 From: Mark Nellemann Date: Thu, 3 Sep 2020 16:17:04 +0200 Subject: [PATCH 2/2] Update to latest dashboards --- ...HMC Logical Partitions-1599142559065.json} | 1958 +++++++++-------- ... - HMC Managed Systems-1599142541940.json} | 83 +- ...al Input Output Servers-1599142519131.json | 679 ++++++ 3 files changed, 1802 insertions(+), 918 deletions(-) rename doc/{Power Systems - HMC Logical Partitions-1597311623553.json => Power Systems - HMC Logical Partitions-1599142559065.json} (83%) rename doc/{Power Systems - HMC Managed Systems-1597311518654.json => Power Systems - HMC Managed Systems-1599142541940.json} (94%) create mode 100644 doc/Power Systems - HMC Virtual Input Output Servers-1599142519131.json diff --git a/doc/Power Systems - HMC Logical Partitions-1597311623553.json b/doc/Power Systems - HMC Logical Partitions-1599142559065.json similarity index 83% rename from doc/Power Systems - HMC Logical Partitions-1597311623553.json rename to doc/Power Systems - HMC Logical Partitions-1599142559065.json index 1b710b8..e3d54be 100644 --- a/doc/Power Systems - HMC Logical Partitions-1597311623553.json +++ b/doc/Power Systems - HMC Logical Partitions-1599142559065.json @@ -1,8 +1,8 @@ { "__inputs": [ { - "name": "DS_INFLUXDB", - "label": "InfluxDB", + "name": "DS_HMCI", + "label": "HMCi", "description": "", "type": "datasource", "pluginId": "influxdb", @@ -14,7 +14,7 @@ "type": "grafana", "id": "grafana", "name": "Grafana", - "version": "7.1.3" + "version": "7.0.6" }, { "type": "panel", @@ -43,12 +43,12 @@ } ] }, - "description": "HMC Logical Partitions", + "description": "HMC metrics from HMCi", "editable": true, "gnetId": 1510, "graphTooltip": 0, "id": null, - "iteration": 1597311530718, + "iteration": 1599142554293, "links": [], "panels": [ { @@ -57,7 +57,7 @@ "content": "", "dashLength": 10, "dashes": false, - "datasource": "${DS_INFLUXDB}", + "datasource": "${DS_HMCI}", "decimals": 2, "editable": true, "error": false, @@ -95,6 +95,9 @@ "links": [], "mode": "", "nullPointMode": "connected", + "options": { + "dataLinks": [] + }, "percentage": false, "pluginVersion": "7.1.3", "pointradius": 5, @@ -180,12 +183,12 @@ "timeFrom": null, "timeRegions": [], "timeShift": null, - "title": "Processors", + "title": "Processors - Utilized", "tooltip": { "msResolution": false, "shared": true, "sort": 0, - "value_type": "cumulative" + "value_type": "individual" }, "type": "graph", "xaxis": { @@ -197,6 +200,7 @@ }, "yaxes": [ { + "$$hashKey": "object:4943", "format": "short", "label": "cores", "logBase": 1, @@ -205,6 +209,7 @@ "show": true }, { + "$$hashKey": "object:4944", "format": "short", "label": null, "logBase": 1, @@ -224,7 +229,7 @@ "content": "", "dashLength": 10, "dashes": false, - "datasource": "${DS_INFLUXDB}", + "datasource": "${DS_HMCI}", "editable": true, "error": false, "fieldConfig": { @@ -258,6 +263,9 @@ "linewidth": 2, "mode": "", "nullPointMode": "connected", + "options": { + "dataLinks": [] + }, "percentage": false, "pluginVersion": "7.1.3", "pointradius": 5, @@ -300,6 +308,7 @@ ], "hide": false, "measurement": "PartitionProcessor", + "orderByTime": "ASC", "policy": "default", "refId": "A", "resultFormat": "time_series", @@ -319,7 +328,6 @@ ], "tags": [ { - "condition": "", "key": "partition", "operator": "=~", "value": "/^$Partition$/" @@ -327,8 +335,8 @@ { "condition": "AND", "key": "name", - "operator": "=~", - "value": "/apped/" + "operator": "=", + "value": "utilizedCappedProcUnits" }, { "condition": "AND", @@ -343,7 +351,7 @@ "timeFrom": null, "timeRegions": [], "timeShift": null, - "title": "Processors", + "title": "Processors - Capped Utilized", "tooltip": { "msResolution": false, "shared": true, @@ -360,6 +368,7 @@ }, "yaxes": [ { + "$$hashKey": "object:4142", "format": "short", "label": "cores", "logBase": 1, @@ -368,6 +377,7 @@ "show": true }, { + "$$hashKey": "object:4143", "format": "short", "label": null, "logBase": 1, @@ -387,7 +397,7 @@ "content": "", "dashLength": 10, "dashes": false, - "datasource": "${DS_INFLUXDB}", + "datasource": "${DS_HMCI}", "editable": true, "error": false, "fieldConfig": { @@ -406,6 +416,1041 @@ "y": 8 }, "hiddenSeries": false, + "id": 13, + "legend": { + "alignAsTable": true, + "avg": true, + "current": false, + "max": true, + "min": false, + "show": true, + "total": false, + "values": true + }, + "lines": true, + "linewidth": 2, + "mode": "", + "nullPointMode": "connected", + "options": { + "dataLinks": [] + }, + "percentage": false, + "pluginVersion": "7.1.3", + "pointradius": 5, + "points": false, + "renderer": "flot", + "seriesOverrides": [], + "spaceLength": 10, + "stack": false, + "steppedLine": false, + "style": {}, + "targets": [ + { + "alias": "$tag_partition $tag_name", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "name" + ], + "type": "tag" + }, + { + "params": [ + "partition" + ], + "type": "tag" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "PartitionProcessor", + "orderByTime": "ASC", + "policy": "default", + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "value" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "partition", + "operator": "=~", + "value": "/^$Partition$/" + }, + { + "condition": "AND", + "key": "name", + "operator": "=", + "value": "utilizedUncappedProcUnits" + }, + { + "condition": "AND", + "key": "system", + "operator": "=~", + "value": "/^$ManagedSystem$/" + } + ] + } + ], + "thresholds": [], + "timeFrom": null, + "timeRegions": [], + "timeShift": null, + "title": "Processors - Uncapped Utilized", + "tooltip": { + "msResolution": false, + "shared": true, + "sort": 0, + "value_type": "cumulative" + }, + "type": "graph", + "xaxis": { + "buckets": null, + "mode": "time", + "name": null, + "show": true, + "values": [] + }, + "yaxes": [ + { + "$$hashKey": "object:4142", + "format": "short", + "label": "cores", + "logBase": 1, + "max": null, + "min": null, + "show": true + }, + { + "$$hashKey": "object:4143", + "format": "short", + "label": null, + "logBase": 1, + "max": null, + "min": null, + "show": true + } + ], + "yaxis": { + "align": false, + "alignLevel": null + } + }, + { + "aliasColors": {}, + "bars": false, + "content": "", + "dashLength": 10, + "dashes": false, + "datasource": "${DS_HMCI}", + "editable": true, + "error": false, + "fieldConfig": { + "defaults": { + "custom": {} + }, + "overrides": [] + }, + "fill": 0, + "fillGradient": 0, + "grid": {}, + "gridPos": { + "h": 7, + "w": 24, + "x": 0, + "y": 16 + }, + "hiddenSeries": false, + "id": 3, + "legend": { + "alignAsTable": true, + "avg": true, + "current": false, + "max": false, + "min": false, + "show": true, + "total": false, + "values": true + }, + "lines": true, + "linewidth": 2, + "mode": "", + "nullPointMode": "connected", + "options": { + "dataLinks": [] + }, + "percentage": false, + "pluginVersion": "7.1.3", + "pointradius": 5, + "points": false, + "renderer": "flot", + "seriesOverrides": [], + "spaceLength": 10, + "stack": false, + "steppedLine": false, + "style": {}, + "targets": [ + { + "alias": "$tag_partition $tag_name", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "name" + ], + "type": "tag" + }, + { + "params": [ + "partition" + ], + "type": "tag" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "PartitionMemory", + "orderByTime": "ASC", + "policy": "default", + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "value" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "partition", + "operator": "=~", + "value": "/^$Partition$/" + }, + { + "condition": "AND", + "key": "system", + "operator": "=~", + "value": "/^$ManagedSystem$/" + }, + { + "condition": "AND", + "key": "name", + "operator": "=", + "value": "logicalMem" + } + ] + } + ], + "thresholds": [], + "timeFrom": null, + "timeRegions": [], + "timeShift": null, + "title": "Memory - Logical", + "tooltip": { + "msResolution": false, + "shared": true, + "sort": 0, + "value_type": "cumulative" + }, + "type": "graph", + "xaxis": { + "buckets": null, + "mode": "time", + "name": null, + "show": true, + "values": [] + }, + "yaxes": [ + { + "$$hashKey": "object:5771", + "format": "decmbytes", + "label": "", + "logBase": 1, + "max": null, + "min": "0", + "show": true + }, + { + "$$hashKey": "object:5772", + "format": "short", + "label": null, + "logBase": 1, + "max": null, + "min": null, + "show": true + } + ], + "yaxis": { + "align": false, + "alignLevel": null + } + }, + { + "aliasColors": {}, + "bars": false, + "content": "", + "dashLength": 10, + "dashes": false, + "datasource": "${DS_HMCI}", + "editable": true, + "error": false, + "fieldConfig": { + "defaults": { + "custom": {} + }, + "overrides": [] + }, + "fill": 0, + "fillGradient": 0, + "grid": {}, + "gridPos": { + "h": 7, + "w": 12, + "x": 0, + "y": 23 + }, + "hiddenSeries": false, + "id": 5, + "legend": { + "alignAsTable": true, + "avg": true, + "current": false, + "max": true, + "min": false, + "show": true, + "sort": "avg", + "sortDesc": true, + "total": false, + "values": true + }, + "lines": true, + "linewidth": 2, + "mode": "", + "nullPointMode": "connected", + "options": { + "dataLinks": [] + }, + "percentage": false, + "pluginVersion": "7.1.3", + "pointradius": 5, + "points": false, + "renderer": "flot", + "seriesOverrides": [], + "spaceLength": 10, + "stack": false, + "steppedLine": false, + "style": {}, + "targets": [ + { + "alias": "$tag_partition viosid: $tag_viosId vlan $tag_vlanId: $tag_name", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "name" + ], + "type": "tag" + }, + { + "params": [ + "vlanId" + ], + "type": "tag" + }, + { + "params": [ + "viosId" + ], + "type": "tag" + }, + { + "params": [ + "partition" + ], + "type": "tag" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "PartitionVirtualEthernetAdapters", + "orderByTime": "ASC", + "policy": "default", + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "value" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "partition", + "operator": "=~", + "value": "/^$Partition$/" + }, + { + "condition": "AND", + "key": "name", + "operator": "=~", + "value": "/PhysicalBytes/" + }, + { + "condition": "AND", + "key": "system", + "operator": "=~", + "value": "/^$ManagedSystem$/" + } + ] + } + ], + "thresholds": [], + "timeFrom": null, + "timeRegions": [], + "timeShift": null, + "title": "Virtual Network Adapter: physical throughput", + "tooltip": { + "msResolution": false, + "shared": true, + "sort": 0, + "value_type": "cumulative" + }, + "type": "graph", + "xaxis": { + "buckets": null, + "mode": "time", + "name": null, + "show": true, + "values": [] + }, + "yaxes": [ + { + "$$hashKey": "object:3655", + "format": "Bps", + "label": null, + "logBase": 1, + "max": null, + "min": null, + "show": true + }, + { + "$$hashKey": "object:3656", + "format": "short", + "label": null, + "logBase": 1, + "max": null, + "min": null, + "show": true + } + ], + "yaxis": { + "align": false, + "alignLevel": null + } + }, + { + "aliasColors": {}, + "bars": false, + "content": "", + "dashLength": 10, + "dashes": false, + "datasource": "${DS_HMCI}", + "editable": true, + "error": false, + "fieldConfig": { + "defaults": { + "custom": {} + }, + "overrides": [] + }, + "fill": 0, + "fillGradient": 0, + "grid": {}, + "gridPos": { + "h": 7, + "w": 12, + "x": 12, + "y": 23 + }, + "hiddenSeries": false, + "id": 8, + "legend": { + "alignAsTable": true, + "avg": true, + "current": false, + "max": true, + "min": true, + "show": true, + "sort": "avg", + "sortDesc": true, + "total": false, + "values": true + }, + "lines": true, + "linewidth": 2, + "mode": "", + "nullPointMode": "connected", + "options": { + "dataLinks": [] + }, + "percentage": false, + "pluginVersion": "7.1.3", + "pointradius": 5, + "points": false, + "renderer": "flot", + "seriesOverrides": [], + "spaceLength": 10, + "stack": false, + "steppedLine": false, + "style": {}, + "targets": [ + { + "alias": "$tag_partition vlan $tag_vlanId: $tag_name", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "name" + ], + "type": "tag" + }, + { + "params": [ + "vlanId" + ], + "type": "tag" + }, + { + "params": [ + "partition" + ], + "type": "tag" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "PartitionVirtualEthernetAdapters", + "orderByTime": "ASC", + "policy": "default", + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "value" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "partition", + "operator": "=~", + "value": "/^$Partition$/" + }, + { + "condition": "AND", + "key": "name", + "operator": "!~", + "value": "/Physical/" + }, + { + "condition": "AND", + "key": "system", + "operator": "=~", + "value": "/^$ManagedSystem$/" + } + ] + } + ], + "thresholds": [], + "timeFrom": null, + "timeRegions": [], + "timeShift": null, + "title": "Virtual Network Adapter: virtual throughput", + "tooltip": { + "msResolution": false, + "shared": true, + "sort": 0, + "value_type": "cumulative" + }, + "type": "graph", + "xaxis": { + "buckets": null, + "mode": "time", + "name": null, + "show": true, + "values": [] + }, + "yaxes": [ + { + "$$hashKey": "object:10101", + "format": "Bps", + "label": null, + "logBase": 1, + "max": null, + "min": null, + "show": true + }, + { + "$$hashKey": "object:10102", + "format": "short", + "label": null, + "logBase": 1, + "max": null, + "min": null, + "show": true + } + ], + "yaxis": { + "align": false, + "alignLevel": null + } + }, + { + "aliasColors": {}, + "bars": false, + "content": "", + "dashLength": 10, + "dashes": false, + "datasource": "${DS_HMCI}", + "description": "", + "editable": true, + "error": false, + "fieldConfig": { + "defaults": { + "custom": {} + }, + "overrides": [] + }, + "fill": 2, + "fillGradient": 0, + "grid": {}, + "gridPos": { + "h": 7, + "w": 12, + "x": 0, + "y": 30 + }, + "hiddenSeries": false, + "id": 9, + "legend": { + "alignAsTable": true, + "avg": true, + "current": false, + "max": true, + "min": false, + "show": true, + "total": false, + "values": true + }, + "lines": true, + "linewidth": 2, + "mode": "", + "nullPointMode": "connected", + "options": { + "dataLinks": [] + }, + "percentage": false, + "pluginVersion": "7.1.3", + "pointradius": 5, + "points": false, + "renderer": "flot", + "seriesOverrides": [], + "spaceLength": 10, + "stack": false, + "steppedLine": false, + "style": {}, + "targets": [ + { + "alias": "$tag_partition: AffinityScore", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "partition" + ], + "type": "tag" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "PartitionAffinityScore", + "orderByTime": "ASC", + "policy": "default", + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "value" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "system", + "operator": "=~", + "value": "/^$ManagedSystem$/" + }, + { + "condition": "AND", + "key": "partition", + "operator": "=~", + "value": "/^$Partition$/" + }, + { + "condition": "AND", + "key": "name", + "operator": "=", + "value": "affinityScore" + } + ] + } + ], + "thresholds": [], + "timeFrom": null, + "timeRegions": [], + "timeShift": null, + "title": "Partition Affinity Score", + "tooltip": { + "msResolution": false, + "shared": true, + "sort": 0, + "value_type": "individual" + }, + "type": "graph", + "xaxis": { + "buckets": null, + "mode": "time", + "name": null, + "show": true, + "values": [] + }, + "yaxes": [ + { + "$$hashKey": "object:2366", + "format": "percent", + "label": null, + "logBase": 1, + "max": null, + "min": null, + "show": true + }, + { + "$$hashKey": "object:2367", + "format": "short", + "label": null, + "logBase": 1, + "max": null, + "min": null, + "show": true + } + ], + "yaxis": { + "align": false, + "alignLevel": null + } + }, + { + "aliasColors": {}, + "bars": false, + "content": "", + "dashLength": 10, + "dashes": false, + "datasource": "${DS_HMCI}", + "editable": true, + "error": false, + "fieldConfig": { + "defaults": { + "custom": {} + }, + "overrides": [] + }, + "fill": 1, + "fillGradient": 0, + "grid": {}, + "gridPos": { + "h": 7, + "w": 12, + "x": 12, + "y": 30 + }, + "hiddenSeries": false, + "id": 11, + "legend": { + "alignAsTable": true, + "avg": true, + "current": false, + "max": true, + "min": true, + "show": true, + "sort": "avg", + "sortDesc": true, + "total": false, + "values": true + }, + "lines": true, + "linewidth": 2, + "mode": "", + "nullPointMode": "connected", + "options": { + "dataLinks": [] + }, + "percentage": false, + "pluginVersion": "7.1.3", + "pointradius": 5, + "points": false, + "renderer": "flot", + "seriesOverrides": [], + "spaceLength": 10, + "stack": true, + "steppedLine": false, + "style": {}, + "targets": [ + { + "alias": "$tag_partition $tag_wwpn : $tag_name", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "wwpn" + ], + "type": "tag" + }, + { + "params": [ + "partition" + ], + "type": "tag" + }, + { + "params": [ + "name" + ], + "type": "tag" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "PartitionVirtualFiberChannelAdapters", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"value\") FROM \"PartitionVirtualFiberChannelAdapters\" WHERE (\"system\" =~ /^$ManagedSystem$/ AND \"name\" != 'transmittedBytes' AND \"partition\" =~ /^$Partition$/) AND $timeFilter GROUP BY time($interval), \"wwpn\", \"partition\", \"name\" fill(null)", + "rawQuery": false, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "value" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "system", + "operator": "=~", + "value": "/^$ManagedSystem$/" + }, + { + "condition": "AND", + "key": "name", + "operator": "!=", + "value": "transmittedBytes" + }, + { + "condition": "AND", + "key": "partition", + "operator": "=~", + "value": "/^$Partition$/" + } + ] + } + ], + "thresholds": [], + "timeFrom": null, + "timeRegions": [], + "timeShift": null, + "title": "Virtual Fiber Channel Adapters", + "tooltip": { + "msResolution": false, + "shared": true, + "sort": 0, + "value_type": "individual" + }, + "type": "graph", + "xaxis": { + "buckets": null, + "mode": "time", + "name": null, + "show": true, + "values": [] + }, + "yaxes": [ + { + "$$hashKey": "object:3776", + "format": "Bps", + "label": null, + "logBase": 1, + "max": null, + "min": null, + "show": true + }, + { + "$$hashKey": "object:3777", + "format": "short", + "label": null, + "logBase": 1, + "max": null, + "min": null, + "show": true + } + ], + "yaxis": { + "align": false, + "alignLevel": null + } + }, + { + "aliasColors": {}, + "bars": false, + "content": "", + "dashLength": 10, + "dashes": false, + "datasource": "${DS_HMCI}", + "editable": true, + "error": false, + "fieldConfig": { + "defaults": { + "custom": {} + }, + "overrides": [] + }, + "fill": 0, + "fillGradient": 0, + "grid": {}, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 37 + }, + "hiddenSeries": false, "id": 4, "legend": { "alignAsTable": true, @@ -421,6 +1466,9 @@ "linewidth": 2, "mode": "", "nullPointMode": "connected", + "options": { + "dataLinks": [] + }, "percentage": false, "pluginVersion": "7.1.3", "pointradius": 5, @@ -523,6 +1571,7 @@ }, "yaxes": [ { + "$$hashKey": "object:4018", "format": "short", "label": null, "logBase": 1, @@ -531,869 +1580,7 @@ "show": true }, { - "format": "short", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - } - ], - "yaxis": { - "align": false, - "alignLevel": null - } - }, - { - "aliasColors": {}, - "bars": false, - "content": "", - "dashLength": 10, - "dashes": false, - "datasource": "${DS_INFLUXDB}", - "editable": true, - "error": false, - "fieldConfig": { - "defaults": { - "custom": {} - }, - "overrides": [] - }, - "fill": 0, - "fillGradient": 0, - "grid": {}, - "gridPos": { - "h": 7, - "w": 24, - "x": 0, - "y": 16 - }, - "hiddenSeries": false, - "id": 3, - "legend": { - "alignAsTable": true, - "avg": true, - "current": false, - "max": false, - "min": false, - "show": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 2, - "mode": "", - "nullPointMode": "connected", - "percentage": false, - "pluginVersion": "7.1.3", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "style": {}, - "targets": [ - { - "alias": "$tag_partition $tag_name", - "dsType": "influxdb", - "groupBy": [ - { - "params": [ - "$interval" - ], - "type": "time" - }, - { - "params": [ - "name" - ], - "type": "tag" - }, - { - "params": [ - "partition" - ], - "type": "tag" - }, - { - "params": [ - "null" - ], - "type": "fill" - } - ], - "hide": false, - "measurement": "PartitionMemory", - "policy": "default", - "refId": "A", - "resultFormat": "time_series", - "select": [ - [ - { - "params": [ - "value" - ], - "type": "field" - }, - { - "params": [], - "type": "mean" - } - ] - ], - "tags": [ - { - "condition": "", - "key": "partition", - "operator": "=~", - "value": "/^$Partition$/" - }, - { - "condition": "AND", - "key": "system", - "operator": "=~", - "value": "/^$ManagedSystem$/" - } - ] - } - ], - "thresholds": [], - "timeFrom": null, - "timeRegions": [], - "timeShift": null, - "title": "Memory", - "tooltip": { - "msResolution": false, - "shared": true, - "sort": 0, - "value_type": "cumulative" - }, - "type": "graph", - "xaxis": { - "buckets": null, - "mode": "time", - "name": null, - "show": true, - "values": [] - }, - "yaxes": [ - { - "format": "decmbytes", - "label": "", - "logBase": 1, - "max": null, - "min": "0", - "show": true - }, - { - "format": "short", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - } - ], - "yaxis": { - "align": false, - "alignLevel": null - } - }, - { - "aliasColors": {}, - "bars": false, - "content": "", - "dashLength": 10, - "dashes": false, - "datasource": "${DS_INFLUXDB}", - "editable": true, - "error": false, - "fieldConfig": { - "defaults": { - "custom": {} - }, - "overrides": [] - }, - "fill": 0, - "fillGradient": 0, - "grid": {}, - "gridPos": { - "h": 7, - "w": 12, - "x": 0, - "y": 23 - }, - "hiddenSeries": false, - "id": 5, - "legend": { - "alignAsTable": true, - "avg": true, - "current": false, - "max": true, - "min": false, - "show": true, - "sort": "avg", - "sortDesc": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 2, - "mode": "", - "nullPointMode": "connected", - "percentage": false, - "pluginVersion": "7.1.3", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "style": {}, - "targets": [ - { - "alias": "$tag_partition viosid: $tag_ViosID vlan $tag_VlanID: $tag_name", - "dsType": "influxdb", - "groupBy": [ - { - "params": [ - "$interval" - ], - "type": "time" - }, - { - "params": [ - "name" - ], - "type": "tag" - }, - { - "params": [ - "VlanID" - ], - "type": "tag" - }, - { - "params": [ - "ViosID" - ], - "type": "tag" - }, - { - "params": [ - "partition" - ], - "type": "tag" - }, - { - "params": [ - "null" - ], - "type": "fill" - } - ], - "hide": false, - "measurement": "PartitionVirtualEthernetAdapters", - "policy": "default", - "refId": "A", - "resultFormat": "time_series", - "select": [ - [ - { - "params": [ - "value" - ], - "type": "field" - }, - { - "params": [], - "type": "mean" - } - ] - ], - "tags": [ - { - "condition": "", - "key": "partition", - "operator": "=~", - "value": "/^$Partition$/" - }, - { - "condition": "AND", - "key": "name", - "operator": "=~", - "value": "/Bytes/" - }, - { - "condition": "AND", - "key": "name", - "operator": "=~", - "value": "/PhysicalBytes/" - }, - { - "condition": "AND", - "key": "system", - "operator": "=~", - "value": "/^$ManagedSystem$/" - } - ] - } - ], - "thresholds": [], - "timeFrom": null, - "timeRegions": [], - "timeShift": null, - "title": "Virtual Network Adapter: physical throughput", - "tooltip": { - "msResolution": false, - "shared": true, - "sort": 0, - "value_type": "cumulative" - }, - "type": "graph", - "xaxis": { - "buckets": null, - "mode": "time", - "name": null, - "show": true, - "values": [] - }, - "yaxes": [ - { - "format": "Bps", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - }, - { - "format": "short", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - } - ], - "yaxis": { - "align": false, - "alignLevel": null - } - }, - { - "aliasColors": {}, - "bars": false, - "content": "", - "dashLength": 10, - "dashes": false, - "datasource": "${DS_INFLUXDB}", - "editable": true, - "error": false, - "fieldConfig": { - "defaults": { - "custom": {} - }, - "overrides": [] - }, - "fill": 0, - "fillGradient": 0, - "grid": {}, - "gridPos": { - "h": 7, - "w": 12, - "x": 12, - "y": 23 - }, - "hiddenSeries": false, - "id": 8, - "legend": { - "alignAsTable": true, - "avg": true, - "current": false, - "max": true, - "min": true, - "show": true, - "sort": "avg", - "sortDesc": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 2, - "mode": "", - "nullPointMode": "connected", - "percentage": false, - "pluginVersion": "7.1.3", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "style": {}, - "targets": [ - { - "alias": "$tag_partition vlan $tag_VlanID: $tag_name", - "dsType": "influxdb", - "groupBy": [ - { - "params": [ - "$interval" - ], - "type": "time" - }, - { - "params": [ - "name" - ], - "type": "tag" - }, - { - "params": [ - "VlanID" - ], - "type": "tag" - }, - { - "params": [ - "partition" - ], - "type": "tag" - }, - { - "params": [ - "null" - ], - "type": "fill" - } - ], - "hide": false, - "measurement": "PartitionVirtualEthernetAdapters", - "policy": "default", - "refId": "A", - "resultFormat": "time_series", - "select": [ - [ - { - "params": [ - "value" - ], - "type": "field" - }, - { - "params": [], - "type": "mean" - } - ] - ], - "tags": [ - { - "condition": "", - "key": "partition", - "operator": "=~", - "value": "/^$Partition$/" - }, - { - "condition": "AND", - "key": "name", - "operator": "=~", - "value": "/Bytes/" - }, - { - "condition": "AND", - "key": "name", - "operator": "=~", - "value": "/PhysicalBytes/" - }, - { - "condition": "AND", - "key": "system", - "operator": "=~", - "value": "/^$ManagedSystem$/" - } - ] - } - ], - "thresholds": [], - "timeFrom": null, - "timeRegions": [], - "timeShift": null, - "title": "Virtual Network Adapter: virtual throughput", - "tooltip": { - "msResolution": false, - "shared": true, - "sort": 0, - "value_type": "cumulative" - }, - "type": "graph", - "xaxis": { - "buckets": null, - "mode": "time", - "name": null, - "show": true, - "values": [] - }, - "yaxes": [ - { - "format": "Bps", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - }, - { - "format": "short", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - } - ], - "yaxis": { - "align": false, - "alignLevel": null - } - }, - { - "aliasColors": {}, - "bars": false, - "content": "", - "dashLength": 10, - "dashes": false, - "datasource": "${DS_INFLUXDB}", - "editable": true, - "error": false, - "fieldConfig": { - "defaults": { - "custom": {} - }, - "overrides": [] - }, - "fill": 2, - "fillGradient": 0, - "grid": {}, - "gridPos": { - "h": 7, - "w": 12, - "x": 0, - "y": 30 - }, - "hiddenSeries": false, - "id": 9, - "legend": { - "alignAsTable": true, - "avg": true, - "current": false, - "max": true, - "min": false, - "show": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 2, - "mode": "", - "nullPointMode": "connected", - "percentage": false, - "pluginVersion": "7.1.3", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": true, - "steppedLine": false, - "style": {}, - "targets": [ - { - "alias": "$tag_partition $tag_wwpn : $tag_name", - "dsType": "influxdb", - "groupBy": [ - { - "params": [ - "$interval" - ], - "type": "time" - }, - { - "params": [ - "name" - ], - "type": "tag" - }, - { - "params": [ - "wwpn" - ], - "type": "tag" - }, - { - "params": [ - "partition" - ], - "type": "tag" - }, - { - "params": [ - "null" - ], - "type": "fill" - } - ], - "hide": false, - "measurement": "PartitionVirtualFiberChannelAdapters", - "policy": "default", - "refId": "A", - "resultFormat": "time_series", - "select": [ - [ - { - "params": [ - "value" - ], - "type": "field" - }, - { - "params": [], - "type": "mean" - } - ] - ], - "tags": [ - { - "condition": "", - "key": "system", - "operator": "=~", - "value": "/^$ManagedSystem$/" - }, - { - "condition": "AND", - "key": "name", - "operator": "=~", - "value": "/Bytes/" - }, - { - "condition": "AND", - "key": "partition", - "operator": "=~", - "value": "/^$Partition$/" - }, - { - "condition": "AND", - "key": "name", - "operator": "=~", - "value": "/trans/" - } - ] - } - ], - "thresholds": [], - "timeFrom": null, - "timeRegions": [], - "timeShift": null, - "title": "Virtual Fiber Channel Adapters", - "tooltip": { - "msResolution": false, - "shared": true, - "sort": 0, - "value_type": "cumulative" - }, - "type": "graph", - "xaxis": { - "buckets": null, - "mode": "time", - "name": null, - "show": true, - "values": [] - }, - "yaxes": [ - { - "format": "Bps", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - }, - { - "format": "short", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - } - ], - "yaxis": { - "align": false, - "alignLevel": null - } - }, - { - "aliasColors": {}, - "bars": false, - "content": "", - "dashLength": 10, - "dashes": false, - "datasource": "${DS_INFLUXDB}", - "editable": true, - "error": false, - "fieldConfig": { - "defaults": { - "custom": {} - }, - "overrides": [] - }, - "fill": 1, - "fillGradient": 0, - "grid": {}, - "gridPos": { - "h": 7, - "w": 12, - "x": 12, - "y": 30 - }, - "hiddenSeries": false, - "id": 11, - "legend": { - "alignAsTable": true, - "avg": true, - "current": false, - "max": true, - "min": true, - "show": true, - "sort": "avg", - "sortDesc": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 2, - "mode": "", - "nullPointMode": "connected", - "percentage": false, - "pluginVersion": "7.1.3", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": true, - "steppedLine": false, - "style": {}, - "targets": [ - { - "alias": "$tag_partition $tag_wwpn : $tag_name", - "dsType": "influxdb", - "groupBy": [ - { - "params": [ - "$interval" - ], - "type": "time" - }, - { - "params": [ - "name" - ], - "type": "tag" - }, - { - "params": [ - "wwpn" - ], - "type": "tag" - }, - { - "params": [ - "partition" - ], - "type": "tag" - }, - { - "params": [ - "null" - ], - "type": "fill" - } - ], - "hide": false, - "measurement": "PartitionVirtualFiberChannelAdapters", - "policy": "default", - "refId": "A", - "resultFormat": "time_series", - "select": [ - [ - { - "params": [ - "value" - ], - "type": "field" - }, - { - "params": [], - "type": "mean" - } - ] - ], - "tags": [ - { - "condition": "", - "key": "system", - "operator": "=~", - "value": "/^$ManagedSystem$/" - }, - { - "condition": "AND", - "key": "name", - "operator": "=~", - "value": "/Bytes/" - }, - { - "condition": "AND", - "key": "partition", - "operator": "=~", - "value": "/^$Partition$/" - } - ] - } - ], - "thresholds": [], - "timeFrom": null, - "timeRegions": [], - "timeShift": null, - "title": "Virtual Fiber Channel Adapters", - "tooltip": { - "msResolution": false, - "shared": true, - "sort": 0, - "value_type": "cumulative" - }, - "type": "graph", - "xaxis": { - "buckets": null, - "mode": "time", - "name": null, - "show": true, - "values": [] - }, - "yaxes": [ - { - "format": "Bps", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - }, - { + "$$hashKey": "object:4019", "format": "short", "label": null, "logBase": 1, @@ -1408,11 +1595,11 @@ } } ], - "refresh": false, - "schemaVersion": 26, + "refresh": "1m", + "schemaVersion": 25, "style": "dark", "tags": [ - "AIX" + "Power" ], "templating": { "list": [ @@ -1420,7 +1607,7 @@ "allFormat": "regex values", "allValue": null, "current": {}, - "datasource": "${DS_INFLUXDB}", + "datasource": "${DS_HMCI}", "definition": "", "hide": 0, "includeAll": false, @@ -1445,7 +1632,7 @@ "allFormat": "regex values", "allValue": null, "current": {}, - "datasource": "${DS_INFLUXDB}", + "datasource": "${DS_HMCI}", "definition": "", "hide": 0, "includeAll": true, @@ -1469,13 +1656,12 @@ ] }, "time": { - "from": "now/w", + "from": "now-3h", "now": false, "to": "now" }, "timepicker": { "refresh_intervals": [ - "5s", "10s", "30s", "1m", @@ -1501,5 +1687,5 @@ "timezone": "browser", "title": "Power Systems - HMC Logical Partitions", "uid": "Xl7oHESGz", - "version": 3 -} + "version": 19 +} \ No newline at end of file diff --git a/doc/Power Systems - HMC Managed Systems-1597311518654.json b/doc/Power Systems - HMC Managed Systems-1599142541940.json similarity index 94% rename from doc/Power Systems - HMC Managed Systems-1597311518654.json rename to doc/Power Systems - HMC Managed Systems-1599142541940.json index 0a80a68..bd51652 100644 --- a/doc/Power Systems - HMC Managed Systems-1597311518654.json +++ b/doc/Power Systems - HMC Managed Systems-1599142541940.json @@ -1,8 +1,8 @@ { "__inputs": [ { - "name": "DS_INFLUXDB", - "label": "InfluxDB", + "name": "DS_HMCI", + "label": "HMCi", "description": "", "type": "datasource", "pluginId": "influxdb", @@ -14,7 +14,7 @@ "type": "grafana", "id": "grafana", "name": "Grafana", - "version": "7.1.3" + "version": "7.0.6" }, { "type": "panel", @@ -43,17 +43,17 @@ } ] }, - "description": "HMC Managed Systems", + "description": "HMC metrics from HMCi", "editable": true, "gnetId": 1465, "graphTooltip": 0, "id": null, - "iteration": 1597311329834, + "iteration": 1599142530735, "links": [], "panels": [ { "collapsed": false, - "datasource": "${DS_INFLUXDB}", + "datasource": "${DS_HMCI}", "gridPos": { "h": 1, "w": 24, @@ -72,7 +72,7 @@ "content": "", "dashLength": 10, "dashes": false, - "datasource": "${DS_INFLUXDB}", + "datasource": "${DS_HMCI}", "decimals": 2, "editable": true, "error": false, @@ -108,6 +108,9 @@ "links": [], "mode": "", "nullPointMode": "connected", + "options": { + "dataLinks": [] + }, "percentage": false, "pluginVersion": "7.1.3", "pointradius": 5, @@ -150,6 +153,7 @@ ], "hide": false, "measurement": "SystemSharedProcessorPool", + "orderByTime": "ASC", "policy": "default", "refId": "A", "resultFormat": "time_series", @@ -176,8 +180,8 @@ { "condition": "AND", "key": "name", - "operator": "!=", - "value": "availableProcUnits" + "operator": "=~", + "value": "/Units/" } ] } @@ -230,7 +234,7 @@ "content": "", "dashLength": 10, "dashes": false, - "datasource": "${DS_INFLUXDB}", + "datasource": "${DS_HMCI}", "decimals": 2, "editable": true, "error": false, @@ -266,6 +270,9 @@ "links": [], "mode": "", "nullPointMode": "connected", + "options": { + "dataLinks": [] + }, "percentage": false, "pluginVersion": "7.1.3", "pointradius": 5, @@ -302,6 +309,7 @@ ], "hide": false, "measurement": "SystemProcessor", + "orderByTime": "ASC", "policy": "default", "refId": "A", "resultFormat": "time_series", @@ -379,7 +387,7 @@ }, { "collapsed": false, - "datasource": "${DS_INFLUXDB}", + "datasource": "${DS_HMCI}", "gridPos": { "h": 1, "w": 24, @@ -398,7 +406,7 @@ "content": "", "dashLength": 10, "dashes": false, - "datasource": "${DS_INFLUXDB}", + "datasource": "${DS_HMCI}", "decimals": 2, "editable": true, "error": false, @@ -436,6 +444,9 @@ "links": [], "mode": "", "nullPointMode": "connected", + "options": { + "dataLinks": [] + }, "percentage": false, "pluginVersion": "7.1.3", "pointradius": 5, @@ -565,7 +576,7 @@ "content": "", "dashLength": 10, "dashes": false, - "datasource": "${DS_INFLUXDB}", + "datasource": "${DS_HMCI}", "editable": true, "error": false, "fieldConfig": { @@ -600,6 +611,9 @@ "links": [], "mode": "", "nullPointMode": "connected", + "options": { + "dataLinks": [] + }, "percentage": false, "pluginVersion": "7.1.3", "pointradius": 5, @@ -707,7 +721,7 @@ }, { "collapsed": false, - "datasource": "${DS_INFLUXDB}", + "datasource": "${DS_HMCI}", "gridPos": { "h": 1, "w": 24, @@ -726,7 +740,7 @@ "content": "", "dashLength": 10, "dashes": false, - "datasource": "${DS_INFLUXDB}", + "datasource": "${DS_HMCI}", "editable": true, "error": false, "fieldConfig": { @@ -762,6 +776,9 @@ "links": [], "mode": "", "nullPointMode": "connected", + "options": { + "dataLinks": [] + }, "percentage": false, "pluginVersion": "7.1.3", "pointradius": 5, @@ -810,6 +827,7 @@ ], "hide": false, "measurement": "SystemFiberChannelAdapters", + "orderByTime": "ASC", "policy": "default", "refId": "A", "resultFormat": "time_series", @@ -829,7 +847,6 @@ ], "tags": [ { - "condition": "", "key": "system", "operator": "=~", "value": "/^$ManagedSystem$/" @@ -838,7 +855,7 @@ "condition": "AND", "key": "name", "operator": "=~", - "value": "/writeByt/" + "value": "/Bytes/" } ] } @@ -852,7 +869,7 @@ "msResolution": false, "shared": true, "sort": 0, - "value_type": "cumulative" + "value_type": "individual" }, "type": "graph", "xaxis": { @@ -891,7 +908,7 @@ "content": "", "dashLength": 10, "dashes": false, - "datasource": "${DS_INFLUXDB}", + "datasource": "${DS_HMCI}", "editable": true, "error": false, "fieldConfig": { @@ -927,6 +944,9 @@ "links": [], "mode": "", "nullPointMode": "connected", + "options": { + "dataLinks": [] + }, "percentage": false, "pluginVersion": "7.1.3", "pointradius": 5, @@ -975,6 +995,7 @@ ], "hide": false, "measurement": "SystemSharedAdapters", + "orderByTime": "ASC", "policy": "default", "refId": "A", "resultFormat": "time_series", @@ -994,7 +1015,6 @@ ], "tags": [ { - "condition": "", "key": "system", "operator": "=~", "value": "/^$ManagedSystem$/" @@ -1002,8 +1022,8 @@ { "condition": "AND", "key": "name", - "operator": "=", - "value": "transferredBytes" + "operator": "<>", + "value": "test" } ] } @@ -1017,7 +1037,7 @@ "msResolution": false, "shared": true, "sort": 0, - "value_type": "cumulative" + "value_type": "individual" }, "type": "graph", "xaxis": { @@ -1051,11 +1071,11 @@ } } ], - "refresh": "5m", - "schemaVersion": 26, + "refresh": "30s", + "schemaVersion": 25, "style": "dark", "tags": [ - "AIX" + "Power" ], "templating": { "list": [ @@ -1063,7 +1083,7 @@ "allFormat": "regex values", "allValue": null, "current": {}, - "datasource": "${DS_INFLUXDB}", + "datasource": "${DS_HMCI}", "definition": "", "hide": 0, "includeAll": false, @@ -1088,7 +1108,7 @@ "allFormat": "regex values", "allValue": null, "current": {}, - "datasource": "${DS_INFLUXDB}", + "datasource": "${DS_HMCI}", "definition": "", "hide": 0, "includeAll": true, @@ -1112,13 +1132,12 @@ ] }, "time": { - "from": "now/w", + "from": "now-6h", "now": false, "to": "now" }, "timepicker": { "refresh_intervals": [ - "5s", "10s", "30s", "1m", @@ -1144,5 +1163,5 @@ "timezone": "browser", "title": "Power Systems - HMC Managed Systems", "uid": "ClJhHPIGz", - "version": 4 -} + "version": 20 +} \ No newline at end of file diff --git a/doc/Power Systems - HMC Virtual Input Output Servers-1599142519131.json b/doc/Power Systems - HMC Virtual Input Output Servers-1599142519131.json new file mode 100644 index 0000000..4fa80b5 --- /dev/null +++ b/doc/Power Systems - HMC Virtual Input Output Servers-1599142519131.json @@ -0,0 +1,679 @@ +{ + "__inputs": [ + { + "name": "DS_HMCI", + "label": "HMCi", + "description": "", + "type": "datasource", + "pluginId": "influxdb", + "pluginName": "InfluxDB" + } + ], + "__requires": [ + { + "type": "grafana", + "id": "grafana", + "name": "Grafana", + "version": "7.0.6" + }, + { + "type": "panel", + "id": "graph", + "name": "Graph", + "version": "" + }, + { + "type": "datasource", + "id": "influxdb", + "name": "InfluxDB", + "version": "1.0.0" + } + ], + "annotations": { + "enable": false, + "list": [ + { + "builtIn": 1, + "datasource": "-- Grafana --", + "enable": true, + "hide": true, + "iconColor": "rgba(0, 211, 255, 1)", + "name": "Annotations & Alerts", + "type": "dashboard" + } + ] + }, + "description": "HMC metrics from HMCi", + "editable": true, + "gnetId": 1465, + "graphTooltip": 0, + "id": null, + "iteration": 1599142406783, + "links": [], + "panels": [ + { + "collapsed": false, + "datasource": "${DS_HMCI}", + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 0 + }, + "id": 22, + "panels": [], + "repeat": "ManagedSystem", + "title": "$ManagedSystem Throughput", + "type": "row" + }, + { + "aliasColors": {}, + "bars": false, + "content": "", + "dashLength": 10, + "dashes": false, + "datasource": "${DS_HMCI}", + "editable": true, + "error": false, + "fieldConfig": { + "defaults": { + "custom": {} + }, + "overrides": [] + }, + "fill": 2, + "fillGradient": 0, + "grid": {}, + "gridPos": { + "h": 8, + "w": 24, + "x": 0, + "y": 1 + }, + "hiddenSeries": false, + "id": 16, + "legend": { + "alignAsTable": true, + "avg": true, + "current": false, + "max": true, + "min": false, + "rightSide": true, + "show": true, + "total": false, + "values": true + }, + "lines": true, + "linewidth": 2, + "links": [], + "mode": "", + "nullPointMode": "connected", + "options": { + "dataLinks": [] + }, + "percentage": false, + "pluginVersion": "7.1.3", + "pointradius": 5, + "points": false, + "renderer": "flot", + "seriesOverrides": [], + "spaceLength": 10, + "stack": false, + "steppedLine": false, + "style": {}, + "targets": [ + { + "alias": "$tag_vios: $tag_id / $tag_device", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "vios" + ], + "type": "tag" + }, + { + "params": [ + "device" + ], + "type": "tag" + }, + { + "params": [ + "id" + ], + "type": "tag" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "SystemFiberChannelAdapters", + "orderByTime": "ASC", + "policy": "default", + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "value" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "system", + "operator": "=~", + "value": "/^$ManagedSystem$/" + }, + { + "condition": "AND", + "key": "vios", + "operator": "=~", + "value": "/^$Vios$/" + }, + { + "condition": "AND", + "key": "name", + "operator": "=", + "value": "transmittedBytes" + } + ] + } + ], + "thresholds": [], + "timeFrom": null, + "timeRegions": [], + "timeShift": null, + "title": "$ManagedSystem VIOS Physical Fiber Channel Adapters", + "tooltip": { + "msResolution": false, + "shared": true, + "sort": 0, + "value_type": "individual" + }, + "type": "graph", + "xaxis": { + "buckets": null, + "mode": "time", + "name": null, + "show": true, + "values": [] + }, + "yaxes": [ + { + "$$hashKey": "object:2511", + "format": "Bps", + "label": null, + "logBase": 1, + "max": null, + "min": null, + "show": true + }, + { + "$$hashKey": "object:2512", + "format": "none", + "label": null, + "logBase": 1, + "max": null, + "min": null, + "show": true + } + ], + "yaxis": { + "align": false, + "alignLevel": null + } + }, + { + "aliasColors": {}, + "bars": false, + "content": "", + "dashLength": 10, + "dashes": false, + "datasource": "${DS_HMCI}", + "editable": true, + "error": false, + "fieldConfig": { + "defaults": { + "custom": {} + }, + "overrides": [] + }, + "fill": 1, + "fillGradient": 0, + "grid": {}, + "gridPos": { + "h": 8, + "w": 24, + "x": 0, + "y": 9 + }, + "hiddenSeries": false, + "id": 11, + "legend": { + "alignAsTable": true, + "avg": true, + "current": false, + "max": true, + "min": true, + "rightSide": true, + "show": true, + "total": false, + "values": true + }, + "lines": true, + "linewidth": 2, + "links": [], + "mode": "", + "nullPointMode": "connected", + "options": { + "dataLinks": [] + }, + "percentage": false, + "pluginVersion": "7.1.3", + "pointradius": 5, + "points": false, + "renderer": "flot", + "seriesOverrides": [], + "spaceLength": 10, + "stack": false, + "steppedLine": false, + "style": {}, + "targets": [ + { + "alias": "$tag_vios: $tag_name", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "vios" + ], + "type": "tag" + }, + { + "params": [ + "name" + ], + "type": "tag" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "SystemSharedAdapters", + "orderByTime": "ASC", + "policy": "default", + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "value" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "system", + "operator": "=~", + "value": "/^$ManagedSystem$/" + }, + { + "condition": "AND", + "key": "vios", + "operator": "=~", + "value": "/^$Vios$/" + }, + { + "condition": "AND", + "key": "name", + "operator": "=", + "value": "transferredBytes" + } + ] + } + ], + "thresholds": [], + "timeFrom": null, + "timeRegions": [], + "timeShift": null, + "title": "$ManagedSystem Shared Adapters", + "tooltip": { + "msResolution": false, + "shared": true, + "sort": 0, + "value_type": "individual" + }, + "type": "graph", + "xaxis": { + "buckets": null, + "mode": "time", + "name": null, + "show": true, + "values": [] + }, + "yaxes": [ + { + "$$hashKey": "object:2622", + "format": "Bps", + "label": null, + "logBase": 1, + "max": null, + "min": null, + "show": true + }, + { + "$$hashKey": "object:2623", + "format": "short", + "label": null, + "logBase": 1, + "max": null, + "min": null, + "show": true + } + ], + "yaxis": { + "align": false, + "alignLevel": null + } + }, + { + "aliasColors": {}, + "bars": false, + "content": "", + "dashLength": 10, + "dashes": false, + "datasource": "${DS_HMCI}", + "editable": true, + "error": false, + "fieldConfig": { + "defaults": { + "custom": {} + }, + "overrides": [] + }, + "fill": 2, + "fillGradient": 0, + "grid": {}, + "gridPos": { + "h": 8, + "w": 24, + "x": 0, + "y": 17 + }, + "hiddenSeries": false, + "id": 26, + "legend": { + "alignAsTable": true, + "avg": true, + "current": false, + "max": true, + "min": false, + "rightSide": true, + "show": true, + "total": false, + "values": true + }, + "lines": true, + "linewidth": 2, + "mode": "", + "nullPointMode": "connected", + "options": { + "dataLinks": [] + }, + "percentage": false, + "pluginVersion": "7.1.3", + "pointradius": 5, + "points": false, + "renderer": "flot", + "seriesOverrides": [], + "spaceLength": 10, + "stack": false, + "steppedLine": false, + "style": {}, + "targets": [ + { + "alias": "$tag_vios: $tag_device xmit", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "vios" + ], + "type": "tag" + }, + { + "params": [ + "device" + ], + "type": "tag" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "SystemGenericPhysicalAdapters", + "orderByTime": "ASC", + "policy": "default", + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "value" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "system", + "operator": "=~", + "value": "/^$ManagedSystem$/" + }, + { + "condition": "AND", + "key": "vios", + "operator": "=~", + "value": "/^$Vios$/" + }, + { + "condition": "AND", + "key": "name", + "operator": "=", + "value": "transmittedBytes" + } + ] + } + ], + "thresholds": [], + "timeFrom": null, + "timeRegions": [], + "timeShift": null, + "title": "$ManagedSystem VIOS Generic Physical Adapters", + "tooltip": { + "msResolution": false, + "shared": true, + "sort": 0, + "value_type": "individual" + }, + "type": "graph", + "xaxis": { + "buckets": null, + "mode": "time", + "name": null, + "show": true, + "values": [] + }, + "yaxes": [ + { + "$$hashKey": "object:2958", + "format": "Bps", + "label": null, + "logBase": 1, + "max": null, + "min": null, + "show": true + }, + { + "$$hashKey": "object:2959", + "format": "short", + "label": null, + "logBase": 1, + "max": null, + "min": null, + "show": true + } + ], + "yaxis": { + "align": false, + "alignLevel": null + } + } + ], + "refresh": "30s", + "schemaVersion": 25, + "style": "dark", + "tags": [ + "Power", + "AIX" + ], + "templating": { + "list": [ + { + "allFormat": "regex values", + "allValue": null, + "current": {}, + "datasource": "${DS_HMCI}", + "definition": "", + "hide": 0, + "includeAll": false, + "label": null, + "multi": true, + "multiFormat": "regex values", + "name": "ManagedSystem", + "options": [], + "query": "SHOW TAG VALUES FROM \"SystemProcessor\" WITH KEY = \"system\"", + "refresh": 1, + "refresh_on_load": false, + "regex": "", + "skipUrlSync": false, + "sort": 0, + "tagValuesQuery": null, + "tags": [], + "tagsQuery": null, + "type": "query", + "useTags": false + }, + { + "allFormat": "regex values", + "allValue": null, + "current": {}, + "datasource": "${DS_HMCI}", + "definition": "SHOW TAG VALUES FROM \"SystemFiberChannelAdapters\" WITH KEY = \"vios\" where system =~ /$ManagedSystem/", + "hide": 0, + "includeAll": true, + "label": "VIOS", + "multi": true, + "multiFormat": "regex values", + "name": "Vios", + "options": [], + "query": "SHOW TAG VALUES FROM \"SystemFiberChannelAdapters\" WITH KEY = \"vios\" where system =~ /$ManagedSystem/", + "refresh": 1, + "refresh_on_load": false, + "regex": "", + "skipUrlSync": false, + "sort": 0, + "tagValuesQuery": null, + "tags": [], + "tagsQuery": null, + "type": "query", + "useTags": false + } + ] + }, + "time": { + "from": "now-3h", + "now": false, + "to": "now" + }, + "timepicker": { + "refresh_intervals": [ + "10s", + "30s", + "1m", + "5m", + "15m", + "30m", + "1h", + "2h", + "1d" + ], + "time_options": [ + "5m", + "15m", + "1h", + "6h", + "12h", + "24h", + "2d", + "7d", + "30d" + ] + }, + "timezone": "browser", + "title": "Power Systems - HMC Virtual Input Output Servers", + "uid": "DDNEv5vGz", + "version": 17 +} \ No newline at end of file