From 1a25d77fb5f99fe05fccf259c6ce01a5b1442812 Mon Sep 17 00:00:00 2001 From: dprizentsov Date: Fri, 19 Dec 2025 16:05:56 +0100 Subject: [PATCH 1/7] import dashboards from RMF PM .po files Signed-off-by: dprizentsov --- .../rmf-app/src/components/Root/PmImport.ts | 478 + grafana/rmf-app/src/components/Root/Root.tsx | 170 +- grafana/rmf-app/src/components/Root/types.ts | 5 + grafana/rmf-app/src/constants.ts | 1 + grafana/rmf-app/src/img/pm390.png | Bin 0 -> 431 bytes grafana/rmf-app/src/metrics/dds/index.json | 21878 ++++++++++++++++ 6 files changed, 22526 insertions(+), 6 deletions(-) create mode 100644 grafana/rmf-app/src/components/Root/PmImport.ts create mode 100644 grafana/rmf-app/src/img/pm390.png create mode 100644 grafana/rmf-app/src/metrics/dds/index.json diff --git a/grafana/rmf-app/src/components/Root/PmImport.ts b/grafana/rmf-app/src/components/Root/PmImport.ts new file mode 100644 index 0000000..5968abb --- /dev/null +++ b/grafana/rmf-app/src/components/Root/PmImport.ts @@ -0,0 +1,478 @@ +import { DATA_SOURCE_TYPE } from "../../constants"; +import metrics from '../../metrics/dds/index.json'; + +const metricMap = prepareMetricMap(); + +const DATASOURCE_DEFAULT_UID = "${datasource}"; +const emptyDashboard = { + "annotations": { + "list": [ + { + "builtIn": 1, + "datasource": { + "type": "grafana", + "uid": "-- Grafana --" + }, + "enable": true, + "hide": true, + "iconColor": "rgba(0, 211, 255, 1)", + "name": "Annotations & Alerts", + "type": "dashboard" + } + ] + }, + "editable": true, + "fiscalYearStartMonth": 0, + "graphTooltip": 0, + "links": [], + "liveNow": false, + "panels": [], + "refresh": "", + "schemaVersion": 39, + "tags": [], + "templating": { + "list": [] + }, + "time": { + "from": "now-5m", + "to": "now" + }, + "timeRangeUpdatedDuringEditOrView": false, + "timepicker": {}, + "timezone": "", + "title": "Empty Dashboard", + "version": 1, + "weekStart": "" +} + +function getEmptyDashboard(): any { + return JSON.parse(JSON.stringify(emptyDashboard)); +} + +function prepareMetricMap() : Map { + const metricMap = new Map(); + metrics.metricList = metrics.metricList || []; + for (let i = 0; i < metrics.metricList.length; i++) { + let mle = metrics.metricList[i]; + mle.metric = mle.metric || []; + for (let j = 0; j < mle.metric.length; j++) { + let m = mle.metric[j]; + metricMap.set(m.id.toUpperCase(), {id: m.id, listtype: m.listtype || ''}); + } + } + return metricMap; +} + +interface CounterTypeInfo { + FILTER?: string; + WSCOPE_TYPE?: string; +} + +interface ProxyInfo { + TYPE?: string; + NAME?: string; + HOST?: string; + TCP_PORT?: number; + LOCALE?: string; + TIMEZONE?: string; + COMTO?: number; + XML_PORT?: number; + USE_HTTPS?: string; +} + +interface Series { + CATEGORY?: string; + CNTTYPE?: string; + DESC?: string; + FULLRESNAME?: string; + PROXYID?: string; + COLOR?: number; + COUNTER_TYPE_INFO?: CounterTypeInfo; + PROXY_INFO?: ProxyInfo; +} + +interface Frame { + X_ORIGIN?: number; + Y_ORIGIN?: number; + WIDTH?: number; + HEIGHT?: number; +} + +interface DataView { + DESC?: string; + XAXIS?: string; + CONT_ONFULL?: string; + BUFSIZE?: number; + AUTOSCALE?: string; + FRAME?: Frame; + SERIES?: Series[]; +} + +interface VarIString { + DESCR?: string; + NAME?: string; + VALUE?: string; +} + +interface VarSpace { + VAR_ISTRING?: VarIString[]; +} + +interface PerfDesk { + DESC?: string; + STARTUP?: string; + COLOR?: number; + DATAVIEW?: DataView[]; + VAR_SPACE?: VarSpace; +} + +interface ParsedData { + PERFDESK?: PerfDesk; + [key: string]: any; +} + +export function parsePmImportFile(content: string | ArrayBuffer | null): ParsedData { + if (!content) { + return {}; + } + content = content.toString(); + const lines = content.split('\n'); + const result: ParsedData = {}; + const stack: any[] = [result]; + const arrayTypes = new Set(['DATAVIEW', 'SERIES', 'VAR_ISTRING']); + + for (let i = 0; i < lines.length; i++) { + const lineSrc = lines[i]; + const level = lineSrc.search(/\S|$/)/3 + const line = lineSrc.trim(); + + if (line.startsWith('[') && line.endsWith(']')) { + if (stack.length > level + 1) { + stack.splice(level + 1); + } + const sectionName = line.slice(1, -1); + const newSection: any = {}; + const parent = stack[stack.length - 1]; + + if (arrayTypes.has(sectionName)) { + if (!parent[sectionName]) { + parent[sectionName] = []; + } + parent[sectionName].push(newSection); + } else { + parent[sectionName] = newSection; + } + + stack.push(newSection); + } else if (line === '{') { + continue; + } else if (line === '}') { + stack.pop(); + } else if (line.includes('=')) { + const equalIndex = line.indexOf('='); + const key = line.slice(0, equalIndex).trim(); + let value: any = line.slice(equalIndex + 1).trim(); + + if (value.startsWith('"') && value.endsWith('"')) { + value = value.slice(1, -1); + } else if (value === 'Y' || value === 'N') { + // Keep as string + } else if (!isNaN(Number(value))) { + value = Number(value); + } + + const current = stack[stack.length - 1]; + current[key] = value; + } + } + if (Object.keys(result).length == 0) { + throw new Error("RMF PM dashboard import file is invalid"); + } + return result; +} + +export function parsePmDatasources(content: string | ArrayBuffer | null): any[] { + const parsedData = parsePmImportFile(content); + const datasources: any[] = []; + parsedData.PERFDESK = parsedData.PERFDESK || {}; + parsedData.PERFDESK.DATAVIEW = parsedData.PERFDESK.DATAVIEW || []; + for (const dataView of parsedData.PERFDESK.DATAVIEW) { + for (const series of dataView.SERIES || []) { + const proxyInfo = series.PROXY_INFO; + if (proxyInfo) { + const dsName = proxyInfo.NAME || DATA_SOURCE_TYPE; + if (!datasources.find(ds => ds.name === dsName)) { + datasources.push({ + name: dsName, + type: DATA_SOURCE_TYPE, + host: proxyInfo.HOST || '', + port: proxyInfo.XML_PORT || 8803, + https: proxyInfo.USE_HTTPS === 'YES' ? true : false, + locale: proxyInfo.LOCALE || 'en_US', + timezone: proxyInfo.TIMEZONE || 'UTC', + }); + } + } + } + } + return datasources; +} + +export function parsePmImportFileToDashboard(content: string | ArrayBuffer | null, datasourcesNameUid: Map): any { + const parsedData = parsePmImportFile(content); + parsedData.PERFDESK = parsedData.PERFDESK || {}; + parsedData.PERFDESK.DESC = parsedData.PERFDESK.DESC || "Default Dashboard Description"; + + var needDatasourceVar = false; + var dashboard = getEmptyDashboard() + + dashboard.title = parsedData.PERFDESK.DESC; + dashboard.panels = []; + var deskSize = getDeskSize(parsedData.PERFDESK) + for (const dataView of parsedData.PERFDESK.DATAVIEW || []) { + var datasource = getDataSourceFromDataView(dataView, datasourcesNameUid); + if (datasource.uid === DATASOURCE_DEFAULT_UID) { + needDatasourceVar = true; + } + dashboard.panels.push({ + type: 'barchart', + title: dataView.DESC || 'Data View', + datasource: datasource, + options: { + orientation: dataView.XAXIS === 'H' ? 'vertical' : 'horizontal', + xField: getXFieldName(dataView), + //xTickLabelRotation: 90, + xTickLabelSpacing: 70, + }, + transformations: getTransformationsFromDataView(dataView), + gridPos: getGridPosition(deskSize, dataView), + targets: dataView.SERIES?.map((series, index) => ({ + selectedVisualisationType: getVisualizationType(series), + refId: String.fromCharCode(65 + index), + selectedQuery: getSelectedQueryFromSeries(series), + selectedResource: { + label: getSelectedResourceFromSeries(series), + value: getSelectedResourceFromSeries(series) + }, + })) || [] + }); + } + if (needDatasourceVar) { + addDatasourceVar(dashboard); + } + + return dashboard; +} + +function addDatasourceVar(dashboard: any) { + dashboard.templating.list.push({ + type: "datasource", + name: "datasource", + query: DATA_SOURCE_TYPE, + label: "Data source", + includeAll: false, + multi: false, + refresh: 1, + allowCustomValue: false, + }) +} + +function getDataSourceFromDataView(dataView: DataView | undefined, datasourcesNameUid: Map): {type: string; uid: string} { + if (dataView?.SERIES && dataView.SERIES.length > 0) { + return getDataSourceFromProxyInfo(dataView.SERIES[0].PROXY_INFO, datasourcesNameUid); + } + return { + type: DATA_SOURCE_TYPE, + uid: DATASOURCE_DEFAULT_UID + }; +} + +function getDataSourceFromProxyInfo(proxyInfo: ProxyInfo | undefined, datasourcesNameUid: Map): {type: string; uid: string} { + var dsName = DATASOURCE_DEFAULT_UID; + if (proxyInfo && proxyInfo.NAME) { + dsName = datasourcesNameUid.get(proxyInfo.NAME) || dsName; + } + return { + type: DATA_SOURCE_TYPE, + uid: dsName + }; +} + +function getXFieldName(dataView: DataView): string { + if (dataView?.SERIES && dataView.SERIES.length > 0) { + return getXFieldNameFromSeries(dataView.SERIES[0]); + } + return 'time'; +} + +function getXFieldNameFromSeries(series: Series): string { + var metricid = getMetricIdFromSeries(series); + if (!singleMetric(metricid)) { + return 'partition'; + } + return 'time'; +} + +function singleMetric(metricid: string): boolean { + var metricDef = findmetricById(metricid); + if (metricDef && metricDef.listtype && metricDef.listtype.trim() === '') { + return true; + } + return false; +} + +function getVisualizationType(series: Series): string { + var metricid = getMetricIdFromSeries(series); + if (singleMetric(metricid)) { + return 'TimeSeries'; + } + return 'bargauge'; +} + +function findmetricById(metricid: string): {id: string; listtype: string} | null { + return metricMap.get(metricid) || null; +} + +function getSelectedQueryFromSeries(series: Series): string { + var resource = parseSeriesResname(series.FULLRESNAME || ''); + var ulq = resource.ulq; + var type = resource.type; + var name = resource.name; + var description = parseSeriesDescription(series.DESC || ''); + var query = `${type}.${description.metricDescription} `; + + if (ulq || name || + (series.COUNTER_TYPE_INFO && (series.COUNTER_TYPE_INFO.FILTER || series.COUNTER_TYPE_INFO.WSCOPE_TYPE)) + ) { + var params: string[] = []; + if (ulq) { + params.push(`ulq=${ulq}`); + } + if (name) { + params.push(`name=${name}`); + } + if (series.COUNTER_TYPE_INFO && series.COUNTER_TYPE_INFO.FILTER) { + params.push(`filter=${prepareFilterValue(series.COUNTER_TYPE_INFO.FILTER, false)}`); + } + if (series.COUNTER_TYPE_INFO && series.COUNTER_TYPE_INFO.WSCOPE_TYPE) { + params.push(`workscope=,,${series.COUNTER_TYPE_INFO.WSCOPE_TYPE}`); + } + query += "{" + params.join(",") + "}"; + } + return query; +} + +function getMetricIdFromSeries(series: Series): string { + var query = series.CNTTYPE || ''; + query = query.replace("RMF#", "8D"); + return query.toUpperCase(); +} + +function getSelectedResourceFromSeries(series: Series): string { + var query = "id=" + getMetricIdFromSeries(series); + query += "&resource=" + (series.FULLRESNAME || ''); + if (series.COUNTER_TYPE_INFO) { + if (series.COUNTER_TYPE_INFO.FILTER) { + query += `&filter=${prepareFilterValue(series.COUNTER_TYPE_INFO.FILTER, true)}`; + } + if (series.COUNTER_TYPE_INFO.WSCOPE_TYPE) { + query += `&workscope=,,${series.COUNTER_TYPE_INFO.WSCOPE_TYPE}`; + } + } + return query; +} + +function prepareFilterValue(value: string, encode: boolean): string { + let valueTrimmed = value.trim(); + let valueParts = valueTrimmed.split(/\s*;\s*/); + let valueProcessedParts = valueParts.map(part => part.trim()).filter(part => part.length > 0); + let valueProcessed; + if (encode) { + valueProcessed = valueProcessedParts.join('%3B'); + } else { + valueProcessed = valueProcessedParts.join(';'); + } + let valueFinal = valueProcessed; + return valueFinal; +} + +function parseSeriesResname(fullresname: string): { ulq: string; name: string; type: string } { + const segments = fullresname.split(',').map(s => s.trim()); + + return { + ulq: segments[0] || '', + name: segments[1] || '', + type: segments[2] || '', + }; +} + +function parseSeriesDescription(description: string): { ulq: string; name: string; type: string; metricDescription: string } { + const parts = description.split(' - '); + const metricDescription = parts.length > 1 ? parts[1].trim() : ''; + + const leftPart = parts[0] || ''; + const segments = leftPart.split(',').map(s => s.trim()); + + return { + ulq: segments[0] || '', + name: segments[1] || '', + type: segments[2] || '', + metricDescription: metricDescription + }; +} + +function getTransformationsFromDataView(dataView: DataView): any[] { + const transformations: any[] = []; + if (dataView.XAXIS) { + if (dataView.XAXIS === 'H') { + + } else if (dataView.XAXIS === 'V') { + transformations.push({ + id: "joinByField", + options: { + byField: "time", + mode: "outerTabular" + } + }); + } + } + return transformations; +} + +function getDeskSize(perfDesk: PerfDesk): {width: number, height: number} { + var maxX = 0; + var maxY = 0; + for (const dataView of perfDesk.DATAVIEW || []) { + var frame = dataView.FRAME; + if (frame) { + var xEnd = (frame.X_ORIGIN || 0) + (frame.WIDTH || 0); + var yEnd = (frame.Y_ORIGIN || 0) + (frame.HEIGHT || 0); + if (xEnd > maxX) { + maxX = xEnd; + } + if (yEnd > maxY) { + maxY = yEnd; + } + } + } + return {width: maxX, height: maxY}; +} + +function getGridPosition(deskSize: {width: number, height: number}, dataView: DataView): any { + const gridWidth = 24; + const gridHeight = 24; + var scaleX = gridWidth / deskSize.width; + var scaleY = gridHeight / deskSize.height; + var dwx = dataView.FRAME?.X_ORIGIN ? Math.abs(dataView.FRAME.X_ORIGIN) : 0; + var dwy = dataView.FRAME?.Y_ORIGIN ? Math.abs(dataView.FRAME.Y_ORIGIN) : 0; + var x = Math.round(dwx * scaleX); + var y = Math.round(dwy * scaleY); + var w = dataView.FRAME?.WIDTH ? Math.floor((dataView.FRAME.WIDTH) * scaleX) : 8; + var h = dataView.FRAME?.HEIGHT ? Math.floor((dataView.FRAME.HEIGHT) * scaleY) : 8; + return { + x: x, + y: y, + h: h, + w: w, + } +} \ No newline at end of file diff --git a/grafana/rmf-app/src/components/Root/Root.tsx b/grafana/rmf-app/src/components/Root/Root.tsx index 702037b..c3a7933 100644 --- a/grafana/rmf-app/src/components/Root/Root.tsx +++ b/grafana/rmf-app/src/components/Root/Root.tsx @@ -15,24 +15,28 @@ * limitations under the License. */ import React, { PureComponent } from 'react'; -import { PanelContainer, Button, TextLink, Box, Icon, Alert, InlineSwitch, Input, InlineField } from '@grafana/ui'; +import { PanelContainer, Button, TextLink, Box, Icon, Alert, InlineSwitch, Input, InlineField, DropzoneFile } from '@grafana/ui'; import { locationService, getBackendSrv, getDataSourceSrv, getAppEvents } from '@grafana/runtime'; import { AppRootProps, AppEvents } from '@grafana/data'; -import { DDS_OPEN_METRICS_DOC_URL, DATA_SOURCE_TYPE, APP_LOGO_URL, FALCON_AS_DASHBOARD, FALCON_SYS_DASHBOARD } from '../../constants'; +import { DDS_OPEN_METRICS_DOC_URL, DATA_SOURCE_TYPE, APP_LOGO_URL, FALCON_AS_DASHBOARD, FALCON_SYS_DASHBOARD, PM_LOGO_URL } from '../../constants'; import { GlobalSettings } from '../../types'; import { DASHBOARDS as DDS_DASHBOARDS } from '../../dashboards/dds'; import { DASHBOARDS as PROM_DASHBOARDS } from '../../dashboards/prometheus'; import { findFolder, deleteFolder, installDashboards, findDashboard } from './utils'; -import { FolderStatus, Operation, OperCode, OperStatus, FalconStatus } from './types'; +import { FolderStatus, Operation, OperCode, OperStatus, FalconStatus, PmStatus } from './types'; import { StatusIcon } from './StatusIcon'; import { Space } from './Space'; import { Header } from './Header'; +import { FileDropzone } from '@grafana/ui'; +import { parsePmDatasources, parsePmImportFileToDashboard } from './PmImport'; const DDS_FOLDER_UID = 'ibm-rmf-dds'; const DDS_FOLDER_NAME = 'IBM RMF (DDS)'; const PROM_FOLDER_UID = 'ibm-rmf-prometheus'; const PROM_FOLDER_NAME = 'IBM RMF (Prometheus)'; +const PM_FOLDER_UID = 'ibm-rmf-pm'; +const PM_FOLDER_NAME = 'IBM RMF (PM)'; const DATASOURCE_API = '/api/datasources'; interface Props extends AppRootProps {} @@ -41,6 +45,7 @@ interface State { dds: FolderStatus; prom: FolderStatus; falcon: FalconStatus; + pm: PmStatus; } export class Root extends PureComponent { @@ -61,7 +66,12 @@ export class Root extends PureComponent { enabled: false, asDashboard: FALCON_AS_DASHBOARD, sysDashboard: FALCON_SYS_DASHBOARD, - } + }, + pm: { + folderPath: PM_FOLDER_NAME, + installed: false, + operation: { code: OperCode.None, status: OperStatus.None }, + }, }; } @@ -73,6 +83,7 @@ export class Root extends PureComponent { try { const ddsFolderPath = await findFolder(DDS_FOLDER_UID); const promFolderPath = await findFolder(PROM_FOLDER_UID); + const pmFolderPath = await findFolder(PM_FOLDER_UID); const asDashboard = await findDashboard("Job CPU Details", ["omegamon", "zos", "lpar", "cpu"]); const sysDashboard = await findDashboard("z/OS Enterprise Overview", ["omegamon", "zos", "enterprise"]); this.setState((prevState) => ({ @@ -90,7 +101,12 @@ export class Root extends PureComponent { ...prevState.falcon, asDashboard: asDashboard !== undefined ? asDashboard : FALCON_AS_DASHBOARD, sysDashboard: sysDashboard !== undefined ? sysDashboard : FALCON_SYS_DASHBOARD, - } + }, + pm: { + ...prevState.pm, + installed: pmFolderPath !== undefined, + folderPath: pmFolderPath || PM_FOLDER_NAME, + }, })); } catch (error) { console.error('failed to update state', error); @@ -165,8 +181,87 @@ export class Root extends PureComponent { } }; + importDashboard = async (folderUid: string, operCode: OperCode, dashboards: any[]) => { + //const isDds = folderUid === DDS_FOLDER_UID; + const defaultFolderName = PM_FOLDER_NAME; + + /*this.setFolderState(isDds, { + code: operCode, + status: OperStatus.InProgress, + });*/ + var err; + try { + if (operCode === OperCode.Reset || operCode === OperCode.Delete) { + await deleteFolder(folderUid); + } + if (operCode === OperCode.Reset || operCode === OperCode.Install) { + await installDashboards(folderUid, defaultFolderName, dashboards, {enabled: false} as FalconStatus); + } + /*this.setFolderState(isDds, { + code: operCode, + status: OperStatus.Done, + });*/ + } catch (error) { + /*this.setFolderState(isDds, { + code: operCode, + status: OperStatus.Error, + });*/ + const appEvents = getAppEvents(); + appEvents.publish({ + type: AppEvents.alertError.name, + payload: [`Unexpected error: ${error instanceof Error ? error.message : 'Unknown error'}`], + }); + err = error; + } finally { + // There seems to be no way to refresh the folder tree without reloading the page. + // When a folder deleted or created, + // it won't be visible in dashboard tree until page is reloaded. + await this.updateFolderState(); + } + if (!err) { + const appEvents = getAppEvents(); + appEvents.publish({ + type: AppEvents.alertSuccess.name, + payload: [`Dashboard imported: ${dashboards.length ? dashboards[0].title : 'Unknown'}`], + }); + } + }; + + prepareDatasources = async (content: string | ArrayBuffer | null) : Promise> => { + const datasources = await getDataSourceSrv().getList({type: DATA_SOURCE_TYPE}); + let nameUid = new Map(); + try { + const pmDatasources = parsePmDatasources(content); + for (const pmDs of pmDatasources) { + const existingDs = datasources.find(ds => ds.name === pmDs.name); + if (!existingDs) { + const { datasource } = await getBackendSrv().post(DATASOURCE_API, { + type: DATA_SOURCE_TYPE, + access: 'proxy', + name: pmDs.name, + jsonData: { + path: pmDs.host, + port: pmDs.port, + ssl: pmDs.https, + }, + }); + nameUid.set(pmDs.name, datasource.uid); + } else { + nameUid.set(pmDs.name, existingDs.uid); + } + } + } catch (error) { + const appEvents = getAppEvents(); + appEvents.publish({ + type: AppEvents.alertError.name, + payload: [`Unexpected error: ${error instanceof Error ? error.message : 'Unknown error'}`], + }); + } + return nameUid; + } + render() { - const { dds, prom, falcon } = this.state; + const { dds, prom, falcon, pm } = this.state; const isBusy = dds.operation.status === OperStatus.InProgress || prom.operation.status === OperStatus.InProgress; return ( @@ -379,6 +474,69 @@ export class Root extends PureComponent { + + + +

+ logo for IBM RMF + Import Dashboards from RMF Performance Monitorint File +

+
+

+ You can import dashboards .po files. Drag and drop the files onto the drop zone below. +

+

+ Destination folder: Dashboards / {pm.folderPath} + + [UID='{PM_FOLDER_UID}'] +

+ + + + + + { + const nameUid = await this.prepareDatasources(result); + const dashboard = parsePmImportFileToDashboard(result, nameUid); + await this.importDashboard(PM_FOLDER_UID, OperCode.Install, [dashboard]); + }} fileListRenderer={(file: DropzoneFile, removeFile: (file: DropzoneFile) => void) => { + return null; + }} /> + +

+ + Note: Ensure imported datasources have DDS Server credentials if required and fully qualified domain names or accessible IP addresses before using the dashboards. +

+
+
); } diff --git a/grafana/rmf-app/src/components/Root/types.ts b/grafana/rmf-app/src/components/Root/types.ts index 7c7aa46..8914295 100644 --- a/grafana/rmf-app/src/components/Root/types.ts +++ b/grafana/rmf-app/src/components/Root/types.ts @@ -44,4 +44,9 @@ export interface FalconStatus { enabled: boolean; asDashboard: string; sysDashboard: string; +} +export interface PmStatus { + folderPath: string; + installed: boolean; + operation: Operation; } \ No newline at end of file diff --git a/grafana/rmf-app/src/constants.ts b/grafana/rmf-app/src/constants.ts index bfce8a3..14acdcb 100644 --- a/grafana/rmf-app/src/constants.ts +++ b/grafana/rmf-app/src/constants.ts @@ -22,6 +22,7 @@ export const APP_NAME = appPluginJson.name; export const APP_DESC = appPluginJson.info.description; export const APP_LOGO = appPluginJson.info.logos.large; export const APP_LOGO_URL = `public/plugins/${appPluginJson.id}/${appPluginJson.info.logos.large}`; +export const PM_LOGO_URL = `public/plugins/${appPluginJson.id}/img/pm390.png`; export const APP_BASE_URL = `/a/${appPluginJson.id}`; export const DATA_SOURCE_TYPE = dataSourcePluginJson.id; export const DATA_SOURCE_NAME = dataSourcePluginJson.name; diff --git a/grafana/rmf-app/src/img/pm390.png b/grafana/rmf-app/src/img/pm390.png new file mode 100644 index 0000000000000000000000000000000000000000..2471e13c3562060131840476ff03a8aeb2dbb438 GIT binary patch literal 431 zcmV;g0Z{&lP)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!Tk6a=e?g_RN%FK7`EVv00I3q^}qMM+SjiC`gOVF+GYAL7V& zcFs7ttZaVxVVIf!n{#G&qJBDi{F2h$M~9hn%gJKX*7=Jp9W`WXrzYdsYxVSAO_mD{ zIVis+gILHEn=-jw)$n|-t{}`92=lv_ue}fpbK1=Qtq*paHTF>D$^GXa1nR`*jXbq} z`UXP-pi1sV!<@cwSeMcDiUPVTFwJF8eFf}YJARH^fkb~S02o=lauJc)jglLQjAaVC z$4o}s0AP~ Date: Wed, 24 Dec 2025 11:17:00 +0100 Subject: [PATCH 2/7] attempt to use mixed datasources, cleanup metrics file to keep only required fields, fixes Signed-off-by: dprizentsov --- .../rmf-app/src/components/Root/PmImport.ts | 30 +- grafana/rmf-app/src/components/Root/Root.tsx | 2 +- grafana/rmf-app/src/metrics/dds/index.json | 23260 +++------------- 3 files changed, 3866 insertions(+), 19426 deletions(-) diff --git a/grafana/rmf-app/src/components/Root/PmImport.ts b/grafana/rmf-app/src/components/Root/PmImport.ts index 5968abb..e26d4bc 100644 --- a/grafana/rmf-app/src/components/Root/PmImport.ts +++ b/grafana/rmf-app/src/components/Root/PmImport.ts @@ -4,6 +4,7 @@ import metrics from '../../metrics/dds/index.json'; const metricMap = prepareMetricMap(); const DATASOURCE_DEFAULT_UID = "${datasource}"; +const DATASOURCE_MIXED = "-- Mixed --"; const emptyDashboard = { "annotations": { "list": [ @@ -249,6 +250,7 @@ export function parsePmImportFileToDashboard(content: string | ArrayBuffer | nul targets: dataView.SERIES?.map((series, index) => ({ selectedVisualisationType: getVisualizationType(series), refId: String.fromCharCode(65 + index), + datasource: getDataSourceFromProxyInfo(series.PROXY_INFO, datasourcesNameUid), selectedQuery: getSelectedQueryFromSeries(series), selectedResource: { label: getSelectedResourceFromSeries(series), @@ -278,6 +280,20 @@ function addDatasourceVar(dashboard: any) { } function getDataSourceFromDataView(dataView: DataView | undefined, datasourcesNameUid: Map): {type: string; uid: string} { + var uniqueDatasources: Map = new Map(); + if (dataView?.SERIES) { + for (const series of dataView.SERIES) { + if (series.PROXY_INFO && series.PROXY_INFO.NAME) { + uniqueDatasources.set(series.PROXY_INFO.NAME, ''); + } + } + } + if (uniqueDatasources.size > 1) { + return { + type: 'datasource', + uid: DATASOURCE_MIXED + }; + } if (dataView?.SERIES && dataView.SERIES.length > 0) { return getDataSourceFromProxyInfo(dataView.SERIES[0].PROXY_INFO, datasourcesNameUid); } @@ -430,8 +446,8 @@ function getTransformationsFromDataView(dataView: DataView): any[] { transformations.push({ id: "joinByField", options: { - byField: "time", - mode: "outerTabular" + byField: getGroupByField(dataView), + mode: "outer" } }); } @@ -439,6 +455,16 @@ function getTransformationsFromDataView(dataView: DataView): any[] { return transformations; } +function getGroupByField(dataView: DataView): string { + if (dataView?.SERIES && dataView.SERIES.length > 0) { + var metricid = getMetricIdFromSeries(dataView.SERIES[0]); + if (!singleMetric(metricid)) { + return 'partition'; + } + } + return 'time'; +} + function getDeskSize(perfDesk: PerfDesk): {width: number, height: number} { var maxX = 0; var maxY = 0; diff --git a/grafana/rmf-app/src/components/Root/Root.tsx b/grafana/rmf-app/src/components/Root/Root.tsx index c3a7933..a17ae35 100644 --- a/grafana/rmf-app/src/components/Root/Root.tsx +++ b/grafana/rmf-app/src/components/Root/Root.tsx @@ -479,7 +479,7 @@ export class Root extends PureComponent {

logo for IBM RMF - Import Dashboards from RMF Performance Monitorint File + Import Dashboards from RMF Performance Monitoring File


diff --git a/grafana/rmf-app/src/metrics/dds/index.json b/grafana/rmf-app/src/metrics/dds/index.json index 00d749c..b8a68a3 100644 --- a/grafana/rmf-app/src/metrics/dds/index.json +++ b/grafana/rmf-app/src/metrics/dds/index.json @@ -5,5559 +5,1629 @@ "message": [], "metricList": [{ "metric": [{ - "description": "% read (in I/O rate)", - "format": "single", - "helpid": "5558", - "helpurl": "/gpm/include/metrics.html", "id": "8D4FE0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% space used", - "format": "single", - "helpid": "5555", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5010", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# cancelled operations", - "format": "single", - "helpid": "5580", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5040", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# disk I/O errors", - "format": "single", - "helpid": "5578", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5070", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# open objects", - "format": "single", - "helpid": "5563", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D50A0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# tokens", - "format": "single", - "helpid": "5564", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D50D0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# vnodes", - "format": "single", - "helpid": "5561", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5100", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# ENOSPC errors", - "format": "single", - "helpid": "5577", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5130", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# USS held vnodes", - "format": "single", - "helpid": "5562", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5160", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# XCF communication failures", - "format": "single", - "helpid": "5579", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5190", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# 4K pages in user cache", - "format": "single", - "helpid": "5565", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D51C0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# 8K pages in metadata cache", - "format": "single", - "helpid": "5566", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D51F0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "aggregate read rate", - "format": "single", - "helpid": "5571", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5220", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "aggregate write rate", - "format": "single", - "helpid": "5576", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5250", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "application read rate", - "format": "single", - "helpid": "5567", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5280", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "application read response time", - "format": "single", - "helpid": "5568", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D52B0", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "application write rate", - "format": "single", - "helpid": "5572", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D52E0", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "application write response time", - "format": "single", - "helpid": "5573", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5310", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "maximum size", - "format": "single", - "helpid": "5554", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5340", - "listtype": " ", - "unit": "bytes", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "response time (read + write)", - "format": "single", - "helpid": "5557", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5370", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "I/O rate (read + write)", - "format": "single", - "helpid": "5556", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5960", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "XCF rate (read + write)", - "format": "single", - "helpid": "5559", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5990", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "XCF read rate", - "format": "single", - "helpid": "5569", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D59C0", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "XCF read response time", - "format": "single", - "helpid": "5570", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D59F0", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "XCF write rate", - "format": "single", - "helpid": "5574", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5A20", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "XCF write response time", - "format": "single", - "helpid": "5575", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5A50", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } + "listtype": " " }], "resource": { "attributes": "YES", "expandable": "NO", - "helpurl": "/gpm/include/help/restypes/AGGREGATE.htm", "icon": "rmfaggre.gif", "reslabel": "RS26,*,AGGREGATE", "restype": "AGGREGATE" } }, { "metric": [{ - "description": "% bus utilization by channel path", - "format": "list", - "helpid": "5130", - "helpurl": "/gpm/include/metrics.html", "id": "8D2370", - "listtype": "C", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% partition utilization by channel path", - "format": "list", - "helpid": "2000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "C" + }, { "id": "8D0070", - "listtype": "C", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% total utilization by channel path", - "format": "list", - "helpid": "2001", - "helpurl": "/gpm/include/metrics.html", + "listtype": "C" + }, { "id": "8D0090", - "listtype": "C", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "ficon active operations by channel path", - "format": "list", - "helpid": "5422", - "helpurl": "/gpm/include/metrics.html", + "listtype": "C" + }, { "id": "8D4410", - "listtype": "C", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "ficon deferred operation rate by channel path", - "format": "list", - "helpid": "5421", - "helpurl": "/gpm/include/metrics.html", + "listtype": "C" + }, { "id": "8D4430", - "listtype": "C", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "ficon operation rate by channel path", - "format": "list", - "helpid": "5420", - "helpurl": "/gpm/include/metrics.html", + "listtype": "C" + }, { "id": "8D4450", - "listtype": "C", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "partition bytes read/sec by channel path", - "format": "list", - "helpid": "5131", - "helpurl": "/gpm/include/metrics.html", + "listtype": "C" + }, { "id": "8D23A0", - "listtype": "C", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "partition bytes written/sec by channel path", - "format": "list", - "helpid": "5133", - "helpurl": "/gpm/include/metrics.html", + "listtype": "C" + }, { "id": "8D23C0", - "listtype": "C", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "receive fail/sec by channel path", - "format": "list", - "helpid": "5136", - "helpurl": "/gpm/include/metrics.html", + "listtype": "C" + }, { "id": "8D3170", - "listtype": "C", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "send fail/sec by channel path", - "format": "list", - "helpid": "5135", - "helpurl": "/gpm/include/metrics.html", + "listtype": "C" + }, { "id": "8D31D0", - "listtype": "C", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "total bytes read/sec by channel path", - "format": "list", - "helpid": "5132", - "helpurl": "/gpm/include/metrics.html", + "listtype": "C" + }, { "id": "8D23E0", - "listtype": "C", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "total bytes written/sec by channel path", - "format": "list", - "helpid": "5134", - "helpurl": "/gpm/include/metrics.html", + "listtype": "C" + }, { "id": "8D2400", - "listtype": "C", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zHPF active operations by channel path", - "format": "list", - "helpid": "5425", - "helpurl": "/gpm/include/metrics.html", + "listtype": "C" + }, { "id": "8D4490", - "listtype": "C", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zHPF deferred operation rate by channel path", - "format": "list", - "helpid": "5424", - "helpurl": "/gpm/include/metrics.html", + "listtype": "C" + }, { "id": "8D44B0", - "listtype": "C", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zHPF operation rate by channel path", - "format": "list", - "helpid": "5423", - "helpurl": "/gpm/include/metrics.html", + "listtype": "C" + }, { "id": "8D44D0", - "listtype": "C", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% director port busy by channel path and CU", - "format": "list", - "helpid": "2037", - "helpurl": "/gpm/include/metrics.html", + "listtype": "C" + }, { "id": "8D0340", - "listtype": "U", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% CU busy by channel path and CU", - "format": "list", - "helpid": "2036", - "helpurl": "/gpm/include/metrics.html", + "listtype": "U" + }, { "id": "8D05D0", - "listtype": "U", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } + "listtype": "U" }], "resource": { "attributes": "NO", "expandable": "YES", - "helpurl": "/gpm/include/help/restypes/ALL_CHANNELS.htm", "icon": "rmfallch.gif", "reslabel": "RS26,*,ALL_CHANNELS", "restype": "ALL_CHANNELS" } }, { "metric": [{ - "description": "# delayed i/o requests by LCU", - "format": "list", - "helpid": "2039", - "helpurl": "/gpm/include/metrics.html", "id": "8D0690", - "listtype": "L", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average channel subsystem delay time (in mSec) by LCU", - "format": "list", - "helpid": "5116", - "helpurl": "/gpm/include/metrics.html", + "listtype": "L" + }, { "id": "8D2800", - "listtype": "L", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "delayed i/o request rate by LCU", - "format": "list", - "helpid": "2040", - "helpurl": "/gpm/include/metrics.html", + "listtype": "L" + }, { "id": "8D0EC0", - "listtype": "L", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% director port busy by channel path and CU", - "format": "list", - "helpid": "2037", - "helpurl": "/gpm/include/metrics.html", + "listtype": "L" + }, { "id": "8D0340", - "listtype": "U", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% CU busy by channel path and CU", - "format": "list", - "helpid": "2036", - "helpurl": "/gpm/include/metrics.html", + "listtype": "U" + }, { "id": "8D05D0", - "listtype": "U", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average command response time (in mSec) by channel path and CU", - "format": "list", - "helpid": "5119", - "helpurl": "/gpm/include/metrics.html", + "listtype": "U" + }, { "id": "8D2810", - "listtype": "U", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average CU busy time (in mSec) by channel path and CU", - "format": "list", - "helpid": "5118", - "helpurl": "/gpm/include/metrics.html", + "listtype": "U" + }, { "id": "8D27E0", - "listtype": "U", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "CHPID taken rate by channel path and CU", - "format": "list", - "helpid": "2038", - "helpurl": "/gpm/include/metrics.html", + "listtype": "U" + }, { "id": "8D05C0", - "listtype": "U", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } + "listtype": "U" }], "resource": { "attributes": "NO", "expandable": "YES", - "helpurl": "/gpm/include/help/restypes/ALL_LCUS.htm", "icon": "rmfalllc.gif", "reslabel": "RS26,*,ALL_LCUS", "restype": "ALL_LCUS" } }, { "metric": [{ - "description": "% cache hits by SSID", - "format": "list", - "helpid": "5091", - "helpurl": "/gpm/include/metrics.html", "id": "8D2210", - "listtype": "I", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% cache misses by SSID", - "format": "list", - "helpid": "5092", - "helpurl": "/gpm/include/metrics.html", + "listtype": "I" + }, { "id": "8D2260", - "listtype": "I", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% cache read misses by SSID", - "format": "list", - "helpid": "5092", - "helpurl": "/gpm/include/metrics.html", + "listtype": "I" + }, { "id": "8D22A0", - "listtype": "I", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% cache write misses by SSID", - "format": "list", - "helpid": "5092", - "helpurl": "/gpm/include/metrics.html", + "listtype": "I" + }, { "id": "8D22C0", - "listtype": "I", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% of read operations by SSID", - "format": "list", - "helpid": "5093", - "helpurl": "/gpm/include/metrics.html", + "listtype": "I" + }, { "id": "8D22E0", - "listtype": "I", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "i/o rate by SSID", - "format": "list", - "helpid": "5090", - "helpurl": "/gpm/include/metrics.html", + "listtype": "I" + }, { "id": "8D2310", - "listtype": "I", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } + "listtype": "I" }], "resource": { "attributes": "NO", "expandable": "YES", - "helpurl": "/gpm/include/help/restypes/ALL_SSIDS.htm", "icon": "rmfallss.gif", "reslabel": "RS26,*,ALL_SSIDS", "restype": "ALL_SSIDS" } }, { "metric": [{ - "description": "% freespace", - "format": "single", - "helpid": "5146", - "helpurl": "/gpm/include/metrics.html", "id": "8D2A50", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "capacity", - "format": "single", - "helpid": "5144", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3000", - "listtype": " ", - "unit": "megabytes", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "freespace", - "format": "single", - "helpid": "5145", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D30A0", - "listtype": " ", - "unit": "megabytes", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% freespace by storage group", - "format": "list", - "helpid": "5146", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D2A60", - "listtype": "Q", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "capacity by storage group", - "format": "list", - "helpid": "5144", - "helpurl": "/gpm/include/metrics.html", + "listtype": "Q" + }, { "id": "8D3010", - "listtype": "Q", - "unit": "megabytes", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "freespace by storage group", - "format": "list", - "helpid": "5145", - "helpurl": "/gpm/include/metrics.html", + "listtype": "Q" + }, { "id": "8D30B0", - "listtype": "Q", - "unit": "megabytes", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% active time by volume", - "format": "list", - "helpid": "2026", - "helpurl": "/gpm/include/metrics.html", + "listtype": "Q" + }, { "id": "8D0020", - "listtype": "V", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% cache hits (all systems) by volume", - "format": "list", - "helpid": "5091", - "helpurl": "/gpm/include/metrics.html", + "listtype": "V" + }, { "id": "8D2200", - "listtype": "V", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% cache misses (all systems) by volume", - "format": "list", - "helpid": "5092", - "helpurl": "/gpm/include/metrics.html", + "listtype": "V" + }, { "id": "8D2250", - "listtype": "V", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% connect time by volume", - "format": "list", - "helpid": "2027", - "helpurl": "/gpm/include/metrics.html", + "listtype": "V" + }, { "id": "8D00D0", - "listtype": "V", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by volume", - "format": "list", - "helpid": "2041", - "helpurl": "/gpm/include/metrics.html", + "listtype": "V" + }, { "id": "8D0230", - "listtype": "V", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "% delay device busy by volume", - "format": "list", - "helpid": "2031", - "helpurl": "/gpm/include/metrics.html", + "listtype": "V" + }, { "id": "8D0250", - "listtype": "V", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay due to device command response time by volume", - "format": "list", - "helpid": "5117", - "helpurl": "/gpm/include/metrics.html", + "listtype": "V" + }, { "id": "8D2780", - "listtype": "V", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% disconnect time by volume", - "format": "list", - "helpid": "2028", - "helpurl": "/gpm/include/metrics.html", + "listtype": "V" + }, { "id": "8D0360", - "listtype": "V", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% freespace by volume", - "format": "list", - "helpid": "5142", - "helpurl": "/gpm/include/metrics.html", + "listtype": "V" + }, { "id": "8D2A70", - "listtype": "V", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% pending time by volume", - "format": "list", - "helpid": "2029", - "helpurl": "/gpm/include/metrics.html", + "listtype": "V" + }, { "id": "8D0440", - "listtype": "V", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "capacity by volume", - "format": "list", - "helpid": "5140", - "helpurl": "/gpm/include/metrics.html", + "listtype": "V" + }, { "id": "8D3020", - "listtype": "V", - "unit": "megabytes", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "freespace by volume", - "format": "list", - "helpid": "5141", - "helpurl": "/gpm/include/metrics.html", + "listtype": "V" + }, { "id": "8D30C0", - "listtype": "V", - "unit": "megabytes", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "i/o activity rate by volume", - "format": "list", - "helpid": "2021", - "helpurl": "/gpm/include/metrics.html", + "listtype": "V" + }, { "id": "8D0EA0", - "listtype": "V", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "i/o intensity by volume", - "format": "list", - "helpid": "2024", - "helpurl": "/gpm/include/metrics.html", + "listtype": "V" + }, { "id": "8D12A0", - "listtype": "V", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "non-cache dasd i/o rate (all systems) by volume", - "format": "list", - "helpid": "5094", - "helpurl": "/gpm/include/metrics.html", + "listtype": "V" + }, { "id": "8D2340", - "listtype": "V", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "response time by volume", - "format": "list", - "helpid": "2023", - "helpurl": "/gpm/include/metrics.html", + "listtype": "V" + }, { "id": "8D1120", - "listtype": "V", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "IOS queue time by volume", - "format": "list", - "helpid": "2022", - "helpurl": "/gpm/include/metrics.html", + "listtype": "V" + }, { "id": "8D12C0", - "listtype": "V", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } + "listtype": "V" }], "resource": { "attributes": "NO", "expandable": "YES", - "helpurl": "/gpm/include/help/restypes/ALL_VOLUMES.htm", "icon": "rmfallvo.gif", "reslabel": "RS26,*,ALL_VOLUMES", "restype": "ALL_VOLUMES" } }, { "metric": [{ - "description": "active time (ms) by WLM report class period", - "format": "list", - "helpid": "5008", - "helpurl": "/gpm/include/metrics.html", "id": "8D5E10", - "listtype": "K", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "execution velocity by WLM report class period", - "format": "list", - "helpid": "4000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D3080", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "performance index by WLM report class period", - "format": "list", - "helpid": "5002", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D3110", - "listtype": "K", - "unit": "index", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "queue time (ms) by WLM report class period", - "format": "list", - "helpid": "5006", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D5E70", - "listtype": "K", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "transaction ended rate by WLM report class period", - "format": "list", - "helpid": "5007", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D3230", - "listtype": "K", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "wait time (ms) by WLM report class period", - "format": "list", - "helpid": "6000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D6EE0", - "listtype": "K", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "active time (ms) by WLM report class", - "format": "list", - "helpid": "5008", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D5E00", - "listtype": "R", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "execution velocity by WLM report class", - "format": "list", - "helpid": "4000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D0F20", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "queue time (ms) by WLM report class", - "format": "list", - "helpid": "5006", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D5E60", - "listtype": "R", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "transaction ended rate by WLM report class", - "format": "list", - "helpid": "5007", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D1220", - "listtype": "R", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "wait time (ms) by WLM report class", - "format": "list", - "helpid": "6000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D6ED0", - "listtype": "R", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } + "listtype": "R" }], "resource": { "attributes": "NO", "expandable": "YES", - "helpurl": "/gpm/include/help/restypes/ALL_WLM_REPORT_CLASSES.htm", "icon": "rmfwlm.gif", "reslabel": "RS26,*,ALL_WLM_REPORT_CLASSES", "restype": "ALL_WLM_REPORT_CLASSES" } }, { "metric": [{ - "description": "capacity actual (# CPs) by WLM resource group", - "format": "list", - "helpid": "6001", - "helpurl": "/gpm/include/metrics.html", "id": "8D6E30", - "listtype": "7", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "capacity actual (MSU) by WLM resource group", - "format": "list", - "helpid": "6002", - "helpurl": "/gpm/include/metrics.html", + "listtype": "7" + }, { "id": "8D6E50", - "listtype": "7", - "unit": "rate per hour", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "capacity actual (SU/sec) by WLM resource group", - "format": "list", - "helpid": "6003", - "helpurl": "/gpm/include/metrics.html", + "listtype": "7" + }, { "id": "8D6E70", - "listtype": "7", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } + "listtype": "7" }], "resource": { "attributes": "NO", "expandable": "YES", - "helpurl": "/gpm/include/help/restypes/ALL_WLM_RESOURCE_GROUPS.htm", "icon": "rmfwlm.gif", "reslabel": "RS26,*,ALL_WLM_RESOURCE_GROUPS", "restype": "ALL_WLM_RESOURCE_GROUPS" } }, { "metric": [{ - "description": "active time (ms) by WLM service class period", - "format": "list", - "helpid": "5008", - "helpurl": "/gpm/include/metrics.html", "id": "8D5E30", - "listtype": "P", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "execution velocity by WLM service class period", - "format": "list", - "helpid": "4000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D0F60", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "percentile achieving response time goal by WLM service class period", - "format": "list", - "helpid": "5004", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D0FF0", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "performance index by WLM service class period", - "format": "list", - "helpid": "5002", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D1020", - "listtype": "P", - "unit": "index", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "queue time (ms) by WLM service class period", - "format": "list", - "helpid": "5006", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D5E90", - "listtype": "P", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "response time (ms) by WLM service class period", - "format": "list", - "helpid": "5005", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D5F40", - "listtype": "P", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "transaction ended rate by WLM service class period", - "format": "list", - "helpid": "5007", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D1240", - "listtype": "P", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "wait time (ms) by WLM service class period", - "format": "list", - "helpid": "6000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D6F00", - "listtype": "P", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "active time (ms) by WLM service class", - "format": "list", - "helpid": "5008", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D5E20", - "listtype": "S", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "execution velocity by WLM service class", - "format": "list", - "helpid": "4000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D0F50", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "percentile achieving response time goal by WLM service class", - "format": "list", - "helpid": "5004", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D6E80", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "performance index by WLM service class", - "format": "list", - "helpid": "5013", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D6EB0", - "listtype": "S", - "unit": "index", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "queue time (ms) by WLM service class", - "format": "list", - "helpid": "5006", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D5E80", - "listtype": "S", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "response time (ms) by WLM service class", - "format": "list", - "helpid": "5005", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D5F20", - "listtype": "S", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "transaction ended rate by WLM service class", - "format": "list", - "helpid": "5007", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D1230", - "listtype": "S", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "wait time (ms) by WLM service class", - "format": "list", - "helpid": "6000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D6EF0", - "listtype": "S", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "active time (ms) by WLM workload", - "format": "list", - "helpid": "5008", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D5E40", - "listtype": "W", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "execution velocity by WLM workload", - "format": "list", - "helpid": "4000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D0F80", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "queue time (ms) by WLM workload", - "format": "list", - "helpid": "5006", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D5EA0", - "listtype": "W", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "transaction ended rate by WLM workload", - "format": "list", - "helpid": "5007", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D1250", - "listtype": "W", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "wait time (ms) by WLM workload", - "format": "list", - "helpid": "6000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D6F10", - "listtype": "W", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } + "listtype": "W" }], "resource": { "attributes": "NO", "expandable": "YES", - "helpurl": "/gpm/include/help/restypes/ALL_WLM_WORKLOADS.htm", "icon": "rmfwlm.gif", "reslabel": "RS26,*,ALL_WLM_WORKLOADS", "restype": "ALL_WLM_WORKLOADS" } }, { "metric": [{ - "description": "# slots", - "format": "single", - "helpid": "3018", - "helpurl": "/gpm/include/metrics.html", "id": "8D0D30", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "# slots available", - "format": "single", - "helpid": "3043", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D2F10", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# slots by job", - "format": "list", - "helpid": "3018", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0D40", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } + "listtype": "J" }], "resource": { "attributes": "NO", "expandable": "NO", - "helpurl": "/gpm/include/help/restypes/AUXILIARY_STORAGE.htm", "icon": "rmfaux.gif", "reslabel": "RS26,*,AUXILIARY_STORAGE", "restype": "AUXILIARY_STORAGE" } }, { "metric": [{ - "description": "% frames active", - "format": "single", - "helpid": "3026", - "helpurl": "/gpm/include/metrics.html", "id": "8D0370", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% frames available", - "format": "single", - "helpid": "3027", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0380", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% frames idle", - "format": "single", - "helpid": "3028", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0390", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% frames CSA", - "format": "single", - "helpid": "3029", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D03A0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% frames LPA", - "format": "single", - "helpid": "3030", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D03B0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% frames NUC", - "format": "single", - "helpid": "3031", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D03C0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% frames SQA", - "format": "single", - "helpid": "3032", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D03D0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# frames available", - "format": "single", - "helpid": "3042", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D2EE0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# frames online", - "format": "single", - "helpid": "3038", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0CB0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# user region pages allocated above 16 M", - "format": "single", - "helpid": "3052", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D2F20", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# user region pages allocated below 16 M", - "format": "single", - "helpid": "3050", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D2F30", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# LSQA/SWA/EUKYSP pages allocated above 16 M", - "format": "single", - "helpid": "3053", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D2FA0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# LSQA/SWA/UKYSP pages allocated below 16 M", - "format": "single", - "helpid": "3051", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D2FB0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "pagein rate", - "format": "single", - "helpid": "3041", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D30F0", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "unreferenced interval count", - "format": "single", - "helpid": "3025", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D1260", - "listtype": " ", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "working set", - "format": "single", - "helpid": "3000", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D1270", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "working set by job", - "format": "list", - "helpid": "3000", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D1280", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } + "listtype": "J" }], "resource": { "attributes": "YES", "expandable": "YES", - "helpurl": "/gpm/include/help/restypes/CENTRAL_STORAGE.htm", "icon": "rmfcentr.gif", "reslabel": "RS26,*,CENTRAL_STORAGE", "restype": "CENTRAL_STORAGE" } }, { "metric": [{ - "description": "% CPU utilization", - "format": "single", - "helpid": "5066", - "helpurl": "/gpm/include/metrics.html", "id": "8D39A0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "async request rate", - "format": "single", - "helpid": "5056", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D20A0", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "async service time", - "format": "single", - "helpid": "5058", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D20E0", - "listtype": " ", - "unit": "microseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "sync request rate", - "format": "single", - "helpid": "5055", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D2120", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "sync service time", - "format": "single", - "helpid": "5057", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D2160", - "listtype": " ", - "unit": "microseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "async request rate by MVS image", - "format": "list", - "helpid": "5056", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D20C0", - "listtype": "M", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "async service time by MVS image", - "format": "list", - "helpid": "5058", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D2100", - "listtype": "M", - "unit": "microseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "sync request rate by MVS image", - "format": "list", - "helpid": "5055", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D2140", - "listtype": "M", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "sync service time by MVS image", - "format": "list", - "helpid": "5057", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D2180", - "listtype": "M", - "unit": "microseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } + "listtype": "M" }], "resource": { "attributes": "YES", "expandable": "NO", - "helpurl": "/gpm/include/help/restypes/CF_STRUCTURE.htm", "icon": "rmfcfstr.gif", "reslabel": "RS26,*,CF_STRUCTURE", "restype": "CF_STRUCTURE" } }, { "metric": [{ - "description": "% bus utilization", - "format": "single", - "helpid": "5130", - "helpurl": "/gpm/include/metrics.html", "id": "8D2360", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% partition utilization", - "format": "single", - "helpid": "2000", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0060", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% total utilization", - "format": "single", - "helpid": "2001", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0080", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "ficon active operations", - "format": "single", - "helpid": "5422", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4400", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "ficon deferred operation rate", - "format": "single", - "helpid": "5421", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4420", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "ficon operation rate", - "format": "single", - "helpid": "5420", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4440", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "partition bytes read/sec", - "format": "single", - "helpid": "5131", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D2390", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "partition bytes written/sec", - "format": "single", - "helpid": "5133", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D23B0", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "receive fail/sec", - "format": "single", - "helpid": "5136", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3160", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "send fail/sec", - "format": "single", - "helpid": "5135", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D31C0", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "total bytes read/sec", - "format": "single", - "helpid": "5132", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D23D0", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "total bytes written/sec", - "format": "single", - "helpid": "5134", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D23F0", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zHPF active operations", - "format": "single", - "helpid": "5425", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4480", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zHPF deferred operation rate", - "format": "single", - "helpid": "5424", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D44A0", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zHPF operation rate", - "format": "single", - "helpid": "5423", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D44C0", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } + "listtype": " " }], "resource": { "attributes": "YES", "expandable": "NO", - "helpurl": "/gpm/include/help/restypes/CHANNEL_PATH.htm", "icon": "rmfchann.gif", "reslabel": "RS26,*,CHANNEL_PATH", "restype": "CHANNEL_PATH" } }, { "metric": [{ - "description": "% augmented space in use", - "format": "single", - "helpid": "5075", - "helpurl": "/gpm/include/metrics.html", "id": "8D4670", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% processor utilization", - "format": "single", - "helpid": "5050", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D2060", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% storage class memory in-use", - "format": "single", - "helpid": "5072", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4690", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# effective logical processors", - "format": "single", - "helpid": "5051", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D1FF0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# frames available", - "format": "single", - "helpid": "5054", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D2000", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# frames installed", - "format": "single", - "helpid": "5053", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D2020", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# of bytes available for augmented space", - "format": "single", - "helpid": "5074", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D46B0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# of bytes available for storage class memory", - "format": "single", - "helpid": "5071", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D46D0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# of bytes configured for augmented space", - "format": "single", - "helpid": "5073", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D46F0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# of bytes configured for storage class memory", - "format": "single", - "helpid": "5070", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4710", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# of maximum bytes for storage class memory", - "format": "single", - "helpid": "5076", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4730", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "total request rate", - "format": "single", - "helpid": "5052", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D21A0", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% path delay by MVS image", - "format": "list", - "helpid": "5060", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D2050", - "listtype": "M", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% subchannel busy by MVS image", - "format": "list", - "helpid": "5065", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D38C0", - "listtype": "M", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% subchannel delay by MVS image", - "format": "list", - "helpid": "5059", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D2080", - "listtype": "M", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "async request rate by MVS image", - "format": "list", - "helpid": "5062", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D20D0", - "listtype": "M", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "async service time by MVS image", - "format": "list", - "helpid": "5064", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D2110", - "listtype": "M", - "unit": "microseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "sync request rate by MVS image", - "format": "list", - "helpid": "5061", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D2150", - "listtype": "M", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "sync service time by MVS image", - "format": "list", - "helpid": "5063", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D2190", - "listtype": "M", - "unit": "microseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% CPU utilization by CF structure", - "format": "list", - "helpid": "5066", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D39D0", - "listtype": "T", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "async request rate by CF structure", - "format": "list", - "helpid": "5056", - "helpurl": "/gpm/include/metrics.html", + "listtype": "T" + }, { "id": "8D20B0", - "listtype": "T", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "async service time by CF structure", - "format": "list", - "helpid": "5058", - "helpurl": "/gpm/include/metrics.html", + "listtype": "T" + }, { "id": "8D20F0", - "listtype": "T", - "unit": "microseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "sync request rate by CF structure", - "format": "list", - "helpid": "5055", - "helpurl": "/gpm/include/metrics.html", + "listtype": "T" + }, { "id": "8D2130", - "listtype": "T", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "sync service time by CF structure", - "format": "list", - "helpid": "5057", - "helpurl": "/gpm/include/metrics.html", + "listtype": "T" + }, { "id": "8D2170", - "listtype": "T", - "unit": "microseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } + "listtype": "T" }], "resource": { "attributes": "YES", "expandable": "YES", - "helpurl": "/gpm/include/help/restypes/COUPLING_FACILITY.htm", "icon": "rmfcf.gif", "reslabel": "RS26,*,COUPLING_FACILITY", "restype": "COUPLING_FACILITY" } }, { "metric": [{ - "description": "% effective physical utilization (AAP)", - "format": "single", - "helpid": "5110", - "helpurl": "/gpm/include/metrics.html", "id": "8D3290", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% effective physical utilization (CP)", - "format": "single", - "helpid": "5110", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D24D0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% effective physical utilization (ICF)", - "format": "single", - "helpid": "5110", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3270", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% effective physical utilization (IFL)", - "format": "single", - "helpid": "5110", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D32B0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% effective physical utilization (IIP)", - "format": "single", - "helpid": "5110", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D1C80", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% total physical utilization (shared AAP)", - "format": "single", - "helpid": "5164", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3910", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% total physical utilization (shared CP)", - "format": "single", - "helpid": "5164", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3920", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% total physical utilization (shared ICF)", - "format": "single", - "helpid": "5164", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3930", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% total physical utilization (shared IFL)", - "format": "single", - "helpid": "5164", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3940", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% total physical utilization (shared IIP)", - "format": "single", - "helpid": "5164", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3950", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% total physical utilization (AAP)", - "format": "single", - "helpid": "5112", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3300", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% total physical utilization (CP)", - "format": "single", - "helpid": "5112", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D2540", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% total physical utilization (ICF)", - "format": "single", - "helpid": "5112", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D32D0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% total physical utilization (IFL)", - "format": "single", - "helpid": "5112", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3330", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% total physical utilization (IIP)", - "format": "single", - "helpid": "5112", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D1C70", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% LPAR management time (AAP)", - "format": "single", - "helpid": "5129", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D39F0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% LPAR management time (AAP) for PHYSICAL", - "format": "single", - "helpid": "5128", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D1F90", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% LPAR management time (CP)", - "format": "single", - "helpid": "5129", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3A10", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% LPAR management time (CP) for PHYSICAL", - "format": "single", - "helpid": "5128", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3360", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% LPAR management time (ICF)", - "format": "single", - "helpid": "5129", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3A40", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% LPAR management time (ICF) for PHYSICAL", - "format": "single", - "helpid": "5128", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3380", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% LPAR management time (IFL)", - "format": "single", - "helpid": "5129", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3A90", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% LPAR management time (IFL) for PHYSICAL", - "format": "single", - "helpid": "5128", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D33E0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% LPAR management time (IIP)", - "format": "single", - "helpid": "5129", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3AC0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% LPAR management time (IIP) for PHYSICAL", - "format": "single", - "helpid": "5128", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3420", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# logical processors shared (CP)", - "format": "single", - "helpid": "5161", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3BA0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# logical processors shared (ICF)", - "format": "single", - "helpid": "5161", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3BD0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# logical processors shared (IFL)", - "format": "single", - "helpid": "5161", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3C20", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# logical processors/cores shared (AAP)", - "format": "single", - "helpid": "5161", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3B70", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# logical processors/cores shared (IIP)", - "format": "single", - "helpid": "5161", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3C50", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# processors dedicated (CP)", - "format": "single", - "helpid": "4046", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3B20", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# processors online (CP)", - "format": "single", - "helpid": "4044", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3CA0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# processors online (ICF)", - "format": "single", - "helpid": "4044", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3CD0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# processors online (IFL)", - "format": "single", - "helpid": "4044", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3D20", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# processors shared (AAP)", - "format": "single", - "helpid": "4047", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3D70", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# processors shared (CP)", - "format": "single", - "helpid": "4047", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3D80", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# processors shared (IIP)", - "format": "single", - "helpid": "4047", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3D90", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# processors/cores dedicated (AAP)", - "format": "single", - "helpid": "4046", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3B00", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# processors/cores dedicated (IIP)", - "format": "single", - "helpid": "4046", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3B40", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# processors/cores online (AAP)", - "format": "single", - "helpid": "4044", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3C80", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# processors/cores online (IIP)", - "format": "single", - "helpid": "4044", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3D50", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "capacity (MSU/h)", - "format": "single", - "helpid": "5100", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D25C0", - "listtype": " ", - "unit": "rate per hour", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "LPAR weight (AAP)", - "format": "single", - "helpid": "5163", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3F30", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "LPAR weight (CP)", - "format": "single", - "helpid": "5163", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3F60", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "LPAR weight (ICF)", - "format": "single", - "helpid": "5163", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3F90", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "LPAR weight (IFL)", - "format": "single", - "helpid": "5163", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3FE0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "LPAR weight (IIP)", - "format": "single", - "helpid": "5163", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4010", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% effective physical utilization (AAP) by partition", - "format": "list", - "helpid": "5111", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D32A0", - "listtype": "A", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% effective physical utilization (CP) by partition", - "format": "list", - "helpid": "5111", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D24E0", - "listtype": "A", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% effective physical utilization (ICF) by partition", - "format": "list", - "helpid": "5111", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D3280", - "listtype": "A", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% effective physical utilization (IFL) by partition", - "format": "list", - "helpid": "5111", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D32C0", - "listtype": "A", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% effective physical utilization (IIP) by partition", - "format": "list", - "helpid": "5111", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D2600", - "listtype": "A", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% logical processor share (AAP) by partition", - "format": "list", - "helpid": "5165", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D4040", - "listtype": "A", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% logical processor share (CP) by partition", - "format": "list", - "helpid": "5165", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D4060", - "listtype": "A", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% logical processor share (IIP) by partition", - "format": "list", - "helpid": "5165", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D4080", - "listtype": "A", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% total physical utilization (AAP) by partition", - "format": "list", - "helpid": "5113", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D3310", - "listtype": "A", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% total physical utilization (CP) by partition", - "format": "list", - "helpid": "5113", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D2560", - "listtype": "A", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% total physical utilization (ICF) by partition", - "format": "list", - "helpid": "5113", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D32E0", - "listtype": "A", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% total physical utilization (IFL) by partition", - "format": "list", - "helpid": "5113", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D3340", - "listtype": "A", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% total physical utilization (IIP) by partition", - "format": "list", - "helpid": "5113", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D3400", - "listtype": "A", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% LPAR management time (AAP) by partition", - "format": "list", - "helpid": "5114", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D3A00", - "listtype": "A", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% LPAR management time (CP) by partition", - "format": "list", - "helpid": "5114", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D3A20", - "listtype": "A", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% LPAR management time (ICF) by partition", - "format": "list", - "helpid": "5114", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D3A50", - "listtype": "A", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% LPAR management time (IFL) by partition", - "format": "list", - "helpid": "5114", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D3AA0", - "listtype": "A", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% LPAR management time (IIP) by partition", - "format": "list", - "helpid": "5114", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D3AD0", - "listtype": "A", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# logical processors shared (CP) by partition", - "format": "list", - "helpid": "5160", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D3BB0", - "listtype": "A", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# logical processors shared (ICF) by partition", - "format": "list", - "helpid": "5160", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D3BE0", - "listtype": "A", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# logical processors shared (IFL) by partition", - "format": "list", - "helpid": "5160", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D3C30", - "listtype": "A", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# logical processors/cores shared (AAP) by partition", - "format": "list", - "helpid": "5160", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D3B80", - "listtype": "A", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# logical processors/cores shared (IIP) by partition", - "format": "list", - "helpid": "5160", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D3C60", - "listtype": "A", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# processors dedicated (CP) by partition", - "format": "list", - "helpid": "4045", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D3B30", - "listtype": "A", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# processors online (CP) by partition", - "format": "list", - "helpid": "4043", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D3CB0", - "listtype": "A", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# processors online (ICF) by partition", - "format": "list", - "helpid": "4043", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D3CE0", - "listtype": "A", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# processors online (IFL) by partition", - "format": "list", - "helpid": "4043", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D3D30", - "listtype": "A", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# processors with high share (CP) by partition", - "format": "list", - "helpid": "5166", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D40C0", - "listtype": "A", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# processors with low share (CP) by partition", - "format": "list", - "helpid": "5168", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D4120", - "listtype": "A", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# processors with medium share (CP) by partition", - "format": "list", - "helpid": "5167", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D4180", - "listtype": "A", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# processors/cores dedicated (AAP) by partition", - "format": "list", - "helpid": "4045", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D3B10", - "listtype": "A", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# processors/cores dedicated (IIP) by partition", - "format": "list", - "helpid": "4045", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D3B50", - "listtype": "A", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# processors/cores online (AAP) by partition", - "format": "list", - "helpid": "4043", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D3C90", - "listtype": "A", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# processors/cores online (IIP) by partition", - "format": "list", - "helpid": "4043", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D3D60", - "listtype": "A", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# processors/cores with high share (AAP) by partition", - "format": "list", - "helpid": "5166", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D40A0", - "listtype": "A", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# processors/cores with high share (IIP) by partition", - "format": "list", - "helpid": "5166", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D40E0", - "listtype": "A", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# processors/cores with low share (AAP) by partition", - "format": "list", - "helpid": "5168", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D4100", - "listtype": "A", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# processors/cores with low share (IIP) by partition", - "format": "list", - "helpid": "5168", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D4140", - "listtype": "A", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# processors/cores with medium share (AAP) by partition", - "format": "list", - "helpid": "5167", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D4160", - "listtype": "A", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# processors/cores with medium share (IIP) by partition", - "format": "list", - "helpid": "5167", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D0040", - "listtype": "A", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "actual MSU (CP) by partition", - "format": "list", - "helpid": "5106", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D25F0", - "listtype": "A", - "unit": "rate per hour", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "LPAR weight (AAP) by partition", - "format": "list", - "helpid": "5162", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D3F40", - "listtype": "A", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "LPAR weight (CP) by partition", - "format": "list", - "helpid": "5162", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D3F70", - "listtype": "A", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "LPAR weight (ICF) by partition", - "format": "list", - "helpid": "5162", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D3FA0", - "listtype": "A", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "LPAR weight (IFL) by partition", - "format": "list", - "helpid": "5162", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D3FF0", - "listtype": "A", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "LPAR weight (IIP) by partition", - "format": "list", - "helpid": "5162", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D4020", - "listtype": "A", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization asym-key generation operations (CPC) by crypto card", - "format": "list", - "helpid": "5642", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D6490", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization complete sym-key operations (CPC) by crypto card", - "format": "list", - "helpid": "5642", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D64D0", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization crypto operations (CPC) by crypto card", - "format": "list", - "helpid": "5632", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6510", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization fast asym-key operations (CPC) by crypto card", - "format": "list", - "helpid": "5642", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6550", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization partial sym-key operations (CPC) by crypto card", - "format": "list", - "helpid": "5642", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6590", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization slow asym-key operations (CPC) by crypto card", - "format": "list", - "helpid": "5642", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D65D0", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA key-generation operations (CPC) by crypto card", - "format": "list", - "helpid": "5635", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6610", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA CRT 1024 operations (CPC) by crypto card", - "format": "list", - "helpid": "5639", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6650", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA CRT 2048 operations (CPC) by crypto card", - "format": "list", - "helpid": "5639", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6690", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA CRT 4096 operations (CPC) by crypto card", - "format": "list", - "helpid": "5639", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D66D0", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA ME 1024 operations (CPC) by crypto card", - "format": "list", - "helpid": "5639", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6710", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA ME 2048 operations (CPC) by crypto card", - "format": "list", - "helpid": "5639", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6750", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA ME 4096 operations (CPC) by crypto card", - "format": "list", - "helpid": "5639", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6790", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "asym-key generation operation rate (CPC) by crypto card", - "format": "list", - "helpid": "5640", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D67D0", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average asym-key generation exec time (CPC) by crypto card", - "format": "list", - "helpid": "5641", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D67F0", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average complete sym-key execution time (CPC) by crypto card", - "format": "list", - "helpid": "5641", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6850", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average crypto execution time (CPC) by crypto card", - "format": "list", - "helpid": "5631", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6890", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average fast asym-key execution time (CPC) by crypto card", - "format": "list", - "helpid": "5641", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D68D0", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average partial sym-key execution time (CPC) by crypto card", - "format": "list", - "helpid": "5641", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6910", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average slow asym-key execution time (CPC) by crypto card", - "format": "list", - "helpid": "5641", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6950", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA key-generation execution time (CPC) by crypto card", - "format": "list", - "helpid": "5634", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6990", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA CRT 1024 execution time (CPC) by crypto card", - "format": "list", - "helpid": "5638", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D69D0", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA CRT 2048 execution time (CPC) by crypto card", - "format": "list", - "helpid": "5638", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6A10", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA CRT 4096 execution time (CPC) by crypto card", - "format": "list", - "helpid": "5638", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6A50", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA ME 1024 execution time (CPC) by crypto card", - "format": "list", - "helpid": "5638", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6A90", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA ME 2048 execution time (CPC) by crypto card", - "format": "list", - "helpid": "5638", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6AD0", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA ME 4096 execution time (CPC) by crypto card", - "format": "list", - "helpid": "5638", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6B10", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "complete sym-key operation rate (CPC) by crypto card", - "format": "list", - "helpid": "5640", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6B50", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "crypto operation rate (CPC) by crypto card", - "format": "list", - "helpid": "5630", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6B90", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "fast asym-key operation rate (CPC) by crypto card", - "format": "list", - "helpid": "5640", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6BD0", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "partial sym-key operation rate (CPC) by crypto card", - "format": "list", - "helpid": "5640", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6C10", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "slow asym-key operation rate (CPC) by crypto card", - "format": "list", - "helpid": "5640", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6C50", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA key-generation operation rate (CPC) by crypto card", - "format": "list", - "helpid": "5633", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6C90", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA CRT 1024 operation rate (CPC) by crypto card", - "format": "list", - "helpid": "5637", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6CD0", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA CRT 2048 operation rate (CPC) by crypto card", - "format": "list", - "helpid": "5637", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6D10", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA CRT 4096 operation rate (CPC) by crypto card", - "format": "list", - "helpid": "5637", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6D50", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA ME 1024 operation rate (CPC) by crypto card", - "format": "list", - "helpid": "5637", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6D90", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA ME 2048 operation rate (CPC) by crypto card", - "format": "list", - "helpid": "5637", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6DD0", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA ME 4096 operation rate (CPC) by crypto card", - "format": "list", - "helpid": "5637", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6E10", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } + "listtype": "6" }], "resource": { "attributes": "YES", "expandable": "YES", - "helpurl": "/gpm/include/help/restypes/CPC.htm", "icon": "rmfcpc.gif", "reslabel": "RS26,*,CPC", "restype": "CPC" } }, { "metric": [{ - "description": "% utilization asym-key generation operations (domain) by crypto card", - "format": "list", - "helpid": "5642", - "helpurl": "/gpm/include/metrics.html", "id": "8D6470", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization asym-key generation operations (CPC) by crypto card", - "format": "list", - "helpid": "5642", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6490", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization complete sym-key operations (domain) by crypto card", - "format": "list", - "helpid": "5642", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D64B0", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization complete sym-key operations (CPC) by crypto card", - "format": "list", - "helpid": "5642", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D64D0", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization crypto operations (domain) by crypto card", - "format": "list", - "helpid": "5632", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D64F0", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization crypto operations (CPC) by crypto card", - "format": "list", - "helpid": "5632", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6510", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization fast asym-key operations (domain) by crypto card", - "format": "list", - "helpid": "5642", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6530", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization fast asym-key operations (CPC) by crypto card", - "format": "list", - "helpid": "5642", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6550", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization partial sym-key operations (domain) by crypto card", - "format": "list", - "helpid": "5642", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6570", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization partial sym-key operations (CPC) by crypto card", - "format": "list", - "helpid": "5642", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6590", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization slow asym-key operations (domain) by crypto card", - "format": "list", - "helpid": "5642", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D65B0", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization slow asym-key operations (CPC) by crypto card", - "format": "list", - "helpid": "5642", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D65D0", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA key-generation operations (domain) by crypto card", - "format": "list", - "helpid": "5635", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D65F0", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA key-generation operations (CPC) by crypto card", - "format": "list", - "helpid": "5635", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6610", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA CRT 1024 operations (domain) by crypto card", - "format": "list", - "helpid": "5639", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6630", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA CRT 1024 operations (CPC) by crypto card", - "format": "list", - "helpid": "5639", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6650", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA CRT 2048 operations (domain) by crypto card", - "format": "list", - "helpid": "5639", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6670", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA CRT 2048 operations (CPC) by crypto card", - "format": "list", - "helpid": "5639", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6690", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA CRT 4096 operations (domain) by crypto card", - "format": "list", - "helpid": "5639", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D66B0", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA CRT 4096 operations (CPC) by crypto card", - "format": "list", - "helpid": "5639", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D66D0", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA ME 1024 operations (domain) by crypto card", - "format": "list", - "helpid": "5639", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D66F0", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA ME 1024 operations (CPC) by crypto card", - "format": "list", - "helpid": "5639", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6710", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA ME 2048 operations (domain) by crypto card", - "format": "list", - "helpid": "5639", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6730", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA ME 2048 operations (CPC) by crypto card", - "format": "list", - "helpid": "5639", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6750", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA ME 4096 operations (domain) by crypto card", - "format": "list", - "helpid": "5639", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6770", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA ME 4096 operations (CPC) by crypto card", - "format": "list", - "helpid": "5639", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6790", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "asym-key generation operation rate (domain) by crypto card", - "format": "list", - "helpid": "5640", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D67B0", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "asym-key generation operation rate (CPC) by crypto card", - "format": "list", - "helpid": "5640", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D67D0", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average asym-key generation exec time (domain) by crypto card", - "format": "list", - "helpid": "5641", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D67E0", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average asym-key generation exec time (CPC) by crypto card", - "format": "list", - "helpid": "5641", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D67F0", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average complete sym-key execution time (domain) by crypto card", - "format": "list", - "helpid": "5641", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6830", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average complete sym-key execution time (CPC) by crypto card", - "format": "list", - "helpid": "5641", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6850", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average crypto execution time (domain) by crypto card", - "format": "list", - "helpid": "5631", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6870", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average crypto execution time (CPC) by crypto card", - "format": "list", - "helpid": "5631", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6890", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average fast asym-key execution time (domain) by crypto card", - "format": "list", - "helpid": "5641", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D68B0", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average fast asym-key execution time (CPC) by crypto card", - "format": "list", - "helpid": "5641", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D68D0", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average partial sym-key execution time (domain) by crypto card", - "format": "list", - "helpid": "5641", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D68F0", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average partial sym-key execution time (CPC) by crypto card", - "format": "list", - "helpid": "5641", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6910", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average slow asym-key execution time (domain) by crypto card", - "format": "list", - "helpid": "5641", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6930", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average slow asym-key execution time (CPC) by crypto card", - "format": "list", - "helpid": "5641", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6950", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA key-generation execution time (domain) by crypto card", - "format": "list", - "helpid": "5634", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6970", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA key-generation execution time (CPC) by crypto card", - "format": "list", - "helpid": "5634", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6990", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA CRT 1024 execution time (domain) by crypto card", - "format": "list", - "helpid": "5638", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D69B0", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA CRT 1024 execution time (CPC) by crypto card", - "format": "list", - "helpid": "5638", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D69D0", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA CRT 2048 execution time (domain) by crypto card", - "format": "list", - "helpid": "5638", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D69F0", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA CRT 2048 execution time (CPC) by crypto card", - "format": "list", - "helpid": "5638", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6A10", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA CRT 4096 execution time (domain) by crypto card", - "format": "list", - "helpid": "5638", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6A30", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA CRT 4096 execution time (CPC) by crypto card", - "format": "list", - "helpid": "5638", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6A50", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA ME 1024 execution time (domain) by crypto card", - "format": "list", - "helpid": "5638", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6A70", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA ME 1024 execution time (CPC) by crypto card", - "format": "list", - "helpid": "5638", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6A90", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA ME 2048 execution time (domain) by crypto card", - "format": "list", - "helpid": "5638", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6AB0", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA ME 2048 execution time (CPC) by crypto card", - "format": "list", - "helpid": "5638", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6AD0", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA ME 4096 execution time (domain) by crypto card", - "format": "list", - "helpid": "5638", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6AF0", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA ME 4096 execution time (CPC) by crypto card", - "format": "list", - "helpid": "5638", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6B10", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "complete sym-key operation rate (domain) by crypto card", - "format": "list", - "helpid": "5640", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6B30", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "complete sym-key operation rate (CPC) by crypto card", - "format": "list", - "helpid": "5640", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6B50", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "crypto operation rate (domain) by crypto card", - "format": "list", - "helpid": "5630", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6B70", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "crypto operation rate (CPC) by crypto card", - "format": "list", - "helpid": "5630", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6B90", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "fast asym-key operation rate (domain) by crypto card", - "format": "list", - "helpid": "5640", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6BB0", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "fast asym-key operation rate (CPC) by crypto card", - "format": "list", - "helpid": "5640", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6BD0", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "partial sym-key operation rate (domain) by crypto card", - "format": "list", - "helpid": "5640", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6BF0", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "partial sym-key operation rate (CPC) by crypto card", - "format": "list", - "helpid": "5640", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6C10", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "slow asym-key operation rate (domain) by crypto card", - "format": "list", - "helpid": "5640", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6C30", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "slow asym-key operation rate (CPC) by crypto card", - "format": "list", - "helpid": "5640", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6C50", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA key-generation operation rate (domain) by crypto card", - "format": "list", - "helpid": "5633", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6C70", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA key-generation operation rate (CPC) by crypto card", - "format": "list", - "helpid": "5633", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6C90", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA CRT 1024 operation rate (domain) by crypto card", - "format": "list", - "helpid": "5637", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6CB0", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA CRT 1024 operation rate (CPC) by crypto card", - "format": "list", - "helpid": "5637", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6CD0", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA CRT 2048 operation rate (domain) by crypto card", - "format": "list", - "helpid": "5637", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6CF0", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA CRT 2048 operation rate (CPC) by crypto card", - "format": "list", - "helpid": "5637", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6D10", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA CRT 4096 operation rate (domain) by crypto card", - "format": "list", - "helpid": "5637", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6D30", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA CRT 4096 operation rate (CPC) by crypto card", - "format": "list", - "helpid": "5637", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6D50", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA ME 1024 operation rate (domain) by crypto card", - "format": "list", - "helpid": "5637", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6D70", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA ME 1024 operation rate (CPC) by crypto card", - "format": "list", - "helpid": "5637", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6D90", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA ME 2048 operation rate (domain) by crypto card", - "format": "list", - "helpid": "5637", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6DB0", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA ME 2048 operation rate (CPC) by crypto card", - "format": "list", - "helpid": "5637", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6DD0", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA ME 4096 operation rate (domain) by crypto card", - "format": "list", - "helpid": "5637", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6DF0", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA ME 4096 operation rate (CPC) by crypto card", - "format": "list", - "helpid": "5637", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6E10", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } + "listtype": "6" }], "resource": { "attributes": "NO", "expandable": "YES", - "helpurl": "/gpm/include/help/restypes/CRYPTO.htm", "icon": "rmfpcie.gif", "reslabel": "RS26,*,CRYPTO", "restype": "CRYPTO" } }, { "metric": [{ - "description": "% utilization asym-key generation operations (domain)", - "format": "single", - "helpid": "5642", - "helpurl": "/gpm/include/metrics.html", "id": "8D6460", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization asym-key generation operations (CPC)", - "format": "single", - "helpid": "5642", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6480", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization complete sym-key operations (domain)", - "format": "single", - "helpid": "5642", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D64A0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization complete sym-key operations (CPC)", - "format": "single", - "helpid": "5642", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D64C0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization crypto operations (domain)", - "format": "single", - "helpid": "5632", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D64E0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization crypto operations (CPC)", - "format": "single", - "helpid": "5632", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6500", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization fast asym-key operations (domain)", - "format": "single", - "helpid": "5642", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6520", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization fast asym-key operations (CPC)", - "format": "single", - "helpid": "5642", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6540", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization partial sym-key operations (domain)", - "format": "single", - "helpid": "5642", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6560", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization partial sym-key operations (CPC)", - "format": "single", - "helpid": "5642", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6580", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization slow asym-key operations (domain)", - "format": "single", - "helpid": "5642", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D65A0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization slow asym-key operations (CPC)", - "format": "single", - "helpid": "5642", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D65C0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA key-generation operations (domain)", - "format": "single", - "helpid": "5635", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D65E0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA key-generation operations (CPC)", - "format": "single", - "helpid": "5635", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6600", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA CRT 1024 operations (domain)", - "format": "single", - "helpid": "5639", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6620", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA CRT 1024 operations (CPC)", - "format": "single", - "helpid": "5639", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6640", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA CRT 2048 operations (domain)", - "format": "single", - "helpid": "5639", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6660", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA CRT 2048 operations (CPC)", - "format": "single", - "helpid": "5639", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6680", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA CRT 4096 operations (domain)", - "format": "single", - "helpid": "5639", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D66A0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA CRT 4096 operations (CPC)", - "format": "single", - "helpid": "5639", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D66C0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA ME 1024 operations (domain)", - "format": "single", - "helpid": "5639", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D66E0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA ME 1024 operations (CPC)", - "format": "single", - "helpid": "5639", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6700", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA ME 2048 operations (domain)", - "format": "single", - "helpid": "5639", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6720", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA ME 2048 operations (CPC)", - "format": "single", - "helpid": "5639", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6740", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA ME 4096 operations (domain)", - "format": "single", - "helpid": "5639", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6760", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA ME 4096 operations (CPC)", - "format": "single", - "helpid": "5639", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6780", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "asym-key generation operation rate (domain)", - "format": "single", - "helpid": "5640", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D67A0", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "asym-key generation operation rate (CPC)", - "format": "single", - "helpid": "5640", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D67C0", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average asym-key generation execution time (domain)", - "format": "single", - "helpid": "5641", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6800", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average asym-key generation execution time (CPC)", - "format": "single", - "helpid": "5641", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6810", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average complete sym-key execution time (domain)", - "format": "single", - "helpid": "5641", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6820", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average complete sym-key execution time (CPC)", - "format": "single", - "helpid": "5641", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6840", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average crypto execution time (domain)", - "format": "single", - "helpid": "5631", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6860", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average crypto execution time (CPC)", - "format": "single", - "helpid": "5631", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6880", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average fast asym-key execution time (domain)", - "format": "single", - "helpid": "5641", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D68A0", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average fast asym-key execution time (CPC)", - "format": "single", - "helpid": "5641", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D68C0", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average partial sym-key execution time (domain)", - "format": "single", - "helpid": "5641", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D68E0", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average partial sym-key execution time (CPC)", - "format": "single", - "helpid": "5641", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6900", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average slow asym-key execution time (domain)", - "format": "single", - "helpid": "5641", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6920", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average slow asym-key execution time (CPC)", - "format": "single", - "helpid": "5641", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6940", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA key-generation execution time (domain)", - "format": "single", - "helpid": "5634", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6960", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA key-generation execution time (CPC)", - "format": "single", - "helpid": "5634", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6980", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA CRT 1024 execution time (domain)", - "format": "single", - "helpid": "5638", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D69A0", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA CRT 1024 execution time (CPC)", - "format": "single", - "helpid": "5638", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D69C0", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA CRT 2048 execution time (domain)", - "format": "single", - "helpid": "5638", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D69E0", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA CRT 2048 execution time (CPC)", - "format": "single", - "helpid": "5638", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6A00", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA CRT 4096 execution time (domain)", - "format": "single", - "helpid": "5638", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6A20", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA CRT 4096 execution time (CPC)", - "format": "single", - "helpid": "5638", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6A40", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA ME 1024 execution time (domain)", - "format": "single", - "helpid": "5638", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6A60", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA ME 1024 execution time (CPC)", - "format": "single", - "helpid": "5638", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6A80", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA ME 2048 execution time (domain)", - "format": "single", - "helpid": "5638", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6AA0", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA ME 2048 execution time (CPC)", - "format": "single", - "helpid": "5638", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6AC0", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA ME 4096 execution time (domain)", - "format": "single", - "helpid": "5638", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6AE0", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA ME 4096 execution time (CPC)", - "format": "single", - "helpid": "5638", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6B00", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "complete sym-key operation rate (domain)", - "format": "single", - "helpid": "5640", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6B20", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "complete sym-key operation rate (CPC)", - "format": "single", - "helpid": "5640", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6B40", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "crypto operation rate (domain)", - "format": "single", - "helpid": "5630", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6B60", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "crypto operation rate (CPC)", - "format": "single", - "helpid": "5630", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6B80", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "fast asym-key operation rate (domain)", - "format": "single", - "helpid": "5640", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6BA0", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "fast asym-key operation rate (CPC)", - "format": "single", - "helpid": "5640", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6BC0", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "partial sym-key operation rate (domain)", - "format": "single", - "helpid": "5640", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6BE0", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "partial sym-key operation rate (CPC)", - "format": "single", - "helpid": "5640", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6C00", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "slow asym-key operation rate (domain)", - "format": "single", - "helpid": "5640", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6C20", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "slow asym-key operation rate (CPC)", - "format": "single", - "helpid": "5640", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6C40", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA key-generation operation rate (domain)", - "format": "single", - "helpid": "5633", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6C60", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA key-generation operation rate (CPC)", - "format": "single", - "helpid": "5633", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6C80", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA CRT 1024 operation rate (domain)", - "format": "single", - "helpid": "5637", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6CA0", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA CRT 1024 operation rate (CPC)", - "format": "single", - "helpid": "5637", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6CC0", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA CRT 2048 operation rate (domain)", - "format": "single", - "helpid": "5637", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6CE0", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA CRT 2048 operation rate (CPC)", - "format": "single", - "helpid": "5637", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6D00", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA CRT 4096 operation rate (domain)", - "format": "single", - "helpid": "5637", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6D20", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA CRT 4096 operation rate (CPC)", - "format": "single", - "helpid": "5637", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6D40", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA ME 1024 operation rate (domain)", - "format": "single", - "helpid": "5637", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6D60", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA ME 1024 operation rate (CPC)", - "format": "single", - "helpid": "5637", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6D80", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA ME 2048 operation rate (domain)", - "format": "single", - "helpid": "5637", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6DA0", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA ME 2048 operation rate (CPC)", - "format": "single", - "helpid": "5637", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6DC0", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA ME 4096 operation rate (domain)", - "format": "single", - "helpid": "5637", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6DE0", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA ME 4096 operation rate (CPC)", - "format": "single", - "helpid": "5637", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6E00", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } + "listtype": " " }], "resource": { "attributes": "YES", "expandable": "NO", - "helpurl": "/gpm/include/help/restypes/CRYPTO_CARD.htm", "icon": "rmfpfie.gif", "reslabel": "RS26,*,CRYPTO_CARD", "restype": "CRYPTO_CARD" } }, { "metric": [{ - "description": "% available", - "format": "single", - "helpid": "3007", - "helpurl": "/gpm/include/metrics.html", "id": "8D0050", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% not released", - "format": "single", - "helpid": "3008", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0410", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization", - "format": "single", - "helpid": "3009", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0530", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "J"] - } - }, { - "description": "# frames defined", - "format": "single", - "helpid": "3012", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0BC0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# frames not released", - "format": "single", - "helpid": "3010", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0C90", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "J"] - } - }, { - "description": "# frames used", - "format": "single", - "helpid": "3011", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0CE0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "% utilization by job", - "format": "list", - "helpid": "3009", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0540", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# frames not released by job", - "format": "list", - "helpid": "3010", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D0CA0", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# frames used by job", - "format": "list", - "helpid": "3011", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D0CF0", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } + "listtype": "J" }], "resource": { "attributes": "NO", "expandable": "NO", - "helpurl": "/gpm/include/help/restypes/CSA.htm", "icon": "rmfcsa.gif", "reslabel": "RS26,*,CSA", "restype": "CSA" } }, { "metric": [{ - "description": "% available", - "format": "single", - "helpid": "3007", - "helpurl": "/gpm/include/metrics.html", "id": "8D0050", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% not released", - "format": "single", - "helpid": "3008", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0410", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization", - "format": "single", - "helpid": "3009", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0530", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "J"] - } - }, { - "description": "# frames defined", - "format": "single", - "helpid": "3012", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0BC0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# frames not released", - "format": "single", - "helpid": "3010", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0C90", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "J"] - } - }, { - "description": "# frames used", - "format": "single", - "helpid": "3011", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0CE0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "% utilization by job", - "format": "list", - "helpid": "3009", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0540", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# frames not released by job", - "format": "list", - "helpid": "3010", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D0CA0", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# frames used by job", - "format": "list", - "helpid": "3011", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D0CF0", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } + "listtype": "J" }], "resource": { "attributes": "NO", "expandable": "NO", - "helpurl": "/gpm/include/help/restypes/ECSA.htm", "icon": "rmfecsa.gif", "reslabel": "RS26,*,ECSA", "restype": "ECSA" @@ -5567,214 +1637,75 @@ "resource": { "attributes": "YES", "expandable": "NO", - "helpurl": "/gpm/include/help/restypes/ENCLAVE.htm", "icon": "rmfencla.gif", "reslabel": "RS26,*,ENCLAVE", "restype": "ENCLAVE" } }, { "metric": [{ - "description": "% delay", - "format": "single", - "helpid": "2004", - "helpurl": "/gpm/include/metrics.html", "id": "8D00E0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "J", "W", "S", "P", "R"] - } - }, { - "description": "% delay by enclave", - "format": "list", - "helpid": "5321", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D28D0", - "listtype": "E", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by job", - "format": "list", - "helpid": "2004", - "helpurl": "/gpm/include/metrics.html", + "listtype": "E" + }, { "id": "8D0180", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% delay by WLM report class period", - "format": "list", - "helpid": "2004", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D28E0", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by WLM service class period", - "format": "list", - "helpid": "2004", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D17A0", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by WLM report class", - "format": "list", - "helpid": "2004", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D1660", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by WLM service class", - "format": "list", - "helpid": "2004", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D1700", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by WLM workload", - "format": "list", - "helpid": "2004", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D1840", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } + "listtype": "W" }], "resource": { "attributes": "NO", "expandable": "NO", - "helpurl": "/gpm/include/help/restypes/ENQUEUE.htm", "icon": "rmfenque.gif", "reslabel": "RS26,*,ENQUEUE", "restype": "ENQUEUE" } }, { "metric": [{ - "description": "% available", - "format": "single", - "helpid": "3007", - "helpurl": "/gpm/include/metrics.html", "id": "8D0050", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% not released", - "format": "single", - "helpid": "3008", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0410", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization", - "format": "single", - "helpid": "3009", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0530", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "J"] - } - }, { - "description": "# frames defined", - "format": "single", - "helpid": "3012", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0BC0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# frames not released", - "format": "single", - "helpid": "3010", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0C90", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "J"] - } - }, { - "description": "# frames used", - "format": "single", - "helpid": "3011", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0CE0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "% utilization by job", - "format": "list", - "helpid": "3009", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0540", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# frames not released by job", - "format": "list", - "helpid": "3010", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D0CA0", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# frames used by job", - "format": "list", - "helpid": "3011", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D0CF0", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } + "listtype": "J" }], "resource": { "attributes": "NO", "expandable": "NO", - "helpurl": "/gpm/include/help/restypes/ESQA.htm", "icon": "rmfesqa.gif", "reslabel": "RS26,*,ESQA", "restype": "ESQA" @@ -5784,13729 +1715,3855 @@ "resource": { "attributes": "YES", "expandable": "NO", - "helpurl": "/gpm/include/help/restypes/EXPANDED_STORAGE.htm", "icon": "rmfexpan.gif", "reslabel": "RS26,*,EXPANDED_STORAGE", "restype": "EXPANDED_STORAGE" } }, { "metric": [{ - "description": "% delay", - "format": "single", - "helpid": "2005", - "helpurl": "/gpm/include/metrics.html", "id": "8D00F0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "J", "W", "S", "P", "R"] - } - }, { - "description": "% delay by job", - "format": "list", - "helpid": "2005", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0190", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% delay by WLM report class period", - "format": "list", - "helpid": "2005", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D28F0", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by WLM service class period", - "format": "list", - "helpid": "2005", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D17B0", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by WLM report class", - "format": "list", - "helpid": "2005", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D1670", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by WLM service class", - "format": "list", - "helpid": "2005", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D1710", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by WLM workload", - "format": "list", - "helpid": "2005", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D1850", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } + "listtype": "W" }], "resource": { "attributes": "NO", "expandable": "NO", - "helpurl": "/gpm/include/help/restypes/HSM.htm", "icon": "rmfhsm.gif", "reslabel": "RS26,*,HSM", "restype": "HSM" } }, { "metric": [{ - "description": "% connect time", - "format": "single", - "helpid": "2019", - "helpurl": "/gpm/include/metrics.html", "id": "8D00A0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "% delay", - "format": "single", - "helpid": "2030", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0170", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "J", "W", "S", "P", "R"] - } - }, { - "description": "% using", - "format": "single", - "helpid": "2020", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D04B0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "J", "W", "S", "P", "R"] - } - }, { - "description": "% workflow", - "format": "single", - "helpid": "4015", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D1E20", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "J", "W", "S", "P", "R"] - } - }, { - "description": "# delayed i/o requests", - "format": "single", - "helpid": "2039", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0680", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "delayed i/o request rate", - "format": "single", - "helpid": "2040", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0EB0", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "device connect time (job)", - "format": "single", - "helpid": "4212", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4930", - "listtype": " ", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "i/o activity rate", - "format": "single", - "helpid": "2021", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0E90", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "total device connect time (job)", - "format": "single", - "helpid": "4212", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D49B0", - "listtype": " ", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "EXCP rate (job)", - "format": "single", - "helpid": "4213", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4C10", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "% delay by dataset name", - "format": "list", - "helpid": "5081", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D2040", - "listtype": "D", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% using by dataset name", - "format": "list", - "helpid": "5080", - "helpurl": "/gpm/include/metrics.html", + "listtype": "D" + }, { "id": "8D2090", - "listtype": "D", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by enclave", - "format": "list", - "helpid": "5319", - "helpurl": "/gpm/include/metrics.html", + "listtype": "D" + }, { "id": "8D28B0", - "listtype": "E", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% using by enclave", - "format": "list", - "helpid": "5318", - "helpurl": "/gpm/include/metrics.html", + "listtype": "E" + }, { "id": "8D2B20", - "listtype": "E", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% connect time by job", - "format": "list", - "helpid": "2019", - "helpurl": "/gpm/include/metrics.html", + "listtype": "E" + }, { "id": "8D00C0", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% delay by job", - "format": "list", - "helpid": "2030", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D0210", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% using by job", - "format": "list", - "helpid": "2020", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D04F0", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% workflow by job", - "format": "list", - "helpid": "4015", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D1EC0", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "device connect time by job", - "format": "list", - "helpid": "4212", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D4940", - "listtype": "J", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "total device connect time by job", - "format": "list", - "helpid": "4212", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D49C0", - "listtype": "J", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "EXCP rate by job", - "format": "list", - "helpid": "4213", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D4C20", - "listtype": "J", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% delay by WLM report class period", - "format": "list", - "helpid": "2030", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D2970", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% using by WLM report class period", - "format": "list", - "helpid": "2020", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D2B40", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% workflow by WLM report class period", - "format": "list", - "helpid": "4015", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D2BA0", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by dataset name and job", - "format": "list", - "helpid": "5081", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D2890", - "listtype": "N", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% using by dataset name and job", - "format": "list", - "helpid": "5080", - "helpurl": "/gpm/include/metrics.html", + "listtype": "N" + }, { "id": "8D2B00", - "listtype": "N", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by WLM service class period", - "format": "list", - "helpid": "2030", - "helpurl": "/gpm/include/metrics.html", + "listtype": "N" + }, { "id": "8D1830", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% using by WLM service class period", - "format": "list", - "helpid": "2020", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D1CF0", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% workflow by WLM service class period", - "format": "list", - "helpid": "4015", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D1E80", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by WLM report class", - "format": "list", - "helpid": "2030", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D16F0", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% using by WLM report class", - "format": "list", - "helpid": "2020", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D1C90", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% workflow by WLM report class", - "format": "list", - "helpid": "4015", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D1E40", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by WLM service class", - "format": "list", - "helpid": "2030", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D1790", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% using by WLM service class", - "format": "list", - "helpid": "2020", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D1CC0", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% workflow by WLM service class", - "format": "list", - "helpid": "4015", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D1E60", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by WLM workload", - "format": "list", - "helpid": "2030", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D18D0", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% using by WLM workload", - "format": "list", - "helpid": "2020", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D1D20", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% workflow by WLM workload", - "format": "list", - "helpid": "4015", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D1EA0", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } + "listtype": "W" }], "resource": { "attributes": "NO", "expandable": "YES", - "helpurl": "/gpm/include/help/restypes/I/O_SUBSYSTEM.htm", "icon": "rmfiosub.gif", "reslabel": "RS26,*,I/O_SUBSYSTEM", "restype": "I/O_SUBSYSTEM" } }, { "metric": [{ - "description": "% delay", - "format": "single", - "helpid": "2007", - "helpurl": "/gpm/include/metrics.html", "id": "8D0100", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "J", "W", "S", "P", "R"] - } - }, { - "description": "% delay by job", - "format": "list", - "helpid": "2007", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D01A0", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% delay by WLM report class period", - "format": "list", - "helpid": "2007", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D2900", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by WLM service class period", - "format": "list", - "helpid": "2007", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D17C0", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by WLM report class", - "format": "list", - "helpid": "2007", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D1680", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by WLM service class", - "format": "list", - "helpid": "2007", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D1720", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by WLM workload", - "format": "list", - "helpid": "2007", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D1860", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } + "listtype": "W" }], "resource": { "attributes": "NO", "expandable": "NO", - "helpurl": "/gpm/include/help/restypes/JES.htm", "icon": "rmfjes.gif", "reslabel": "RS26,*,JES", "restype": "JES" } }, { "metric": [{ - "description": "# delayed i/o requests", - "format": "single", - "helpid": "2039", - "helpurl": "/gpm/include/metrics.html", "id": "8D0680", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average channel subsystem delay time (in mSec)", - "format": "single", - "helpid": "5116", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D27F0", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "delayed i/o request rate", - "format": "single", - "helpid": "2040", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0EB0", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "i/o activity rate", - "format": "single", - "helpid": "2021", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0E90", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% director port busy by channel path and CU", - "format": "list", - "helpid": "2037", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0340", - "listtype": "U", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% CU busy by channel path and CU", - "format": "list", - "helpid": "2036", - "helpurl": "/gpm/include/metrics.html", + "listtype": "U" + }, { "id": "8D05D0", - "listtype": "U", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average command response time (in mSec) by channel path and CU", - "format": "list", - "helpid": "5119", - "helpurl": "/gpm/include/metrics.html", + "listtype": "U" + }, { "id": "8D2810", - "listtype": "U", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average CU busy time (in mSec) by channel path and CU", - "format": "list", - "helpid": "5118", - "helpurl": "/gpm/include/metrics.html", + "listtype": "U" + }, { "id": "8D27E0", - "listtype": "U", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "CHPID taken rate by channel path and CU", - "format": "list", - "helpid": "2038", - "helpurl": "/gpm/include/metrics.html", + "listtype": "U" + }, { "id": "8D05C0", - "listtype": "U", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% active time by volume", - "format": "list", - "helpid": "2026", - "helpurl": "/gpm/include/metrics.html", + "listtype": "U" + }, { "id": "8D0020", - "listtype": "V", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% connect time by volume", - "format": "list", - "helpid": "2027", - "helpurl": "/gpm/include/metrics.html", + "listtype": "V" + }, { "id": "8D00D0", - "listtype": "V", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay device busy by volume", - "format": "list", - "helpid": "2031", - "helpurl": "/gpm/include/metrics.html", + "listtype": "V" + }, { "id": "8D0250", - "listtype": "V", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay due to device command response time by volume", - "format": "list", - "helpid": "5117", - "helpurl": "/gpm/include/metrics.html", + "listtype": "V" + }, { "id": "8D2780", - "listtype": "V", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% disconnect time by volume", - "format": "list", - "helpid": "2028", - "helpurl": "/gpm/include/metrics.html", + "listtype": "V" + }, { "id": "8D0360", - "listtype": "V", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% pending time by volume", - "format": "list", - "helpid": "2029", - "helpurl": "/gpm/include/metrics.html", + "listtype": "V" + }, { "id": "8D0440", - "listtype": "V", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "i/o activity rate by volume", - "format": "list", - "helpid": "2021", - "helpurl": "/gpm/include/metrics.html", + "listtype": "V" + }, { "id": "8D0EA0", - "listtype": "V", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "response time by volume", - "format": "list", - "helpid": "2023", - "helpurl": "/gpm/include/metrics.html", + "listtype": "V" + }, { "id": "8D1120", - "listtype": "V", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "IOS queue time by volume", - "format": "list", - "helpid": "2022", - "helpurl": "/gpm/include/metrics.html", + "listtype": "V" + }, { "id": "8D12C0", - "listtype": "V", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } + "listtype": "V" }], "resource": { "attributes": "NO", "expandable": "NO", - "helpurl": "/gpm/include/help/restypes/LOGICAL_CONTROL_UNIT.htm", "icon": "rmflcu.gif", "reslabel": "RS26,*,LOGICAL_CONTROL_UNIT", "restype": "LOGICAL_CONTROL_UNIT" } }, { "metric": [{ - "description": "% capacity used", - "format": "single", - "helpid": "5127", - "helpurl": "/gpm/include/metrics.html", "id": "8D2870", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% effective logical utilization (AAP)", - "format": "single", - "helpid": "5108", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3670", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% effective logical utilization (CP)", - "format": "single", - "helpid": "5108", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D24B0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% effective logical utilization (ICF)", - "format": "single", - "helpid": "5108", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3680", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% effective logical utilization (IFL)", - "format": "single", - "helpid": "5108", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3690", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% effective logical utilization (IIP)", - "format": "single", - "helpid": "5108", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D36A0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% effective physical utilization (AAP)", - "format": "single", - "helpid": "5111", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D36B0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% effective physical utilization (CP)", - "format": "single", - "helpid": "5111", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D24C0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% effective physical utilization (ICF)", - "format": "single", - "helpid": "5111", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D36C0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% effective physical utilization (IFL)", - "format": "single", - "helpid": "5111", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D36D0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% effective physical utilization (IIP)", - "format": "single", - "helpid": "5111", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D36E0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% logical processor share (AAP)", - "format": "single", - "helpid": "5165", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4030", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% logical processor share (CP)", - "format": "single", - "helpid": "5165", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4050", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% logical processor share (IIP)", - "format": "single", - "helpid": "5165", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4070", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% total logical utilization (AAP)", - "format": "single", - "helpid": "5109", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D38D0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% total logical utilization (CP)", - "format": "single", - "helpid": "5109", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D2510", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% total logical utilization (ICF)", - "format": "single", - "helpid": "5109", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D38E0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% total logical utilization (IFL)", - "format": "single", - "helpid": "5109", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D38F0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% total logical utilization (IIP)", - "format": "single", - "helpid": "5109", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3900", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% total physical utilization (AAP)", - "format": "single", - "helpid": "5113", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3960", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% total physical utilization (CP)", - "format": "single", - "helpid": "5113", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D2530", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% total physical utilization (ICF)", - "format": "single", - "helpid": "5113", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3970", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% total physical utilization (IFL)", - "format": "single", - "helpid": "5113", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3980", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% total physical utilization (IIP)", - "format": "single", - "helpid": "5113", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3990", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% weight of max", - "format": "single", - "helpid": "5102", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D25A0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% LPAR management time (AAP)", - "format": "single", - "helpid": "5114", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D39E0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% LPAR management time (CP)", - "format": "single", - "helpid": "5114", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D2520", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% LPAR management time (ICF)", - "format": "single", - "helpid": "5114", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3A30", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% LPAR management time (IFL)", - "format": "single", - "helpid": "5114", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3A80", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% LPAR management time (IIP)", - "format": "single", - "helpid": "5114", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3AB0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% MT CP core productivity", - "format": "single", - "helpid": "4063", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D47A0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% MT IIP core productivity", - "format": "single", - "helpid": "4062", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D47C0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% WLM capping", - "format": "single", - "helpid": "5103", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D2490", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# logical processors shared (CP)", - "format": "single", - "helpid": "5160", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3B90", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# logical processors shared (ICF)", - "format": "single", - "helpid": "5160", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3BC0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# logical processors shared (IFL)", - "format": "single", - "helpid": "5160", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3C10", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# logical processors/cores shared (AAP)", - "format": "single", - "helpid": "5160", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3B60", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# logical processors/cores shared (IIP)", - "format": "single", - "helpid": "5160", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3C40", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# processors dedicated (CP)", - "format": "single", - "helpid": "4045", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3B20", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# processors online (CP)", - "format": "single", - "helpid": "4043", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D2610", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# processors online (ICF)", - "format": "single", - "helpid": "4043", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3CC0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# processors online (IFL)", - "format": "single", - "helpid": "4043", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3D10", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# processors with high share (CP)", - "format": "single", - "helpid": "5166", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D40B0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# processors with low share (CP)", - "format": "single", - "helpid": "5168", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4110", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# processors with medium share (CP)", - "format": "single", - "helpid": "5167", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4170", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# processors/cores dedicated (AAP)", - "format": "single", - "helpid": "4045", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3B00", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# processors/cores dedicated (IIP)", - "format": "single", - "helpid": "4045", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3B40", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# processors/cores online (AAP)", - "format": "single", - "helpid": "4043", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3C70", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# processors/cores online (IIP)", - "format": "single", - "helpid": "4043", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3D40", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# processors/cores with high share (AAP)", - "format": "single", - "helpid": "5166", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4090", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# processors/cores with high share (IIP)", - "format": "single", - "helpid": "5166", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D40D0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# processors/cores with low share (AAP)", - "format": "single", - "helpid": "5168", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D40F0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# processors/cores with low share (IIP)", - "format": "single", - "helpid": "5168", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4130", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# processors/cores with medium share (AAP)", - "format": "single", - "helpid": "5167", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4150", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# processors/cores with medium share (IIP)", - "format": "single", - "helpid": "5167", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4190", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "actual MSU", - "format": "single", - "helpid": "5106", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D25E0", - "listtype": " ", - "unit": "rate per hour", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "available capacity (MSU/h) for group", - "format": "single", - "helpid": "5138", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D43E0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average thread density for CP", - "format": "single", - "helpid": "4051", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4A90", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average thread density for IIP", - "format": "single", - "helpid": "4050", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4AB0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "defined capacity group limit (MSU/h)", - "format": "single", - "helpid": "4048", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4530", - "listtype": " ", - "unit": "rate per hour", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "defined MSU", - "format": "single", - "helpid": "5101", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D2620", - "listtype": " ", - "unit": "rate per hour", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "four hour MSU average", - "format": "single", - "helpid": "5104", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D2630", - "listtype": " ", - "unit": "rate per hour", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "four hour MSU maximum", - "format": "single", - "helpid": "5105", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D2650", - "listtype": " ", - "unit": "rate per hour", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "image capacity (MSU/h)", - "format": "single", - "helpid": "5101", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D2660", - "listtype": " ", - "unit": "rate per hour", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "remaining time until capping in seconds", - "format": "single", - "helpid": "5115", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D2680", - "listtype": " ", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "remaining time until group capping in seconds", - "format": "single", - "helpid": "5137", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4460", - "listtype": " ", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "LPAR weight (AAP)", - "format": "single", - "helpid": "5162", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3F20", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "LPAR weight (CP)", - "format": "single", - "helpid": "5162", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3F50", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "LPAR weight (ICF)", - "format": "single", - "helpid": "5162", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3F80", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "LPAR weight (IFL)", - "format": "single", - "helpid": "5162", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3FD0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "LPAR weight (IIP)", - "format": "single", - "helpid": "5162", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4000", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "MT capacity factor for CP", - "format": "single", - "helpid": "4054", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4B10", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "MT capacity factor for IIP", - "format": "single", - "helpid": "4053", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4B30", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "MT maximum capacity factor for CP", - "format": "single", - "helpid": "4057", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4B70", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "MT maximum capacity factor for IIP", - "format": "single", - "helpid": "4056", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4B90", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "MT mode for CP", - "format": "single", - "helpid": "4060", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4BD0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "MT mode for IIP", - "format": "single", - "helpid": "4059", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4BF0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } + "listtype": " " }], "resource": { "attributes": "YES", "expandable": "NO", - "helpurl": "/gpm/include/help/restypes/LPAR.htm", "icon": "rmflpar.gif", "reslabel": "RS26,*,LPAR", "restype": "LPAR" } }, { "metric": [{ - "description": "% delay", - "format": "single", - "helpid": "2013", - "helpurl": "/gpm/include/metrics.html", "id": "8D0160", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "J", "W", "S", "P", "R"] - } - }, { - "description": "% idle", - "format": "single", - "helpid": "2014", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D03E0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "J"] - } - }, { - "description": "% unknown", - "format": "single", - "helpid": "2017", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0470", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "J"] - } - }, { - "description": "% using", - "format": "single", - "helpid": "2015", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D04A0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "J", "W", "S", "P", "R"] - } - }, { - "description": "% workflow", - "format": "single", - "helpid": "4004", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0550", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "J", "W", "S", "P", "R"] - } - }, { - "description": "# active users", - "format": "single", - "helpid": "4006", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0620", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P", "R"] - } - }, { - "description": "# qscan requests (job)", - "format": "single", - "helpid": "4203", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4840", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "# qscan resources (job)", - "format": "single", - "helpid": "4205", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4870", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "# qscan resources standard deviation (job)", - "format": "single", - "helpid": "4206", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D48A0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "# qscan specific requests (job)", - "format": "single", - "helpid": "4204", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D48D0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "# transactions (job)", - "format": "single", - "helpid": "4202", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4900", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "# users", - "format": "single", - "helpid": "4010", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0D50", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P", "R"] - } - }, { - "description": "execution velocity", - "format": "single", - "helpid": "4000", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0EF0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P", "R"] - } - }, { - "description": "performance index", - "format": "single", - "helpid": "5013", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D1000", - "listtype": " ", - "unit": "index", - "workscopesSupported": { - "workscopeType": ["P"] - } - }, { - "description": "qscan request time (job)", - "format": "single", - "helpid": "4207", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4950", - "listtype": " ", - "unit": "microseconds", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "qscan request time standard deviation (job)", - "format": "single", - "helpid": "4208", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4980", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "response time", - "format": "single", - "helpid": "4001", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D1100", - "listtype": " ", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["W", "S", "P", "R"] - } - }, { - "description": "response time (ms)", - "format": "single", - "helpid": "4001", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5EB0", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["W", "S", "P", "R"] - } - }, { - "description": "transaction active time (job)", - "format": "single", - "helpid": "4200", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4A10", - "listtype": " ", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "transaction ended rate", - "format": "single", - "helpid": "5007", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D1200", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P", "R"] - } - }, { - "description": "transaction resident time (job)", - "format": "single", - "helpid": "4201", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4A40", - "listtype": " ", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "% delay by enclave", - "format": "list", - "helpid": "5301", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D28A0", - "listtype": "E", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% idle by enclave", - "format": "list", - "helpid": "5302", - "helpurl": "/gpm/include/metrics.html", + "listtype": "E" + }, { "id": "8D2A90", - "listtype": "E", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% using by enclave", - "format": "list", - "helpid": "5300", - "helpurl": "/gpm/include/metrics.html", + "listtype": "E" + }, { "id": "8D2B10", - "listtype": "E", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by job", - "format": "list", - "helpid": "2013", - "helpurl": "/gpm/include/metrics.html", + "listtype": "E" + }, { "id": "8D0200", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% idle by job", - "format": "list", - "helpid": "2014", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D03F0", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% unknown by job", - "format": "list", - "helpid": "2017", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D0480", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% using by job", - "format": "list", - "helpid": "2015", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D04E0", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% workflow by job", - "format": "list", - "helpid": "4004", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D0560", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# qscan requests by job", - "format": "list", - "helpid": "4203", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D4860", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# qscan resources by job", - "format": "list", - "helpid": "4205", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D4890", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# qscan resources standard deviation by job", - "format": "list", - "helpid": "4206", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D48C0", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# qscan specific requests by job", - "format": "list", - "helpid": "4204", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D48F0", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# transactions by job", - "format": "list", - "helpid": "4202", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D4920", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "qscan request time by job", - "format": "list", - "helpid": "4207", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D4970", - "listtype": "J", - "unit": "microseconds", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "qscan request time standard deviation by job", - "format": "list", - "helpid": "4208", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D49A0", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "transaction active time by job", - "format": "list", - "helpid": "4200", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D4A30", - "listtype": "J", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "transaction resident time by job", - "format": "list", - "helpid": "4201", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D4A60", - "listtype": "J", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% delay by WLM report class period", - "format": "list", - "helpid": "2013", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D2960", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% using by WLM report class period", - "format": "list", - "helpid": "2015", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D2B30", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% workflow by WLM report class period", - "format": "list", - "helpid": "4004", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D2B80", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# active users by WLM report class period", - "format": "list", - "helpid": "4006", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D2D60", - "listtype": "K", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# users by WLM report class period", - "format": "list", - "helpid": "4010", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D2F40", - "listtype": "K", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "execution velocity by WLM report class period", - "format": "list", - "helpid": "4000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D3080", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "performance index by WLM report class period", - "format": "list", - "helpid": "5013", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D3110", - "listtype": "K", - "unit": "index", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "response time (ms) by WLM report class period", - "format": "list", - "helpid": "4001", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D5EF0", - "listtype": "K", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "response time by WLM report class period", - "format": "list", - "helpid": "4001", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D31A0", - "listtype": "K", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "transaction ended rate by WLM report class period", - "format": "list", - "helpid": "5007", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D3230", - "listtype": "K", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by WLM service class period", - "format": "list", - "helpid": "2013", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D1820", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% using by WLM service class period", - "format": "list", - "helpid": "2015", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D1CE0", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% workflow by WLM service class period", - "format": "list", - "helpid": "4004", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D05A0", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# active users by WLM service class period", - "format": "list", - "helpid": "4006", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D0660", - "listtype": "P", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# users by WLM service class period", - "format": "list", - "helpid": "4010", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D0D90", - "listtype": "P", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "execution velocity by WLM service class period", - "format": "list", - "helpid": "4000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D0F60", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "performance index by WLM service class period", - "format": "list", - "helpid": "5013", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D1020", - "listtype": "P", - "unit": "index", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "response time (ms) by WLM service class period", - "format": "list", - "helpid": "4001", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D5F30", - "listtype": "P", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "response time by WLM service class period", - "format": "list", - "helpid": "4001", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D1170", - "listtype": "P", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "transaction ended rate by WLM service class period", - "format": "list", - "helpid": "5007", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D1240", - "listtype": "P", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by WLM report class", - "format": "list", - "helpid": "2013", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D16E0", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% using by WLM report class", - "format": "list", - "helpid": "2015", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D1C60", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% workflow by WLM report class", - "format": "list", - "helpid": "4004", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D0580", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# active users by WLM report class", - "format": "list", - "helpid": "4006", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D0640", - "listtype": "R", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# users by WLM report class", - "format": "list", - "helpid": "4010", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D0D70", - "listtype": "R", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "execution velocity by WLM report class", - "format": "list", - "helpid": "4000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D0F20", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "response time (ms) by WLM report class", - "format": "list", - "helpid": "4001", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D5ED0", - "listtype": "R", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "response time by WLM report class", - "format": "list", - "helpid": "4001", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D1130", - "listtype": "R", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "transaction ended rate by WLM report class", - "format": "list", - "helpid": "5007", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D1220", - "listtype": "R", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by WLM service class", - "format": "list", - "helpid": "2013", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D1780", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% using by WLM service class", - "format": "list", - "helpid": "2015", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D1CB0", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% workflow by WLM service class", - "format": "list", - "helpid": "4004", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D0590", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# active users by WLM service class", - "format": "list", - "helpid": "4006", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D0650", - "listtype": "S", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# users by WLM service class", - "format": "list", - "helpid": "4010", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D0D80", - "listtype": "S", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "execution velocity by WLM service class", - "format": "list", - "helpid": "4000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D0F40", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "response time (ms) by WLM service class", - "format": "list", - "helpid": "4001", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D5F10", - "listtype": "S", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "response time by WLM service class", - "format": "list", - "helpid": "4001", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D1150", - "listtype": "S", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "transaction ended rate by WLM service class", - "format": "list", - "helpid": "5007", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D1230", - "listtype": "S", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by WLM workload", - "format": "list", - "helpid": "2013", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D18C0", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% using by WLM workload", - "format": "list", - "helpid": "2015", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D1D10", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% workflow by WLM workload", - "format": "list", - "helpid": "4004", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D05B0", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# active users by WLM workload", - "format": "list", - "helpid": "4006", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D0670", - "listtype": "W", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# users by WLM workload", - "format": "list", - "helpid": "4010", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D0DA0", - "listtype": "W", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "execution velocity by WLM workload", - "format": "list", - "helpid": "4000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D0F80", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "response time (ms) by WLM workload", - "format": "list", - "helpid": "4001", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D5F50", - "listtype": "W", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "response time by WLM workload", - "format": "list", - "helpid": "4001", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D1190", - "listtype": "W", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "transaction ended rate by WLM workload", - "format": "list", - "helpid": "5007", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D1250", - "listtype": "W", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "signals received by XCF group and member", - "format": "list", - "helpid": "5401", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D3E10", - "listtype": "2", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "signals sent by XCF group and member", - "format": "list", - "helpid": "5400", - "helpurl": "/gpm/include/metrics.html", + "listtype": "2" + }, { "id": "8D3E50", - "listtype": "2", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% retry by XCF systems and path", - "format": "list", - "helpid": "5402", - "helpurl": "/gpm/include/metrics.html", + "listtype": "2" + }, { "id": "8D38A0", - "listtype": "3", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "i/o transfer time by XCF systems and path", - "format": "list", - "helpid": "5417", - "helpurl": "/gpm/include/metrics.html", + "listtype": "3" + }, { "id": "8D3DB0", - "listtype": "3", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "message limit by XCF systems and path", - "format": "list", - "helpid": "5404", - "helpurl": "/gpm/include/metrics.html", + "listtype": "3" + }, { "id": "8D3DC0", - "listtype": "3", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "restart count by XCF systems and path", - "format": "list", - "helpid": "5408", - "helpurl": "/gpm/include/metrics.html", + "listtype": "3" + }, { "id": "8D3DD0", - "listtype": "3", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "retry limit by XCF systems and path", - "format": "list", - "helpid": "5403", - "helpurl": "/gpm/include/metrics.html", + "listtype": "3" + }, { "id": "8D3DE0", - "listtype": "3", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "signals pending transfer by XCF systems and path", - "format": "list", - "helpid": "5406", - "helpurl": "/gpm/include/metrics.html", + "listtype": "3" + }, { "id": "8D3DF0", - "listtype": "3", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "signals received by XCF systems and path", - "format": "list", - "helpid": "5401", - "helpurl": "/gpm/include/metrics.html", + "listtype": "3" + }, { "id": "8D3E30", - "listtype": "3", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "signals sent by XCF systems and path", - "format": "list", - "helpid": "5400", - "helpurl": "/gpm/include/metrics.html", + "listtype": "3" + }, { "id": "8D3E60", - "listtype": "3", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "storage in use by XCF systems and path", - "format": "list", - "helpid": "5407", - "helpurl": "/gpm/include/metrics.html", + "listtype": "3" + }, { "id": "8D3E80", - "listtype": "3", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "times buffer unavailable by XCF systems and path", - "format": "list", - "helpid": "5409", - "helpurl": "/gpm/include/metrics.html", + "listtype": "3" + }, { "id": "8D3E90", - "listtype": "3", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "times path busy by XCF systems and path", - "format": "list", - "helpid": "5405", - "helpurl": "/gpm/include/metrics.html", + "listtype": "3" + }, { "id": "8D3EB0", - "listtype": "3", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% degraded by XCF systems and transport class", - "format": "list", - "helpid": "5416", - "helpurl": "/gpm/include/metrics.html", + "listtype": "3" + }, { "id": "8D3660", - "listtype": "4", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% fit by XCF systems and transport class", - "format": "list", - "helpid": "5413", - "helpurl": "/gpm/include/metrics.html", + "listtype": "4" + }, { "id": "8D36F0", - "listtype": "4", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% large by XCF systems and transport class", - "format": "list", - "helpid": "5415", - "helpurl": "/gpm/include/metrics.html", + "listtype": "4" + }, { "id": "8D3700", - "listtype": "4", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% small by XCF systems and transport class", - "format": "list", - "helpid": "5414", - "helpurl": "/gpm/include/metrics.html", + "listtype": "4" + }, { "id": "8D38B0", - "listtype": "4", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "buffer length by XCF systems and transport class", - "format": "list", - "helpid": "5412", - "helpurl": "/gpm/include/metrics.html", + "listtype": "4" + }, { "id": "8D3DA0", - "listtype": "4", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "signals sent by XCF systems and transport class", - "format": "list", - "helpid": "5400", - "helpurl": "/gpm/include/metrics.html", + "listtype": "4" + }, { "id": "8D3E70", - "listtype": "4", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "times buffer unavailable by XCF systems and transport class", - "format": "list", - "helpid": "5411", - "helpurl": "/gpm/include/metrics.html", + "listtype": "4" + }, { "id": "8D3EA0", - "listtype": "4", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "times path unavailable by XCF systems and transport class", - "format": "list", - "helpid": "5410", - "helpurl": "/gpm/include/metrics.html", + "listtype": "4" + }, { "id": "8D3EC0", - "listtype": "4", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } + "listtype": "4" }], "resource": { "attributes": "YES", "expandable": "YES", - "helpurl": "/gpm/include/help/restypes/MVS_IMAGE.htm", "icon": "rmfmvsim.gif", "reslabel": "RS26,*,MVS_IMAGE", "restype": "MVS_IMAGE" } }, { "metric": [{ - "description": "% delay", - "format": "single", - "helpid": "2008", - "helpurl": "/gpm/include/metrics.html", "id": "8D0110", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "J", "W", "S", "P", "R"] - } - }, { - "description": "% delay by job", - "format": "list", - "helpid": "2008", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D01B0", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% delay by WLM report class period", - "format": "list", - "helpid": "2008", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D2910", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by WLM service class period", - "format": "list", - "helpid": "2008", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D17D0", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by WLM report class", - "format": "list", - "helpid": "2008", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D1690", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by WLM service class", - "format": "list", - "helpid": "2008", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D1730", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by WLM workload", - "format": "list", - "helpid": "2008", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D1870", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } + "listtype": "W" }], "resource": { "attributes": "NO", "expandable": "NO", - "helpurl": "/gpm/include/help/restypes/OPERATOR.htm", "icon": "rmfopera.gif", "reslabel": "RS26,*,OPERATOR", "restype": "OPERATOR" } }, { "metric": [{ - "description": "% allocation time by PCIE function", - "format": "list", - "helpid": "4304", - "helpurl": "/gpm/include/metrics.html", "id": "8D4C60", - "listtype": "H", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% buffer pool utilization by PCIE function", - "format": "list", - "helpid": "4331", - "helpurl": "/gpm/include/metrics.html", + "listtype": "H" + }, { "id": "8D4C80", - "listtype": "H", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% synchronous I/O successful requests (CPC) by PCIE function", - "format": "list", - "helpid": "4338", - "helpurl": "/gpm/include/metrics.html", + "listtype": "H" + }, { "id": "8D5CB0", - "listtype": "H", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% synchronous I/O successful requests by PCIE function", - "format": "list", - "helpid": "4337", - "helpurl": "/gpm/include/metrics.html", + "listtype": "H" + }, { "id": "8D5CC0", - "listtype": "H", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% synchronous I/O time busy (CPC) by PCIE function", - "format": "list", - "helpid": "4336", - "helpurl": "/gpm/include/metrics.html", + "listtype": "H" + }, { "id": "8D5CE0", - "listtype": "H", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% time busy by PCIE function", - "format": "list", - "helpid": "4317", - "helpurl": "/gpm/include/metrics.html", + "listtype": "H" + }, { "id": "8D4CA0", - "listtype": "H", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "adapter utilization by PCIE function", - "format": "list", - "helpid": "4335", - "helpurl": "/gpm/include/metrics.html", + "listtype": "H" + }, { "id": "8D4D00", - "listtype": "H", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "buffer pool memory size by PCIE function", - "format": "list", - "helpid": "4330", - "helpurl": "/gpm/include/metrics.html", + "listtype": "H" + }, { "id": "8D4D20", - "listtype": "H", - "unit": "megabytes", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "compression ratio by PCIE function", - "format": "list", - "helpid": "4326", - "helpurl": "/gpm/include/metrics.html", + "listtype": "H" + }, { "id": "8D4D40", - "listtype": "H", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "compression request rate by PCIE function", - "format": "list", - "helpid": "4324", - "helpurl": "/gpm/include/metrics.html", + "listtype": "H" + }, { "id": "8D4D60", - "listtype": "H", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "compression throughput by PCIE function", - "format": "list", - "helpid": "4325", - "helpurl": "/gpm/include/metrics.html", + "listtype": "H" + }, { "id": "8D4D80", - "listtype": "H", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "decompression ratio by PCIE function", - "format": "list", - "helpid": "4329", - "helpurl": "/gpm/include/metrics.html", + "listtype": "H" + }, { "id": "8D4DA0", - "listtype": "H", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "decompression request rate by PCIE function", - "format": "list", - "helpid": "4327", - "helpurl": "/gpm/include/metrics.html", + "listtype": "H" + }, { "id": "8D4DC0", - "listtype": "H", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "decompression throughput by PCIE function", - "format": "list", - "helpid": "4328", - "helpurl": "/gpm/include/metrics.html", + "listtype": "H" + }, { "id": "8D4DE0", - "listtype": "H", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "received packets rate by PCIE function", - "format": "list", - "helpid": "4332", - "helpurl": "/gpm/include/metrics.html", + "listtype": "H" + }, { "id": "8D4E00", - "listtype": "H", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "request execution time by PCIE function", - "format": "list", - "helpid": "4319", - "helpurl": "/gpm/include/metrics.html", + "listtype": "H" + }, { "id": "8D4E20", - "listtype": "H", - "unit": "microseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "request execution time standard deviation by PCIE function", - "format": "list", - "helpid": "4320", - "helpurl": "/gpm/include/metrics.html", + "listtype": "H" + }, { "id": "8D4E40", - "listtype": "H", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "request queue time by PCIE function", - "format": "list", - "helpid": "4321", - "helpurl": "/gpm/include/metrics.html", + "listtype": "H" + }, { "id": "8D4E60", - "listtype": "H", - "unit": "microseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "request queue time standard deviation by PCIE function", - "format": "list", - "helpid": "4322", - "helpurl": "/gpm/include/metrics.html", + "listtype": "H" + }, { "id": "8D4E80", - "listtype": "H", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "request size by PCIE function", - "format": "list", - "helpid": "4323", - "helpurl": "/gpm/include/metrics.html", + "listtype": "H" + }, { "id": "8D4EA0", - "listtype": "H", - "unit": "kilobytes", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "synchronous I/O request rate (CPC) by PCIE function", - "format": "list", - "helpid": "4340", - "helpurl": "/gpm/include/metrics.html", + "listtype": "H" + }, { "id": "8D5D10", - "listtype": "H", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "synchronous I/O request rate by PCIE function", - "format": "list", - "helpid": "4339", - "helpurl": "/gpm/include/metrics.html", + "listtype": "H" + }, { "id": "8D5D20", - "listtype": "H", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "synchronous I/O transfer read rate (CPC) by PCIE function", - "format": "list", - "helpid": "4341", - "helpurl": "/gpm/include/metrics.html", + "listtype": "H" + }, { "id": "8D5D40", - "listtype": "H", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "synchronous I/O transfer read ratio (CPC) by PCIE function", - "format": "list", - "helpid": "4343", - "helpurl": "/gpm/include/metrics.html", + "listtype": "H" + }, { "id": "8D5D70", - "listtype": "H", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "synchronous I/O transfer read ratio by PCIE function", - "format": "list", - "helpid": "4342", - "helpurl": "/gpm/include/metrics.html", + "listtype": "H" + }, { "id": "8D5D80", - "listtype": "H", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "synchronous I/O transfer write rate (CPC) by PCIE function", - "format": "list", - "helpid": "4344", - "helpurl": "/gpm/include/metrics.html", + "listtype": "H" + }, { "id": "8D5DA0", - "listtype": "H", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "synchronous I/O transfer write ratio (CPC) by PCIE function", - "format": "list", - "helpid": "4346", - "helpurl": "/gpm/include/metrics.html", + "listtype": "H" + }, { "id": "8D5DD0", - "listtype": "H", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "synchronous I/O transfer write ratio by PCIE function", - "format": "list", - "helpid": "4345", - "helpurl": "/gpm/include/metrics.html", + "listtype": "H" + }, { "id": "8D5DE0", - "listtype": "H", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "transfer rate by PCIE function", - "format": "list", - "helpid": "4318", - "helpurl": "/gpm/include/metrics.html", + "listtype": "H" + }, { "id": "8D4EC0", - "listtype": "H", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "transfer read rate by PCIE function", - "format": "list", - "helpid": "4312", - "helpurl": "/gpm/include/metrics.html", + "listtype": "H" + }, { "id": "8D4EE0", - "listtype": "H", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "transfer write rate by PCIE function", - "format": "list", - "helpid": "4313", - "helpurl": "/gpm/include/metrics.html", + "listtype": "H" + }, { "id": "8D4F00", - "listtype": "H", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "transmitted packets rate by PCIE function", - "format": "list", - "helpid": "4333", - "helpurl": "/gpm/include/metrics.html", + "listtype": "H" + }, { "id": "8D4F20", - "listtype": "H", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "work unit rate by PCIE function", - "format": "list", - "helpid": "4334", - "helpurl": "/gpm/include/metrics.html", + "listtype": "H" + }, { "id": "8D4F40", - "listtype": "H", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "PCI load operations rate by PCIE function", - "format": "list", - "helpid": "4308", - "helpurl": "/gpm/include/metrics.html", + "listtype": "H" + }, { "id": "8D4F70", - "listtype": "H", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "PCI refresh operations rate by PCIE function", - "format": "list", - "helpid": "4311", - "helpurl": "/gpm/include/metrics.html", + "listtype": "H" + }, { "id": "8D4F90", - "listtype": "H", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "PCI store block operations rate by PCIE function", - "format": "list", - "helpid": "4310", - "helpurl": "/gpm/include/metrics.html", + "listtype": "H" + }, { "id": "8D4FB0", - "listtype": "H", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "PCI store operations rate by PCIE function", - "format": "list", - "helpid": "4309", - "helpurl": "/gpm/include/metrics.html", + "listtype": "H" + }, { "id": "8D4FD0", - "listtype": "H", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } + "listtype": "H" }], "resource": { "attributes": "NO", "expandable": "NO", - "helpurl": "/gpm/include/help/restypes/PCIE.htm", "icon": "rmfpcie.gif", "reslabel": "RS26,*,PCIE", "restype": "PCIE" } }, { "metric": [{ - "description": "% allocation time", - "format": "single", - "helpid": "4304", - "helpurl": "/gpm/include/metrics.html", "id": "8D4C50", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% buffer pool utilization", - "format": "single", - "helpid": "4331", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4C70", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% synchronous I/O successful requests", - "format": "single", - "helpid": "4337", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5C90", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% synchronous I/O successful requests (CPC)", - "format": "single", - "helpid": "4338", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5CA0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% synchronous I/O time busy (CPC)", - "format": "single", - "helpid": "4336", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5CD0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% time busy", - "format": "single", - "helpid": "4317", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4C90", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "buffer pool memory size", - "format": "single", - "helpid": "4330", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4D10", - "listtype": " ", - "unit": "megabytes", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "compression ratio", - "format": "single", - "helpid": "4326", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4D30", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "compression request rate", - "format": "single", - "helpid": "4324", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4D50", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "compression throughput", - "format": "single", - "helpid": "4325", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4D70", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "decompression ratio", - "format": "single", - "helpid": "4329", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4D90", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "decompression request rate", - "format": "single", - "helpid": "4327", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4DB0", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "decompression throughput", - "format": "single", - "helpid": "4328", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4DD0", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "received packets rate", - "format": "single", - "helpid": "4332", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4DF0", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "request execution time", - "format": "single", - "helpid": "4319", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4E10", - "listtype": " ", - "unit": "microseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "request execution time standard deviation", - "format": "single", - "helpid": "4320", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4E30", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "request queue time", - "format": "single", - "helpid": "4321", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4E50", - "listtype": " ", - "unit": "microseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "request queue time standard deviation", - "format": "single", - "helpid": "4322", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4E70", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "request size", - "format": "single", - "helpid": "4323", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4E90", - "listtype": " ", - "unit": "kilobytes", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "synchronous I/O request rate", - "format": "single", - "helpid": "4339", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5CF0", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "synchronous I/O request rate (CPC)", - "format": "single", - "helpid": "4340", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5D00", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "synchronous I/O transfer read rate (CPC)", - "format": "single", - "helpid": "4341", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5D30", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "synchronous I/O transfer read ratio", - "format": "single", - "helpid": "4342", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5D50", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "synchronous I/O transfer read ratio (CPC)", - "format": "single", - "helpid": "4343", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5D60", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "synchronous I/O transfer write rate (CPC)", - "format": "single", - "helpid": "4344", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5D90", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "synchronous I/O transfer write ratio", - "format": "single", - "helpid": "4345", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5DB0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "synchronous I/O transfer write ratio (CPC)", - "format": "single", - "helpid": "4346", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5DC0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "transfer rate", - "format": "single", - "helpid": "4318", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4EB0", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "transfer read rate", - "format": "single", - "helpid": "4312", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4ED0", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "transfer write rate", - "format": "single", - "helpid": "4313", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4EF0", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "transmitted packets rate", - "format": "single", - "helpid": "4333", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4F10", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "work unit rate", - "format": "single", - "helpid": "4334", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4F30", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "PCI adapter utilization", - "format": "single", - "helpid": "4335", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4F50", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "PCI load operations rate", - "format": "single", - "helpid": "4308", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4F60", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "PCI refresh operations rate", - "format": "single", - "helpid": "4311", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4F80", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "PCI store block operations rate", - "format": "single", - "helpid": "4310", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4FA0", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "PCI store operations rate", - "format": "single", - "helpid": "4309", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4FC0", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } + "listtype": " " }], "resource": { "attributes": "YES", "expandable": "NO", - "helpurl": "/gpm/include/help/restypes/PCIE_FUNCTION.htm", "icon": "rmfpfie.gif", "reslabel": "RS26,*,PCIE_FUNCTION", "restype": "PCIE_FUNCTION" } }, { "metric": [{ - "description": "% appl", - "format": "single", - "helpid": "4009", - "helpurl": "/gpm/include/metrics.html", "id": "8D0600", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% appl (total) (job)", - "format": "single", - "helpid": "2043", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D2750", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "% delay", - "format": "single", - "helpid": "2009", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0120", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "J", "W", "S", "P", "R"] - } - }, { - "description": "% eappl", - "format": "single", - "helpid": "5120", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D2790", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% eappl (job)", - "format": "single", - "helpid": "5121", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D26A0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "% using", - "format": "single", - "helpid": "2042", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D04D0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "J", "W", "S", "P", "R"] - } - }, { - "description": "% workflow", - "format": "single", - "helpid": "4014", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D1E10", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "J", "W", "S", "P", "R"] - } - }, { - "description": "% AAP", - "format": "single", - "helpid": "4021", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D2BF0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% AAP (job)", - "format": "single", - "helpid": "4022", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D2C00", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "% AAP on CP", - "format": "single", - "helpid": "4023", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D2C90", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% AAP on CP (job)", - "format": "single", - "helpid": "4024", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D2CA0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "% CP (job)", - "format": "single", - "helpid": "4017", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4750", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "% CPU utilization (AAP)", - "format": "single", - "helpid": "4005", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D39B0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% CPU utilization (CP)", - "format": "single", - "helpid": "4005", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0460", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% CPU utilization (IIP)", - "format": "single", - "helpid": "4005", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D39C0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% IIP", - "format": "single", - "helpid": "4026", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D34A0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% IIP (job)", - "format": "single", - "helpid": "4027", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D34B0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "% IIP on CP", - "format": "single", - "helpid": "4028", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3550", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% IIP on CP (job)", - "format": "single", - "helpid": "4029", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3560", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "% MVS utilization (AAP)", - "format": "single", - "helpid": "4003", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3AE0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% MVS utilization (CP)", - "format": "single", - "helpid": "4003", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0420", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% MVS utilization (IIP)", - "format": "single", - "helpid": "4003", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3AF0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% SRB", - "format": "single", - "helpid": "4007", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D05E0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% TCB", - "format": "single", - "helpid": "4008", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D05F0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# AAP processors online", - "format": "single", - "helpid": "4020", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D2F90", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# AAP processors parked", - "format": "single", - "helpid": "4038", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4500", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# CP processors online", - "format": "single", - "helpid": "4064", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0D20", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# CP processors parked", - "format": "single", - "helpid": "4037", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4510", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# IIP processors online", - "format": "single", - "helpid": "4025", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3610", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# IIP processors parked", - "format": "single", - "helpid": "4039", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4520", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "captured time", - "format": "single", - "helpid": "5124", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3030", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "load average", - "format": "single", - "helpid": "5126", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D30E0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "total time", - "format": "single", - "helpid": "5122", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D31F0", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "total CPU time (job)", - "format": "single", - "helpid": "4214", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D49D0", - "listtype": " ", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "total TCB time (job)", - "format": "single", - "helpid": "4215", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D49F0", - "listtype": " ", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "uncaptured time", - "format": "single", - "helpid": "5123", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3240", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "CPU time (job)", - "format": "single", - "helpid": "4214", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4AD0", - "listtype": " ", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "TCB time (job)", - "format": "single", - "helpid": "4215", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4C30", - "listtype": " ", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "% capping delay by enclave", - "format": "list", - "helpid": "5317", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D2880", - "listtype": "E", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% AAP by enclave", - "format": "list", - "helpid": "5306", - "helpurl": "/gpm/include/metrics.html", + "listtype": "E" + }, { "id": "8D2C10", - "listtype": "E", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% AAP delay by enclave", - "format": "list", - "helpid": "5315", - "helpurl": "/gpm/include/metrics.html", + "listtype": "E" + }, { "id": "8D2C80", - "listtype": "E", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% AAP on CP by enclave", - "format": "list", - "helpid": "5309", - "helpurl": "/gpm/include/metrics.html", + "listtype": "E" + }, { "id": "8D2CB0", - "listtype": "E", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% AAP using by enclave", - "format": "list", - "helpid": "5314", - "helpurl": "/gpm/include/metrics.html", + "listtype": "E" + }, { "id": "8D2D20", - "listtype": "E", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% AAP using on CP by enclave", - "format": "list", - "helpid": "5316", - "helpurl": "/gpm/include/metrics.html", + "listtype": "E" + }, { "id": "8D2D30", - "listtype": "E", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% CP by enclave", - "format": "list", - "helpid": "5303", - "helpurl": "/gpm/include/metrics.html", + "listtype": "E" + }, { "id": "8D2BC0", - "listtype": "E", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% CP delay by enclave", - "format": "list", - "helpid": "5313", - "helpurl": "/gpm/include/metrics.html", + "listtype": "E" + }, { "id": "8D2BD0", - "listtype": "E", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% CP using by enclave", - "format": "list", - "helpid": "5312", - "helpurl": "/gpm/include/metrics.html", + "listtype": "E" + }, { "id": "8D2BE0", - "listtype": "E", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% IIP by enclave", - "format": "list", - "helpid": "5331", - "helpurl": "/gpm/include/metrics.html", + "listtype": "E" + }, { "id": "8D34C0", - "listtype": "E", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% IIP delay by enclave", - "format": "list", - "helpid": "5332", - "helpurl": "/gpm/include/metrics.html", + "listtype": "E" + }, { "id": "8D3540", - "listtype": "E", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% IIP on CP by enclave", - "format": "list", - "helpid": "5333", - "helpurl": "/gpm/include/metrics.html", + "listtype": "E" + }, { "id": "8D3570", - "listtype": "E", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% IIP using by enclave", - "format": "list", - "helpid": "5334", - "helpurl": "/gpm/include/metrics.html", + "listtype": "E" + }, { "id": "8D35F0", - "listtype": "E", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% IIP using on CP by enclave", - "format": "list", - "helpid": "5335", - "helpurl": "/gpm/include/metrics.html", + "listtype": "E" + }, { "id": "8D3600", - "listtype": "E", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "delta AAP on CP seconds by enclave", - "format": "list", - "helpid": "5311", - "helpurl": "/gpm/include/metrics.html", + "listtype": "E" + }, { "id": "8D3050", - "listtype": "E", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "delta AAP seconds by enclave", - "format": "list", - "helpid": "5308", - "helpurl": "/gpm/include/metrics.html", + "listtype": "E" + }, { "id": "8D3060", - "listtype": "E", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "delta CP seconds by enclave", - "format": "list", - "helpid": "5305", - "helpurl": "/gpm/include/metrics.html", + "listtype": "E" + }, { "id": "8D3040", - "listtype": "E", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "delta IIP on CP seconds by enclave", - "format": "list", - "helpid": "5327", - "helpurl": "/gpm/include/metrics.html", + "listtype": "E" + }, { "id": "8D3620", - "listtype": "E", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "delta IIP seconds by enclave", - "format": "list", - "helpid": "5324", - "helpurl": "/gpm/include/metrics.html", + "listtype": "E" + }, { "id": "8D3630", - "listtype": "E", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "total AAP on CP seconds by enclave", - "format": "list", - "helpid": "5310", - "helpurl": "/gpm/include/metrics.html", + "listtype": "E" + }, { "id": "8D3210", - "listtype": "E", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "total AAP seconds by enclave", - "format": "list", - "helpid": "5307", - "helpurl": "/gpm/include/metrics.html", + "listtype": "E" + }, { "id": "8D3220", - "listtype": "E", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "total CP seconds by enclave", - "format": "list", - "helpid": "5304", - "helpurl": "/gpm/include/metrics.html", + "listtype": "E" + }, { "id": "8D3200", - "listtype": "E", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "total IIP on CP seconds by enclave", - "format": "list", - "helpid": "5326", - "helpurl": "/gpm/include/metrics.html", + "listtype": "E" + }, { "id": "8D3640", - "listtype": "E", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "total IIP seconds by enclave", - "format": "list", - "helpid": "5323", - "helpurl": "/gpm/include/metrics.html", + "listtype": "E" + }, { "id": "8D3650", - "listtype": "E", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% appl (total) by job", - "format": "list", - "helpid": "2043", - "helpurl": "/gpm/include/metrics.html", + "listtype": "E" + }, { "id": "8D0610", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% delay (AAP) by job", - "format": "list", - "helpid": "2009", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D33A0", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% delay (CP) by job", - "format": "list", - "helpid": "2009", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D14D0", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% delay (IIP) by job", - "format": "list", - "helpid": "2009", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D33C0", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% delay by job", - "format": "list", - "helpid": "2009", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D01C0", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% eappl (total) by job", - "format": "list", - "helpid": "5121", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D26B0", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% using (AAP) by job", - "format": "list", - "helpid": "2042", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D3440", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% using (CP) by job", - "format": "list", - "helpid": "2042", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D3450", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% using (IIP) by job", - "format": "list", - "helpid": "2042", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D3460", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% using by job", - "format": "list", - "helpid": "2042", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D0510", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% workflow (AAP) by job", - "format": "list", - "helpid": "4014", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D3470", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% workflow (CP) by job", - "format": "list", - "helpid": "4014", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D3480", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% workflow (IIP) by job", - "format": "list", - "helpid": "4014", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D3490", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% workflow by job", - "format": "list", - "helpid": "4014", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D1EB0", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% AAP by job", - "format": "list", - "helpid": "4022", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D2C20", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% AAP on CP by job", - "format": "list", - "helpid": "4024", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D2CC0", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% CP by job", - "format": "list", - "helpid": "4017", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D4770", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% IIP by job", - "format": "list", - "helpid": "4027", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D34E0", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% IIP on CP by job", - "format": "list", - "helpid": "4029", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D3590", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "eappl time by job", - "format": "list", - "helpid": "5125", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D3070", - "listtype": "J", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "total CPU time by job", - "format": "list", - "helpid": "4214", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D49E0", - "listtype": "J", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "total TCB time by job", - "format": "list", - "helpid": "4215", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D4A00", - "listtype": "J", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "CPU time by job", - "format": "list", - "helpid": "4214", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D4AE0", - "listtype": "J", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "TCB time by job", - "format": "list", - "helpid": "4215", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D4C40", - "listtype": "J", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% delay by WLM report class period", - "format": "list", - "helpid": "2009", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D2920", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% of standard CP delay samples by WLM report class period", - "format": "list", - "helpid": "4031", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D3720", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% of total delay samples by WLM report class period", - "format": "list", - "helpid": "4030", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D3770", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% of AAP delay samples by WLM report class period", - "format": "list", - "helpid": "4032", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D37C0", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% of IIP delay samples by WLM report class period", - "format": "list", - "helpid": "4033", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D3810", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% of RG capping delay samples by WLM report class period", - "format": "list", - "helpid": "4034", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D3860", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% using by WLM report class period", - "format": "list", - "helpid": "2042", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D2B50", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% workflow by WLM report class period", - "format": "list", - "helpid": "4014", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D2B90", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% AAP by WLM report class period", - "format": "list", - "helpid": "4021", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D2C40", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% AAP on CP by WLM report class period", - "format": "list", - "helpid": "4023", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D2CE0", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% IIP by WLM report class period", - "format": "list", - "helpid": "4026", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D3500", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% IIP on CP by WLM report class period", - "format": "list", - "helpid": "4028", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D35B0", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# of total delay samples by WLM report class period", - "format": "list", - "helpid": "4036", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D43A0", - "listtype": "K", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "CPU time at promoted DP by WLM report class period", - "format": "list", - "helpid": "4035", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D3EE0", - "listtype": "K", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% appl by uss pid and jobname", - "format": "list", - "helpid": "5150", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D2830", - "listtype": "O", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "total cpu seconds by uss pid and jobname", - "format": "list", - "helpid": "5151", - "helpurl": "/gpm/include/metrics.html", + "listtype": "O" + }, { "id": "8D31E0", - "listtype": "O", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% appl by WLM service class period", - "format": "list", - "helpid": "4009", - "helpurl": "/gpm/include/metrics.html", + "listtype": "O" + }, { "id": "8D2820", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by WLM service class period", - "format": "list", - "helpid": "2009", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D17E0", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% eappl by WLM service class period", - "format": "list", - "helpid": "5120", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D0FC0", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% of standard CP delay samples by WLM service class period", - "format": "list", - "helpid": "4031", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D3740", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% of total delay samples by WLM service class period", - "format": "list", - "helpid": "4030", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D3790", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% of AAP delay samples by WLM service class period", - "format": "list", - "helpid": "4032", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D37E0", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% of IIP delay samples by WLM service class period", - "format": "list", - "helpid": "4033", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D3830", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% of RG capping delay samples by WLM service class period", - "format": "list", - "helpid": "4034", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D3880", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% using by WLM service class period", - "format": "list", - "helpid": "2042", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D1D00", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% workflow by WLM service class period", - "format": "list", - "helpid": "4014", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D1E70", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% AAP by WLM service class period", - "format": "list", - "helpid": "4021", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D2C60", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% AAP on CP by WLM service class period", - "format": "list", - "helpid": "4023", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D2D00", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% IIP by WLM service class period", - "format": "list", - "helpid": "4026", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D3520", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% IIP on CP by WLM service class period", - "format": "list", - "helpid": "4028", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D35D0", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% SRB by WLM service class period", - "format": "list", - "helpid": "4007", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D2D40", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% TCB by WLM service class period", - "format": "list", - "helpid": "4008", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D2D50", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# of total delay samples by WLM service class period", - "format": "list", - "helpid": "4036", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D43C0", - "listtype": "P", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "CPU time at promoted DP by WLM service class period", - "format": "list", - "helpid": "4035", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D3F00", - "listtype": "P", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% appl by WLM report class", - "format": "list", - "helpid": "4009", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D2720", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by WLM report class", - "format": "list", - "helpid": "2009", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D16A0", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% eappl by WLM report class", - "format": "list", - "helpid": "5120", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D27B0", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% of standard CP delay samples by WLM report class", - "format": "list", - "helpid": "4031", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D3710", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% of total delay samples by WLM report class", - "format": "list", - "helpid": "4030", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D3760", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% of AAP delay samples by WLM report class", - "format": "list", - "helpid": "4032", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D37B0", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% of IIP delay samples by WLM report class", - "format": "list", - "helpid": "4033", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D3800", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% of RG capping delay samples by WLM report class", - "format": "list", - "helpid": "4034", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D3850", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% using by WLM report class", - "format": "list", - "helpid": "2042", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D1CA0", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% workflow by WLM report class", - "format": "list", - "helpid": "4014", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D1E30", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% AAP by WLM report class", - "format": "list", - "helpid": "4021", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D2C30", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% AAP on CP by WLM report class", - "format": "list", - "helpid": "4023", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D2CD0", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% IIP by WLM report class", - "format": "list", - "helpid": "4026", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D34F0", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% IIP on CP by WLM report class", - "format": "list", - "helpid": "4028", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D35A0", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% SRB by WLM report class", - "format": "list", - "helpid": "4007", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D26C0", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% TCB by WLM report class", - "format": "list", - "helpid": "4008", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D26F0", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# of total delay samples by WLM report class", - "format": "list", - "helpid": "4036", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D4390", - "listtype": "R", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "CPU time at promoted DP by WLM report class", - "format": "list", - "helpid": "4035", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D3ED0", - "listtype": "R", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% appl by WLM service class", - "format": "list", - "helpid": "4009", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D2730", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by WLM service class", - "format": "list", - "helpid": "2009", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D1740", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% eappl by WLM service class", - "format": "list", - "helpid": "5120", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D27C0", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% of standard CP delay samples by WLM service class", - "format": "list", - "helpid": "4031", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D3730", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% of total delay samples by WLM service class", - "format": "list", - "helpid": "4030", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D3780", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% of AAP delay samples by WLM service class", - "format": "list", - "helpid": "4032", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D37D0", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% of IIP delay samples by WLM service class", - "format": "list", - "helpid": "4033", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D3820", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% of RG capping delay samples by WLM service class", - "format": "list", - "helpid": "4034", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D3870", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% using by WLM service class", - "format": "list", - "helpid": "2042", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D1CD0", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% workflow by WLM service class", - "format": "list", - "helpid": "4014", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D1E50", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% AAP by WLM service class", - "format": "list", - "helpid": "4021", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D2C50", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% AAP on CP by WLM service class", - "format": "list", - "helpid": "4023", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D2CF0", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% IIP by WLM service class", - "format": "list", - "helpid": "4026", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D3510", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% IIP on CP by WLM service class", - "format": "list", - "helpid": "4028", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D35C0", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% SRB by WLM service class", - "format": "list", - "helpid": "4007", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D26D0", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% TCB by WLM service class", - "format": "list", - "helpid": "4008", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D2700", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# of total delay samples by WLM service class", - "format": "list", - "helpid": "4036", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D43B0", - "listtype": "S", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "CPU time at promoted DP by WLM service class", - "format": "list", - "helpid": "4035", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D3EF0", - "listtype": "S", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% appl by WLM workload", - "format": "list", - "helpid": "4009", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D2740", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by WLM workload", - "format": "list", - "helpid": "2009", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D1880", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% eappl by WLM workload", - "format": "list", - "helpid": "5120", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D27D0", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% of standard CP delay samples by WLM workload", - "format": "list", - "helpid": "4031", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D3750", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% of total delay samples by WLM workload", - "format": "list", - "helpid": "4030", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D37A0", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% of AAP delay samples by WLM workload", - "format": "list", - "helpid": "4032", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D37F0", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% of IIP delay samples by WLM workload", - "format": "list", - "helpid": "4033", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D3840", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% of RG capping delay samples by WLM workload", - "format": "list", - "helpid": "4034", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D3890", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% using by WLM workload", - "format": "list", - "helpid": "2042", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D1D30", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% workflow by WLM workload", - "format": "list", - "helpid": "4014", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D1E90", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% AAP by WLM workload", - "format": "list", - "helpid": "4021", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D2C70", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% AAP on CP by WLM workload", - "format": "list", - "helpid": "4023", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D2D10", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% IIP by WLM workload", - "format": "list", - "helpid": "4026", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D3530", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% IIP on CP by WLM workload", - "format": "list", - "helpid": "4028", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D35E0", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% SRB by WLM workload", - "format": "list", - "helpid": "4007", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D26E0", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% TCB by WLM workload", - "format": "list", - "helpid": "4008", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D2710", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# of total delay samples by WLM workload", - "format": "list", - "helpid": "4036", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D43D0", - "listtype": "W", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "CPU time at promoted DP by WLM workload", - "format": "list", - "helpid": "4035", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D3F10", - "listtype": "W", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G"] - } + "listtype": "W" }], "resource": { "attributes": "YES", "expandable": "NO", - "helpurl": "/gpm/include/help/restypes/PROCESSOR.htm", "icon": "rmfproc.gif", "reslabel": "RS26,*,PROCESSOR", "restype": "PROCESSOR" } }, { "metric": [{ - "description": "# of SSCH", - "format": "single", - "helpid": "5600", - "helpurl": "/gpm/include/metrics.html", "id": "8D5AC0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "compression ratio", - "format": "single", - "helpid": "5625", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6F20", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "compression request rate", - "format": "single", - "helpid": "5623", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6F30", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "compression throughput", - "format": "single", - "helpid": "5624", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6F40", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "decompression ratio", - "format": "single", - "helpid": "5628", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6F50", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "decompression request rate", - "format": "single", - "helpid": "5626", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6F60", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "decompression throughput", - "format": "single", - "helpid": "5627", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6F70", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "function pending time", - "format": "single", - "helpid": "5602", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5B30", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "initial command response time", - "format": "single", - "helpid": "5604", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5B40", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "IOP queue time", - "format": "single", - "helpid": "5603", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5C10", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "SSCH rate", - "format": "single", - "helpid": "5601", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5C20", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% partition utilization by card", - "format": "list", - "helpid": "5610", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5A90", - "listtype": "Z", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% total utilization by card", - "format": "list", - "helpid": "5611", - "helpurl": "/gpm/include/metrics.html", + "listtype": "Z" + }, { "id": "8D5AB0", - "listtype": "Z", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average partition response time by card", - "format": "list", - "helpid": "5618", - "helpurl": "/gpm/include/metrics.html", + "listtype": "Z" + }, { "id": "8D5AE0", - "listtype": "Z", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average total response time by card", - "format": "list", - "helpid": "5619", - "helpurl": "/gpm/include/metrics.html", + "listtype": "Z" + }, { "id": "8D5B00", - "listtype": "Z", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average total IOP queue time by card", - "format": "list", - "helpid": "5620", - "helpurl": "/gpm/include/metrics.html", + "listtype": "Z" + }, { "id": "8D5B20", - "listtype": "Z", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "partition byte read rate by card", - "format": "list", - "helpid": "5612", - "helpurl": "/gpm/include/metrics.html", + "listtype": "Z" + }, { "id": "8D5B60", - "listtype": "Z", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "partition byte write rate by card", - "format": "list", - "helpid": "5614", - "helpurl": "/gpm/include/metrics.html", + "listtype": "Z" + }, { "id": "8D5B80", - "listtype": "Z", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "partition request rate by card", - "format": "list", - "helpid": "5616", - "helpurl": "/gpm/include/metrics.html", + "listtype": "Z" + }, { "id": "8D5BA0", - "listtype": "Z", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "total byte read rate by card", - "format": "list", - "helpid": "5613", - "helpurl": "/gpm/include/metrics.html", + "listtype": "Z" + }, { "id": "8D5BC0", - "listtype": "Z", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "total byte write rate by card", - "format": "list", - "helpid": "5615", - "helpurl": "/gpm/include/metrics.html", + "listtype": "Z" + }, { "id": "8D5BE0", - "listtype": "Z", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "total request rate by card", - "format": "list", - "helpid": "5617", - "helpurl": "/gpm/include/metrics.html", + "listtype": "Z" + }, { "id": "8D5C00", - "listtype": "Z", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } + "listtype": "Z" }], "resource": { "attributes": "NO", "expandable": "NO", - "helpurl": "/gpm/include/help/restypes/SCM.htm", "icon": "rmfscm.gif", "reslabel": "RS26,*,SCM", "restype": "SCM" } }, { "metric": [{ - "description": "% partition utilization", - "format": "single", - "helpid": "5610", - "helpurl": "/gpm/include/metrics.html", "id": "8D5A80", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% total utilization", - "format": "single", - "helpid": "5611", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5AA0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average partition response time", - "format": "single", - "helpid": "5618", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5AD0", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average total response time", - "format": "single", - "helpid": "5619", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5AF0", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average total IOP queue time", - "format": "single", - "helpid": "5620", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5B10", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "partition byte read rate", - "format": "single", - "helpid": "5612", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5B50", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "partition byte write rate", - "format": "single", - "helpid": "5614", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5B70", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "partition request rate", - "format": "single", - "helpid": "5616", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5B90", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "total byte read rate", - "format": "single", - "helpid": "5613", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5BB0", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "total byte write rate", - "format": "single", - "helpid": "5615", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5BD0", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "total request rate", - "format": "single", - "helpid": "5617", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5BF0", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } + "listtype": " " }], "resource": { "attributes": "NO", "expandable": "NO", - "helpurl": "/gpm/include/help/restypes/SCM_CARD.htm", "icon": "rmfscmc.gif", "reslabel": "RS26,*,SCM_CARD", "restype": "SCM_CARD" } }, { "metric": [{ - "description": "% available", - "format": "single", - "helpid": "3007", - "helpurl": "/gpm/include/metrics.html", "id": "8D0050", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% not released", - "format": "single", - "helpid": "3008", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0410", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization", - "format": "single", - "helpid": "3009", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0530", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "J"] - } - }, { - "description": "# frames defined", - "format": "single", - "helpid": "3012", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0BC0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# frames not released", - "format": "single", - "helpid": "3010", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0C90", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "J"] - } - }, { - "description": "# frames used", - "format": "single", - "helpid": "3011", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0CE0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "% utilization by job", - "format": "list", - "helpid": "3009", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0540", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# frames not released by job", - "format": "list", - "helpid": "3010", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D0CA0", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# frames used by job", - "format": "list", - "helpid": "3011", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D0CF0", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } + "listtype": "J" }], "resource": { "attributes": "NO", "expandable": "NO", - "helpurl": "/gpm/include/help/restypes/SQA.htm", "icon": "rmfsqa.gif", "reslabel": "RS26,*,SQA", "restype": "SQA" } }, { "metric": [{ - "description": "% cache hits", - "format": "single", - "helpid": "5091", - "helpurl": "/gpm/include/metrics.html", "id": "8D21E0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% cache misses", - "format": "single", - "helpid": "5092", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D2230", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% cache read misses", - "format": "single", - "helpid": "5092", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D2290", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% cache write misses", - "format": "single", - "helpid": "5092", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D22B0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% of read operations", - "format": "single", - "helpid": "5093", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D22D0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "i/o rate", - "format": "single", - "helpid": "5090", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D22F0", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% cache hits by volume", - "format": "list", - "helpid": "5091", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D2220", - "listtype": "V", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% cache misses by volume", - "format": "list", - "helpid": "5092", - "helpurl": "/gpm/include/metrics.html", + "listtype": "V" + }, { "id": "8D2270", - "listtype": "V", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "i/o rate by volume", - "format": "list", - "helpid": "5090", - "helpurl": "/gpm/include/metrics.html", + "listtype": "V" + }, { "id": "8D2320", - "listtype": "V", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "non-cache dasd i/o rate by volume", - "format": "list", - "helpid": "5094", - "helpurl": "/gpm/include/metrics.html", + "listtype": "V" + }, { "id": "8D2350", - "listtype": "V", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } + "listtype": "V" }], "resource": { "attributes": "YES", "expandable": "NO", - "helpurl": "/gpm/include/help/restypes/SSID.htm", "icon": "rmfssid.gif", "reslabel": "RS26,*,SSID", "restype": "SSID" } }, { "metric": [{ - "description": "% delay", - "format": "single", - "helpid": "2010", - "helpurl": "/gpm/include/metrics.html", "id": "8D0130", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "J", "W", "S", "P", "R"] - } - }, { - "description": "% delay for COMM", - "format": "single", - "helpid": "3003", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0280", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["J", "W", "S", "P", "R"] - } - }, { - "description": "% delay for LOCL", - "format": "single", - "helpid": "3004", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D02A0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["J", "W", "S", "P", "R"] - } - }, { - "description": "% delay for OTHR", - "format": "single", - "helpid": "3005", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D02C0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["J", "W", "S", "P", "R"] - } - }, { - "description": "% delay for OUTR", - "format": "single", - "helpid": "3006", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D02E0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["J", "W", "S", "P", "R"] - } - }, { - "description": "% delay for SWAP", - "format": "single", - "helpid": "3002", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0300", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["J", "W", "S", "P", "R"] - } - }, { - "description": "% high virtual common memory in-use", - "format": "single", - "helpid": "3116", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D41A0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% high virtual shared memory in-use", - "format": "single", - "helpid": "3117", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D41B0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% 1 MB frames used for pageable/DREF memory objects", - "format": "single", - "helpid": "3125", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4550", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% 1 MB frames used from LFAREA maximum", - "format": "single", - "helpid": "3124", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4560", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% 1 MB frames used from LFAREA maximum for fixed 1 MB pages", - "format": "single", - "helpid": "3118", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D41C0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% 1 MB frames used in central storage", - "format": "single", - "helpid": "3142", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5F90", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% 2 GB frames used from LFAREA maximum", - "format": "single", - "helpid": "3141", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5C30", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# bytes (high water mark) in high virtual common memory", - "format": "single", - "helpid": "3110", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D41D0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "# bytes (high water mark) in high virtual shared memory", - "format": "single", - "helpid": "3135", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4CB0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "# bytes in high virtual common memory", - "format": "single", - "helpid": "3107", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4250", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "# bytes in high virtual private memory", - "format": "single", - "helpid": "3109", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4210", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "# bytes in high virtual shared memory", - "format": "single", - "helpid": "3108", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4230", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "# bytes in memory objects", - "format": "single", - "helpid": "3106", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D41F0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "# dedicated memory minimum 2G frames requested", - "format": "single", - "helpid": "3151", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6F80", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "# dedicated memory 1M fixed frames used", - "format": "single", - "helpid": "3149", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6FA0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "# dedicated memory 1M frames not used", - "format": "single", - "helpid": "3145", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6FC0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "# dedicated memory 1M pageable frames used", - "format": "single", - "helpid": "3148", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6FE0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "# dedicated memory 2G fixed frames used", - "format": "single", - "helpid": "3150", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D7000", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "# dedicated memory 2G frames assigned", - "format": "single", - "helpid": "3153", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D7020", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "# dedicated memory 2G frames at IPL time excl system", - "format": "single", - "helpid": "3155", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D7040", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# dedicated memory 2G frames avail for address spaces", - "format": "single", - "helpid": "3158", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D7060", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# dedicated memory 2G frames not used", - "format": "single", - "helpid": "3146", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D7080", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "# dedicated memory 2G frames online", - "format": "single", - "helpid": "3156", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D70A0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# dedicated memory 2G frames online and offline", - "format": "single", - "helpid": "3157", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D70B0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# dedicated memory 2G frames requested", - "format": "single", - "helpid": "3152", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D70E0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "# dedicated memory 4K frames not used", - "format": "single", - "helpid": "3144", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D7100", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "# dedicated memory 4K frames used", - "format": "single", - "helpid": "3147", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D7120", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "# fixed memory objects backed in 1 MB frames", - "format": "single", - "helpid": "3104", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D42A0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "J"] - } - }, { - "description": "# fixed memory objects backed in 2 GB frames", - "format": "single", - "helpid": "3138", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5C40", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "J"] - } - }, { - "description": "# frames active", - "format": "single", - "helpid": "3015", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0B60", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["J", "W", "S", "P", "R"] - } - }, { - "description": "# frames and slots available", - "format": "single", - "helpid": "3044", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D2ED0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# frames fixed", - "format": "single", - "helpid": "3016", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0BD0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["J", "W", "S", "P", "R"] - } - }, { - "description": "# frames fixed above 16 MB (job)", - "format": "single", - "helpid": "4210", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D47E0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "# frames fixed above 2 GB (job)", - "format": "single", - "helpid": "4211", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4800", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "# frames fixed below 16 MB (job)", - "format": "single", - "helpid": "4209", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4820", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "# frames idle", - "format": "single", - "helpid": "3013", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0C30", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["J", "W", "S", "P", "R"] - } - }, { - "description": "# frames total", - "format": "single", - "helpid": "3014", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0CC0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "# frames DIV", - "format": "single", - "helpid": "3017", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0D00", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "# high virtual common memory objects", - "format": "single", - "helpid": "3101", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4350", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "J"] - } - }, { - "description": "# high virtual common memory pages backed in central storage", - "format": "single", - "helpid": "3112", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4270", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# high virtual common memory pages fixed in central storage", - "format": "single", - "helpid": "3113", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4280", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# high virtual common memory AUX slots", - "format": "single", - "helpid": "3114", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4290", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# high virtual private memory objects", - "format": "single", - "helpid": "3103", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D42C0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "# high virtual shared memory objects", - "format": "single", - "helpid": "3102", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D42F0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "J"] - } - }, { - "description": "# high virtual shared memory pages backed in central storage", - "format": "single", - "helpid": "3115", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D42E0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# high virtual shared memory AUX slots", - "format": "single", - "helpid": "3123", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4570", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# memory objects", - "format": "single", - "helpid": "3100", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4310", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "# shared memory objects backed in 1 MB frames", - "format": "single", - "helpid": "3136", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4CD0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "# 1 MB common memory objects with owner no longer active", - "format": "single", - "helpid": "3128", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4620", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# 1 MB common memory pages backed in central storage", - "format": "single", - "helpid": "3127", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4580", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# 1 MB common memory pages with owner no longer active", - "format": "single", - "helpid": "3129", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4630", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# 1 MB fixed pages for 4K page requests", - "format": "single", - "helpid": "3130", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4650", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# 1 MB frames fixed for 1 MB pageable requests", - "format": "single", - "helpid": "3134", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4640", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# 1 MB frames in central storage", - "format": "single", - "helpid": "3143", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5FA0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# 1 MB frames pageable converted to 4K", - "format": "single", - "helpid": "3133", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4600", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# 1 MB frames usable for fixed 1 MB pages", - "format": "single", - "helpid": "3121", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4590", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# 1 MB frames usable for pageable/DREF memory objects", - "format": "single", - "helpid": "3122", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D45A0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# 1 MB frames used for pageable/DREF memory objects", - "format": "single", - "helpid": "3120", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D45B0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "# 1 MB memory objects in high virtual common storage", - "format": "single", - "helpid": "3126", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D45D0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# 1 MB memory objects in high virtual shared storage", - "format": "single", - "helpid": "3137", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4CF0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# 1 MB page-fixed frames", - "format": "single", - "helpid": "3119", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D45E0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "# 1 MB pageable pages failed", - "format": "single", - "helpid": "3132", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4610", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# 1 MB pageable pages for 4K page requests", - "format": "single", - "helpid": "3131", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4660", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# 1 MB pages fixed in central storage", - "format": "single", - "helpid": "3105", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4330", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "J"] - } - }, { - "description": "# 2 GB frames usable for fixed memory objects", - "format": "single", - "helpid": "3140", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5C60", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# 2 GB pages fixed in central storage", - "format": "single", - "helpid": "3139", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5C70", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "J"] - } - }, { - "description": "address space memory limit", - "format": "single", - "helpid": "3111", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D4370", - "listtype": " ", - "unit": "megabytes", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "es rate per residency time", - "format": "single", - "helpid": "3019", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0ED0", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "pgin rate", - "format": "single", - "helpid": "3023", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D1030", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["W", "S", "P", "R"] - } - }, { - "description": "pgin rate per residency time", - "format": "single", - "helpid": "3040", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D1080", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "working set", - "format": "single", - "helpid": "3000", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D1270", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "% delay by enclave", - "format": "list", - "helpid": "5320", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D28C0", - "listtype": "E", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by job", - "format": "list", - "helpid": "2010", - "helpurl": "/gpm/include/metrics.html", + "listtype": "E" + }, { "id": "8D01D0", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% delay for COMM by job", - "format": "list", - "helpid": "3003", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D0290", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% delay for LOCL by job", - "format": "list", - "helpid": "3004", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D02B0", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% delay for OTHR by job", - "format": "list", - "helpid": "3005", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D02D0", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% delay for OUTR by job", - "format": "list", - "helpid": "3006", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D02F0", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% delay for SWAP by job", - "format": "list", - "helpid": "3002", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D0310", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# bytes (high water mark) in high virtual common memory by job", - "format": "list", - "helpid": "3110", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D41E0", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# bytes (high water mark) in high virtual shared memory by job", - "format": "list", - "helpid": "3135", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D4CC0", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# bytes in high virtual common memory by job", - "format": "list", - "helpid": "3107", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D4260", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# bytes in high virtual private memory by job", - "format": "list", - "helpid": "3109", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D4220", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# bytes in high virtual shared memory by job", - "format": "list", - "helpid": "3108", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D4240", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# bytes in memory objects by job", - "format": "list", - "helpid": "3106", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D4200", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# dedicated memory minimum 2G frames requested by job", - "format": "list", - "helpid": "3151", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D6F90", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# dedicated memory 1M fixed frames used by job", - "format": "list", - "helpid": "3149", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D6FB0", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# dedicated memory 1M frames not used by job", - "format": "list", - "helpid": "3145", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D6FD0", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# dedicated memory 1M pageable frames used by job", - "format": "list", - "helpid": "3148", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D6FF0", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# dedicated memory 2G fixed frames used by job", - "format": "list", - "helpid": "3150", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D7010", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# dedicated memory 2G frames assigned by job", - "format": "list", - "helpid": "3153", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D7030", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# dedicated memory 2G frames not used by job", - "format": "list", - "helpid": "3146", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D7090", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# dedicated memory 2G frames requested by job", - "format": "list", - "helpid": "3152", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D70F0", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# dedicated memory 4K frames not used by job", - "format": "list", - "helpid": "3144", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D7110", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# dedicated memory 4K frames used by job", - "format": "list", - "helpid": "3147", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D7130", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# fixed memory objects backed in 1 MB frames by job", - "format": "list", - "helpid": "3104", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D42B0", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# fixed memory objects backed in 2 GB frames by job", - "format": "list", - "helpid": "3138", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D5C50", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# frames active by job", - "format": "list", - "helpid": "3015", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D0B70", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# frames fixed above 16 MB by job", - "format": "list", - "helpid": "4210", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D47F0", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# frames fixed above 2 GB by job", - "format": "list", - "helpid": "4211", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D4810", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# frames fixed below 16 MB by job", - "format": "list", - "helpid": "4209", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D4830", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# frames fixed by job", - "format": "list", - "helpid": "3016", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D0BE0", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# frames idle by job", - "format": "list", - "helpid": "3013", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D0C40", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# frames total by job", - "format": "list", - "helpid": "3014", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D0CD0", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# frames DIV by job", - "format": "list", - "helpid": "3017", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D0D10", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# high virtual common memory objects by job", - "format": "list", - "helpid": "3101", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D4360", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# high virtual private memory objects by job", - "format": "list", - "helpid": "3103", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D42D0", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# high virtual shared memory objects by job", - "format": "list", - "helpid": "3102", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D4300", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# memory objects by job", - "format": "list", - "helpid": "3100", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D4320", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# shared memory objects backed in 1 MB frames by job", - "format": "list", - "helpid": "3136", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D4CE0", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# 1 MB frames used for pageable/DREF memory objects by job", - "format": "list", - "helpid": "3120", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D45C0", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# 1 MB page-fixed frames by job", - "format": "list", - "helpid": "3119", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D45F0", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# 1 MB pages fixed in central storage by job", - "format": "list", - "helpid": "3105", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D4340", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# 2 GB pages fixed in central storage by job", - "format": "list", - "helpid": "3139", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D5C80", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "address space memory limit by job", - "format": "list", - "helpid": "3111", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D4380", - "listtype": "J", - "unit": "megabytes", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "es rate per residency time by job", - "format": "list", - "helpid": "3019", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D0EE0", - "listtype": "J", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "pgin rate per residency time by job", - "format": "list", - "helpid": "3040", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D1090", - "listtype": "J", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "working set by job", - "format": "list", - "helpid": "3000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D1280", - "listtype": "J", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% delay by WLM report class period", - "format": "list", - "helpid": "2010", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D2930", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for COMM by WLM report class period", - "format": "list", - "helpid": "3003", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D29E0", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for LOCL by WLM report class period", - "format": "list", - "helpid": "3004", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D29F0", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for OTHR by WLM report class period", - "format": "list", - "helpid": "3005", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D2A00", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for OUTR by WLM report class period", - "format": "list", - "helpid": "3006", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D2A10", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for SWAP by WLM report class period", - "format": "list", - "helpid": "3002", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D2A20", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# frames active by WLM report class period", - "format": "list", - "helpid": "3015", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D2EC0", - "listtype": "K", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# frames fixed by WLM report class period", - "format": "list", - "helpid": "3016", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D2EF0", - "listtype": "K", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# frames idle by WLM report class period", - "format": "list", - "helpid": "3013", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D2F00", - "listtype": "K", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "pgin rate by WLM report class period", - "format": "list", - "helpid": "3023", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D3120", - "listtype": "K", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by WLM service class period", - "format": "list", - "helpid": "2010", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D17F0", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for COMM by WLM service class period", - "format": "list", - "helpid": "3003", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D1900", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for LOCL by WLM service class period", - "format": "list", - "helpid": "3004", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D1940", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for OTHR by WLM service class period", - "format": "list", - "helpid": "3005", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D1980", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for OUTR by WLM service class period", - "format": "list", - "helpid": "3006", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D19C0", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for SWAP by WLM service class period", - "format": "list", - "helpid": "3002", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D1A00", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# frames active by WLM service class period", - "format": "list", - "helpid": "3015", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D0BA0", - "listtype": "P", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# frames fixed by WLM service class period", - "format": "list", - "helpid": "3016", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D0C10", - "listtype": "P", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# frames idle by WLM service class period", - "format": "list", - "helpid": "3013", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D0C70", - "listtype": "P", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "pgin rate by WLM service class period", - "format": "list", - "helpid": "3023", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D1060", - "listtype": "P", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by WLM report class", - "format": "list", - "helpid": "2010", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D16B0", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for COMM by WLM report class", - "format": "list", - "helpid": "3003", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D18E0", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for LOCL by WLM report class", - "format": "list", - "helpid": "3004", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D1920", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for OTHR by WLM report class", - "format": "list", - "helpid": "3005", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D1960", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for OUTR by WLM report class", - "format": "list", - "helpid": "3006", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D19A0", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for SWAP by WLM report class", - "format": "list", - "helpid": "3002", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D19E0", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# frames active by WLM report class", - "format": "list", - "helpid": "3015", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D0B80", - "listtype": "R", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# frames fixed by WLM report class", - "format": "list", - "helpid": "3016", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D0BF0", - "listtype": "R", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# frames idle by WLM report class", - "format": "list", - "helpid": "3013", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D0C50", - "listtype": "R", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "pgin rate by WLM report class", - "format": "list", - "helpid": "3023", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D1040", - "listtype": "R", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by WLM service class", - "format": "list", - "helpid": "2010", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D1750", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for COMM by WLM service class", - "format": "list", - "helpid": "3003", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D18F0", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for LOCL by WLM service class", - "format": "list", - "helpid": "3004", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D1930", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for OTHR by WLM service class", - "format": "list", - "helpid": "3005", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D1970", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for OUTR by WLM service class", - "format": "list", - "helpid": "3006", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D19B0", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for SWAP by WLM service class", - "format": "list", - "helpid": "3002", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D19F0", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# frames active by WLM service class", - "format": "list", - "helpid": "3015", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D0B90", - "listtype": "S", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# frames fixed by WLM service class", - "format": "list", - "helpid": "3016", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D0C00", - "listtype": "S", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# frames idle by WLM service class", - "format": "list", - "helpid": "3013", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D0C60", - "listtype": "S", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "pgin rate by WLM service class", - "format": "list", - "helpid": "3023", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D1050", - "listtype": "S", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by WLM workload", - "format": "list", - "helpid": "2010", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D1890", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for COMM by WLM workload", - "format": "list", - "helpid": "3003", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D1910", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for LOCL by WLM workload", - "format": "list", - "helpid": "3004", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D1950", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for OTHR by WLM workload", - "format": "list", - "helpid": "3005", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D1990", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for OUTR by WLM workload", - "format": "list", - "helpid": "3006", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D19D0", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for SWAP by WLM workload", - "format": "list", - "helpid": "3002", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D1A10", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# frames active by WLM workload", - "format": "list", - "helpid": "3015", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D0BB0", - "listtype": "W", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# frames fixed by WLM workload", - "format": "list", - "helpid": "3016", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D0C20", - "listtype": "W", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# frames idle by WLM workload", - "format": "list", - "helpid": "3013", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D0C80", - "listtype": "W", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "pgin rate by WLM workload", - "format": "list", - "helpid": "3023", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D1070", - "listtype": "W", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } + "listtype": "W" }], "resource": { "attributes": "NO", "expandable": "YES", - "helpurl": "/gpm/include/help/restypes/STORAGE.htm", "icon": "rmfstora.gif", "reslabel": "RS26,*,STORAGE", "restype": "STORAGE" } }, { "metric": [{ - "description": "% delay", - "format": "single", - "helpid": "2011", - "helpurl": "/gpm/include/metrics.html", "id": "8D0140", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "J", "W", "S", "P", "R"] - } - }, { - "description": "% delay by job", - "format": "list", - "helpid": "2011", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D01E0", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% delay by WLM report class period", - "format": "list", - "helpid": "2011", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D2940", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by WLM service class period", - "format": "list", - "helpid": "2011", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D1800", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by WLM report class", - "format": "list", - "helpid": "2011", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D16C0", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by WLM service class", - "format": "list", - "helpid": "2011", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D1760", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by WLM workload", - "format": "list", - "helpid": "2011", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D18A0", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } + "listtype": "W" }], "resource": { "attributes": "NO", "expandable": "YES", - "helpurl": "/gpm/include/help/restypes/SW_SUBSYSTEMS.htm", "icon": "rmfswsub.gif", "reslabel": "RS26,*,SW_SUBSYSTEMS", "restype": "SW_SUBSYSTEMS" } }, { "metric": [{ - "description": "% delay", - "format": "single", - "helpid": "2013", - "helpurl": "/gpm/include/metrics.html", "id": "8D0160", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P", "R"] - } - }, { - "description": "% delay for enqueue", - "format": "single", - "helpid": "2004", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D1A20", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P", "R"] - } - }, { - "description": "% delay for i/o", - "format": "single", - "helpid": "2030", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D1A80", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P", "R"] - } - }, { - "description": "% delay for operator", - "format": "single", - "helpid": "2008", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D1AE0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P", "R"] - } - }, { - "description": "% delay for processor", - "format": "single", - "helpid": "2009", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D1B40", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P", "R"] - } - }, { - "description": "% delay for storage", - "format": "single", - "helpid": "2010", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D1BA0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P", "R"] - } - }, { - "description": "% delay for swsub", - "format": "single", - "helpid": "2011", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D1C00", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P", "R"] - } - }, { - "description": "% using", - "format": "single", - "helpid": "2015", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D04A0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P", "R"] - } - }, { - "description": "% using for i/o", - "format": "single", - "helpid": "2020", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D1D40", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P", "R"] - } - }, { - "description": "% using for processor", - "format": "single", - "helpid": "2042", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D1DB0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P", "R"] - } - }, { - "description": "% workflow", - "format": "single", - "helpid": "4004", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0550", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P", "R"] - } - }, { - "description": "% workflow for i/o", - "format": "single", - "helpid": "4015", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D1ED0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P", "R"] - } - }, { - "description": "% workflow for processor", - "format": "single", - "helpid": "4014", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D1F30", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P", "R"] - } - }, { - "description": "# active users", - "format": "single", - "helpid": "4006", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0620", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P", "R"] - } - }, { - "description": "# delayed i/o requests", - "format": "single", - "helpid": "2039", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0680", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# users", - "format": "single", - "helpid": "4010", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0D50", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P", "R"] - } - }, { - "description": "active time", - "format": "single", - "helpid": "5008", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0E40", - "listtype": " ", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["W", "S", "P", "R"] - } - }, { - "description": "active time (ms)", - "format": "single", - "helpid": "5008", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5DF0", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["W", "S", "P", "R"] - } - }, { - "description": "delayed i/o request rate", - "format": "single", - "helpid": "2040", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0EB0", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "execution velocity", - "format": "single", - "helpid": "4000", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0F00", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["W", "S", "P", "R"] - } - }, { - "description": "execution velocity goal", - "format": "single", - "helpid": "5001", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0FA0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["P"] - } - }, { - "description": "i/o activity rate", - "format": "single", - "helpid": "2021", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0E90", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "percentile achieving response time goal", - "format": "single", - "helpid": "5004", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0FE0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["P"] - } - }, { - "description": "performance index", - "format": "single", - "helpid": "5002", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D1000", - "listtype": " ", - "unit": "index", - "workscopesSupported": { - "workscopeType": ["P"] - } - }, { - "description": "queue time", - "format": "single", - "helpid": "5006", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D10A0", - "listtype": " ", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["W", "S", "P", "R"] - } - }, { - "description": "queue time (ms)", - "format": "single", - "helpid": "5006", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5E50", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["W", "S", "P", "R"] - } - }, { - "description": "response time", - "format": "single", - "helpid": "5005", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D1110", - "listtype": " ", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["W", "S", "P", "R"] - } - }, { - "description": "response time (ms)", - "format": "single", - "helpid": "5005", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5EC0", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["W", "S", "P", "R"] - } - }, { - "description": "response time goal", - "format": "single", - "helpid": "5010", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D11B0", - "listtype": " ", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["P"] - } - }, { - "description": "response time goal (ms)", - "format": "single", - "helpid": "5010", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5F70", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["P"] - } - }, { - "description": "response time goal percentile", - "format": "single", - "helpid": "5011", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D11D0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["P"] - } - }, { - "description": "service rate", - "format": "single", - "helpid": "5012", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D1FB0", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G", "S"] - } - }, { - "description": "service units / transaction", - "format": "single", - "helpid": "5009", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D11F0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "S"] - } - }, { - "description": "transaction ended rate", - "format": "single", - "helpid": "5007", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D1200", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P", "R"] - } - }, { - "description": "% total physical utilization (AAP) by partition", - "format": "list", - "helpid": "5113", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3310", - "listtype": "A", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% total physical utilization (CP) by partition", - "format": "list", - "helpid": "5113", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D2560", - "listtype": "A", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% total physical utilization (ICF) by partition", - "format": "list", - "helpid": "5113", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D32E0", - "listtype": "A", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% total physical utilization (IFL) by partition", - "format": "list", - "helpid": "5113", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D3340", - "listtype": "A", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% total physical utilization (IIP) by partition", - "format": "list", - "helpid": "5113", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D3400", - "listtype": "A", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% weight of max by partition", - "format": "list", - "helpid": "5102", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D25B0", - "listtype": "A", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% MT CP core productivity by partition", - "format": "list", - "helpid": "4063", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D47B0", - "listtype": "A", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% MT IIP core productivity by partition", - "format": "list", - "helpid": "4062", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D47D0", - "listtype": "A", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% WLM capping by partition", - "format": "list", - "helpid": "5103", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D24A0", - "listtype": "A", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "actual MSU (CP) by partition", - "format": "list", - "helpid": "5106", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D25F0", - "listtype": "A", - "unit": "rate per hour", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "available capacity (MSU/h) for group by partition", - "format": "list", - "helpid": "5138", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D43F0", - "listtype": "A", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average thread density for CP by partition", - "format": "list", - "helpid": "4051", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D4AA0", - "listtype": "A", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average thread density for IIP by partition", - "format": "list", - "helpid": "4050", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D4AC0", - "listtype": "A", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "defined capacity group limit (MSU/h) by partition", - "format": "list", - "helpid": "4048", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D4540", - "listtype": "A", - "unit": "rate per hour", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "four hour MSU average by partition", - "format": "list", - "helpid": "5104", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D2640", - "listtype": "A", - "unit": "rate per hour", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "image capacity (MSU/h) by partition", - "format": "list", - "helpid": "5101", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D2670", - "listtype": "A", - "unit": "rate per hour", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "remaining time until capping in seconds by partition", - "format": "list", - "helpid": "5115", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D2690", - "listtype": "A", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "remaining time until group capping in seconds by partition", - "format": "list", - "helpid": "5137", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D4470", - "listtype": "A", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "MT capacity factor for CP by partition", - "format": "list", - "helpid": "4054", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D4B20", - "listtype": "A", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "MT capacity factor for IIP by partition", - "format": "list", - "helpid": "4053", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D4B40", - "listtype": "A", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "MT maximum capacity factor for CP by partition", - "format": "list", - "helpid": "4057", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D4B80", - "listtype": "A", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "MT maximum capacity factor for IIP by partition", - "format": "list", - "helpid": "4056", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D4BA0", - "listtype": "A", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "MT mode for CP by partition", - "format": "list", - "helpid": "4060", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D4BE0", - "listtype": "A", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "MT mode for IIP by partition", - "format": "list", - "helpid": "4059", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D4C00", - "listtype": "A", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% appl (total) by job", - "format": "list", - "helpid": "2043", - "helpurl": "/gpm/include/metrics.html", + "listtype": "A" + }, { "id": "8D2760", - "listtype": "B", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% eappl (total) by job", - "format": "list", - "helpid": "5121", - "helpurl": "/gpm/include/metrics.html", + "listtype": "B" + }, { "id": "8D27A0", - "listtype": "B", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% AAP by job", - "format": "list", - "helpid": "4022", - "helpurl": "/gpm/include/metrics.html", + "listtype": "B" + }, { "id": "8D2A30", - "listtype": "B", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% AAP on CP by job", - "format": "list", - "helpid": "4024", - "helpurl": "/gpm/include/metrics.html", + "listtype": "B" + }, { "id": "8D2A80", - "listtype": "B", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% CP by job", - "format": "list", - "helpid": "4017", - "helpurl": "/gpm/include/metrics.html", + "listtype": "B" + }, { "id": "8D4760", - "listtype": "B", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% CSA utilization by job", - "format": "list", - "helpid": "3009", - "helpurl": "/gpm/include/metrics.html", + "listtype": "B" + }, { "id": "8D2420", - "listtype": "B", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% ECSA utilization by job", - "format": "list", - "helpid": "3009", - "helpurl": "/gpm/include/metrics.html", + "listtype": "B" + }, { "id": "8D2440", - "listtype": "B", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% ESQA utilization by job", - "format": "list", - "helpid": "3009", - "helpurl": "/gpm/include/metrics.html", + "listtype": "B" + }, { "id": "8D2460", - "listtype": "B", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% IIP by job", - "format": "list", - "helpid": "4027", - "helpurl": "/gpm/include/metrics.html", + "listtype": "B" + }, { "id": "8D34D0", - "listtype": "B", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% IIP on CP by job", - "format": "list", - "helpid": "4029", - "helpurl": "/gpm/include/metrics.html", + "listtype": "B" + }, { "id": "8D3580", - "listtype": "B", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% SQA utilization by job", - "format": "list", - "helpid": "3009", - "helpurl": "/gpm/include/metrics.html", + "listtype": "B" + }, { "id": "8D2480", - "listtype": "B", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# qscan requests by job", - "format": "list", - "helpid": "4203", - "helpurl": "/gpm/include/metrics.html", + "listtype": "B" + }, { "id": "8D4850", - "listtype": "B", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# qscan resources by job", - "format": "list", - "helpid": "4205", - "helpurl": "/gpm/include/metrics.html", + "listtype": "B" + }, { "id": "8D4880", - "listtype": "B", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# qscan resources standard deviation by job", - "format": "list", - "helpid": "4206", - "helpurl": "/gpm/include/metrics.html", + "listtype": "B" + }, { "id": "8D48B0", - "listtype": "B", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# qscan specific requests by job", - "format": "list", - "helpid": "4204", - "helpurl": "/gpm/include/metrics.html", + "listtype": "B" + }, { "id": "8D48E0", - "listtype": "B", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "# transactions by job", - "format": "list", - "helpid": "4202", - "helpurl": "/gpm/include/metrics.html", + "listtype": "B" + }, { "id": "8D4910", - "listtype": "B", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "qscan request time by job", - "format": "list", - "helpid": "4207", - "helpurl": "/gpm/include/metrics.html", + "listtype": "B" + }, { "id": "8D4960", - "listtype": "B", - "unit": "microseconds", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "qscan request time standard deviation by job", - "format": "list", - "helpid": "4208", - "helpurl": "/gpm/include/metrics.html", + "listtype": "B" + }, { "id": "8D4990", - "listtype": "B", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "transaction active time by job", - "format": "list", - "helpid": "4200", - "helpurl": "/gpm/include/metrics.html", + "listtype": "B" + }, { "id": "8D4A20", - "listtype": "B", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "transaction resident time by job", - "format": "list", - "helpid": "4201", - "helpurl": "/gpm/include/metrics.html", + "listtype": "B" + }, { "id": "8D4A50", - "listtype": "B", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% partition utilization by channel path", - "format": "list", - "helpid": "2000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "B" + }, { "id": "8D0070", - "listtype": "C", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% total utilization by channel path", - "format": "list", - "helpid": "2001", - "helpurl": "/gpm/include/metrics.html", + "listtype": "C" + }, { "id": "8D0090", - "listtype": "C", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by dataset name", - "format": "list", - "helpid": "5081", - "helpurl": "/gpm/include/metrics.html", + "listtype": "C" + }, { "id": "8D2040", - "listtype": "D", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% using by dataset name", - "format": "list", - "helpid": "5080", - "helpurl": "/gpm/include/metrics.html", + "listtype": "D" + }, { "id": "8D2090", - "listtype": "D", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% augmented space in use by coupling facility", - "format": "list", - "helpid": "5075", - "helpurl": "/gpm/include/metrics.html", + "listtype": "D" + }, { "id": "8D4680", - "listtype": "F", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% processor utilization by coupling facility", - "format": "list", - "helpid": "5050", - "helpurl": "/gpm/include/metrics.html", + "listtype": "F" + }, { "id": "8D2070", - "listtype": "F", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% storage class memory in-use by coupling facility", - "format": "list", - "helpid": "5072", - "helpurl": "/gpm/include/metrics.html", + "listtype": "F" + }, { "id": "8D46A0", - "listtype": "F", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# frames available by coupling facility", - "format": "list", - "helpid": "5054", - "helpurl": "/gpm/include/metrics.html", + "listtype": "F" + }, { "id": "8D2010", - "listtype": "F", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# frames installed by coupling facility", - "format": "list", - "helpid": "5053", - "helpurl": "/gpm/include/metrics.html", + "listtype": "F" + }, { "id": "8D2030", - "listtype": "F", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# of bytes available for augmented space by coupling facility", - "format": "list", - "helpid": "5074", - "helpurl": "/gpm/include/metrics.html", + "listtype": "F" + }, { "id": "8D46C0", - "listtype": "F", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# of bytes available for storage class memory by coupling facility", - "format": "list", - "helpid": "5071", - "helpurl": "/gpm/include/metrics.html", + "listtype": "F" + }, { "id": "8D46E0", - "listtype": "F", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# of bytes configured for augmented space by coupling facility", - "format": "list", - "helpid": "5073", - "helpurl": "/gpm/include/metrics.html", + "listtype": "F" + }, { "id": "8D4700", - "listtype": "F", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# of bytes configured for storage class memory by coupling facility", - "format": "list", - "helpid": "5070", - "helpurl": "/gpm/include/metrics.html", + "listtype": "F" + }, { "id": "8D4720", - "listtype": "F", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# of maximum bytes for storage class memory by coupling facility", - "format": "list", - "helpid": "5076", - "helpurl": "/gpm/include/metrics.html", + "listtype": "F" + }, { "id": "8D4740", - "listtype": "F", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "total request rate by coupling facility", - "format": "list", - "helpid": "5052", - "helpurl": "/gpm/include/metrics.html", + "listtype": "F" + }, { "id": "8D21B0", - "listtype": "F", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% read (in I/O rate) (sysplex) by aggregate", - "format": "list", - "helpid": "5558", - "helpurl": "/gpm/include/metrics.html", + "listtype": "F" + }, { "id": "8D4FF0", - "listtype": "G", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% read (in I/O rate) by aggregate", - "format": "list", - "helpid": "5558", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5000", - "listtype": "G", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% space used (sysplex) by aggregate", - "format": "list", - "helpid": "5555", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5020", - "listtype": "G", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% space used by aggregate", - "format": "list", - "helpid": "5555", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5030", - "listtype": "G", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# cancelled operations (sysplex) by aggregate", - "format": "list", - "helpid": "5580", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5050", - "listtype": "G", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# cancelled operations by aggregate", - "format": "list", - "helpid": "5580", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5060", - "listtype": "G", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# disk I/O errors (sysplex) by aggregate", - "format": "list", - "helpid": "5578", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5080", - "listtype": "G", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# disk I/O errors by aggregate", - "format": "list", - "helpid": "5578", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5090", - "listtype": "G", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# open objects (sysplex) by aggregate", - "format": "list", - "helpid": "5563", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D50B0", - "listtype": "G", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# open objects by aggregate", - "format": "list", - "helpid": "5563", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D50C0", - "listtype": "G", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# tokens (sysplex) by aggregate", - "format": "list", - "helpid": "5564", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D50E0", - "listtype": "G", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# tokens by aggregate", - "format": "list", - "helpid": "5564", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D50F0", - "listtype": "G", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# vnodes (sysplex) by aggregate", - "format": "list", - "helpid": "5561", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5110", - "listtype": "G", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# vnodes by aggregate", - "format": "list", - "helpid": "5561", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5120", - "listtype": "G", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# ENOSPC errors (sysplex) by aggregate", - "format": "list", - "helpid": "5577", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5140", - "listtype": "G", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# ENOSPC errors by aggregate", - "format": "list", - "helpid": "5577", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5150", - "listtype": "G", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# USS held vnodes (sysplex) by aggregate", - "format": "list", - "helpid": "5562", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5170", - "listtype": "G", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# USS held vnodes by aggregate", - "format": "list", - "helpid": "5562", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5180", - "listtype": "G", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# XCF communication failures (sysplex) by aggregate", - "format": "list", - "helpid": "5579", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D51A0", - "listtype": "G", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# XCF communication failures by aggregate", - "format": "list", - "helpid": "5579", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D51B0", - "listtype": "G", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# 4K pages in user cache (sysplex) by aggregate", - "format": "list", - "helpid": "5565", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D51D0", - "listtype": "G", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# 4K pages in user cache by aggregate", - "format": "list", - "helpid": "5565", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D51E0", - "listtype": "G", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# 8K pages in metadata cache (sysplex) by aggregate", - "format": "list", - "helpid": "5566", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5200", - "listtype": "G", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# 8K pages in metadata cache by aggregate", - "format": "list", - "helpid": "5566", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5210", - "listtype": "G", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "aggregate read rate (sysplex) by aggregate", - "format": "list", - "helpid": "5571", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5230", - "listtype": "G", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "aggregate read rate by aggregate", - "format": "list", - "helpid": "5571", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5240", - "listtype": "G", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "aggregate write rate (sysplex) by aggregate", - "format": "list", - "helpid": "5576", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5260", - "listtype": "G", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "aggregate write rate by aggregate", - "format": "list", - "helpid": "5576", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5270", - "listtype": "G", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "application read rate (sysplex) by aggregate", - "format": "list", - "helpid": "5567", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5290", - "listtype": "G", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "application read rate by aggregate", - "format": "list", - "helpid": "5567", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D52A0", - "listtype": "G", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "application read response time (sysplex) by aggregate", - "format": "list", - "helpid": "5568", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D52C0", - "listtype": "G", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "application read response time by aggregate", - "format": "list", - "helpid": "5568", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D52D0", - "listtype": "G", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "application write rate (sysplex) by aggregate", - "format": "list", - "helpid": "5572", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D52F0", - "listtype": "G", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "application write rate by aggregate", - "format": "list", - "helpid": "5572", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5300", - "listtype": "G", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "application write response time (sysplex) by aggregate", - "format": "list", - "helpid": "5573", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5320", - "listtype": "G", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "application write response time by aggregate", - "format": "list", - "helpid": "5573", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5330", - "listtype": "G", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "maximum size (sysplex) by aggregate", - "format": "list", - "helpid": "5554", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5350", - "listtype": "G", - "unit": "bytes", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "maximum size by aggregate", - "format": "list", - "helpid": "5554", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5360", - "listtype": "G", - "unit": "bytes", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "response time (read + write) (sysplex) by aggregate", - "format": "list", - "helpid": "5557", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5380", - "listtype": "G", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "response time (read + write) by aggregate", - "format": "list", - "helpid": "5557", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5390", - "listtype": "G", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "I/O rate (read + write) (sysplex) by aggregate", - "format": "list", - "helpid": "5556", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5970", - "listtype": "G", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "I/O rate (read + write) by aggregate", - "format": "list", - "helpid": "5556", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5980", - "listtype": "G", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "XCF rate (read + write) (sysplex) by aggregate", - "format": "list", - "helpid": "5559", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D59A0", - "listtype": "G", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "XCF rate (read + write) by aggregate", - "format": "list", - "helpid": "5559", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D59B0", - "listtype": "G", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "XCF read rate (sysplex) by aggregate", - "format": "list", - "helpid": "5569", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D59D0", - "listtype": "G", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "XCF read rate by aggregate", - "format": "list", - "helpid": "5569", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D59E0", - "listtype": "G", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "XCF read response time (sysplex) by aggregate", - "format": "list", - "helpid": "5570", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5A00", - "listtype": "G", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "XCF read response time by aggregate", - "format": "list", - "helpid": "5570", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5A10", - "listtype": "G", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "XCF write rate (sysplex) by aggregate", - "format": "list", - "helpid": "5574", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5A30", - "listtype": "G", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "XCF write rate by aggregate", - "format": "list", - "helpid": "5574", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5A40", - "listtype": "G", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "XCF write response time (sysplex) by aggregate", - "format": "list", - "helpid": "5575", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5A60", - "listtype": "G", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "XCF write response time by aggregate", - "format": "list", - "helpid": "5575", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5A70", - "listtype": "G", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by WLM report class period", - "format": "list", - "helpid": "2013", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D2960", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for enqueue by WLM report class period", - "format": "list", - "helpid": "2004", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D2980", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for i/o by WLM report class period", - "format": "list", - "helpid": "2030", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D2990", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for operator by WLM report class period", - "format": "list", - "helpid": "2008", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D29A0", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for processor by WLM report class period", - "format": "list", - "helpid": "2009", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D29B0", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for storage by WLM report class period", - "format": "list", - "helpid": "2010", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D29C0", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for swsub by WLM report class period", - "format": "list", - "helpid": "2011", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D29D0", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% using by WLM report class period", - "format": "list", - "helpid": "2015", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D2B30", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% using for i/o by WLM report class period", - "format": "list", - "helpid": "2020", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D2B60", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% using for processor by WLM report class period", - "format": "list", - "helpid": "2042", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D2B70", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% workflow by WLM report class period", - "format": "list", - "helpid": "4004", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D2B80", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% workflow for i/o by WLM report class period", - "format": "list", - "helpid": "4015", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D2BB0", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% workflow for processor by WLM report class period", - "format": "list", - "helpid": "4014", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D7F60", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# active users by WLM report class period", - "format": "list", - "helpid": "4006", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D2D60", - "listtype": "K", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# users by WLM report class period", - "format": "list", - "helpid": "4010", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D2F40", - "listtype": "K", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "active time (ms) by WLM report class period", - "format": "list", - "helpid": "5008", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D5E10", - "listtype": "K", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "active time by WLM report class period", - "format": "list", - "helpid": "5008", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D2FC0", - "listtype": "K", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "execution velocity by WLM report class period", - "format": "list", - "helpid": "4000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D3080", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "percentile achieving response time goal by WLM report class period", - "format": "list", - "helpid": "5004", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D3100", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "performance index by WLM report class period", - "format": "list", - "helpid": "5002", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D3110", - "listtype": "K", - "unit": "index", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "queue time (ms) by WLM report class period", - "format": "list", - "helpid": "5006", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D5E70", - "listtype": "K", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "queue time by WLM report class period", - "format": "list", - "helpid": "5006", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D3130", - "listtype": "K", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "response time (ms) by WLM report class period", - "format": "list", - "helpid": "5005", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D5F00", - "listtype": "K", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "response time by WLM report class period", - "format": "list", - "helpid": "5005", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D31B0", - "listtype": "K", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "transaction ended rate by WLM report class period", - "format": "list", - "helpid": "5007", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D3230", - "listtype": "K", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "wait time (ms) by WLM report class period", - "format": "list", - "helpid": "6000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D6EE0", - "listtype": "K", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# delayed i/o requests by LCU", - "format": "list", - "helpid": "2039", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D0690", - "listtype": "L", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "delayed i/o request rate by LCU", - "format": "list", - "helpid": "2040", - "helpurl": "/gpm/include/metrics.html", + "listtype": "L" + }, { "id": "8D0EC0", - "listtype": "L", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% central storage frames active by MVS image", - "format": "list", - "helpid": "3026", - "helpurl": "/gpm/include/metrics.html", + "listtype": "L" + }, { "id": "8D1650", - "listtype": "M", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by MVS image", - "format": "list", - "helpid": "2013", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D0220", - "listtype": "M", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P", "R"] - } - }, { - "description": "% delay for enqueue by MVS image", - "format": "list", - "helpid": "2004", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D1A70", - "listtype": "M", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P", "R"] - } - }, { - "description": "% delay for i/o by MVS image", - "format": "list", - "helpid": "2030", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D1AD0", - "listtype": "M", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P", "R"] - } - }, { - "description": "% delay for operator by MVS image", - "format": "list", - "helpid": "2008", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D1B30", - "listtype": "M", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P", "R"] - } - }, { - "description": "% delay for processor by MVS image", - "format": "list", - "helpid": "2009", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D1B90", - "listtype": "M", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P", "R"] - } - }, { - "description": "% delay for storage by MVS image", - "format": "list", - "helpid": "2010", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D1BF0", - "listtype": "M", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P", "R"] - } - }, { - "description": "% delay for swsub by MVS image", - "format": "list", - "helpid": "2011", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D1C50", - "listtype": "M", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P", "R"] - } - }, { - "description": "% idle by MVS image", - "format": "list", - "helpid": "2014", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D0400", - "listtype": "M", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% unknown by MVS image", - "format": "list", - "helpid": "2017", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D0490", - "listtype": "M", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% using by MVS image", - "format": "list", - "helpid": "2015", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D0520", - "listtype": "M", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P", "R"] - } - }, { - "description": "% using for i/o by MVS image", - "format": "list", - "helpid": "2020", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D1DA0", - "listtype": "M", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P", "R"] - } - }, { - "description": "% using for processor by MVS image", - "format": "list", - "helpid": "2042", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D1E00", - "listtype": "M", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P", "R"] - } - }, { - "description": "% workflow by MVS image", - "format": "list", - "helpid": "4004", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D0570", - "listtype": "M", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P", "R"] - } - }, { - "description": "% workflow for i/o by MVS image", - "format": "list", - "helpid": "4015", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D1F20", - "listtype": "M", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P", "R"] - } - }, { - "description": "% workflow for processor by MVS image", - "format": "list", - "helpid": "4014", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D1F80", - "listtype": "M", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P", "R"] - } - }, { - "description": "% CPU utilization (CP) by MVS image", - "format": "list", - "helpid": "4005", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D0450", - "listtype": "M", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% CSA utilization by MVS image", - "format": "list", - "helpid": "3009", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D2410", - "listtype": "M", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% ECSA utilization by MVS image", - "format": "list", - "helpid": "3009", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D2430", - "listtype": "M", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% ESQA utilization by MVS image", - "format": "list", - "helpid": "3009", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D2450", - "listtype": "M", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% SQA utilization by MVS image", - "format": "list", - "helpid": "3009", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D2470", - "listtype": "M", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# active users by MVS image", - "format": "list", - "helpid": "4006", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D0630", - "listtype": "M", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# dedicated memory 2G frames at IPL time excl system by MVS image", - "format": "list", - "helpid": "3155", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D7050", - "listtype": "M", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# dedicated memory 2G frames avail for address spaces by MVS image", - "format": "list", - "helpid": "3158", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D7070", - "listtype": "M", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# dedicated memory 2G frames online and offline by MVS image", - "format": "list", - "helpid": "3157", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D70C0", - "listtype": "M", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# dedicated memory 2G frames online by MVS image", - "format": "list", - "helpid": "3156", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D70D0", - "listtype": "M", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# users by MVS image", - "format": "list", - "helpid": "4010", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D0D60", - "listtype": "M", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "execution velocity by MVS image", - "format": "list", - "helpid": "4000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D0F10", - "listtype": "M", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P", "R"] - } - }, { - "description": "response time by MVS image", - "format": "list", - "helpid": "4001", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D1FA0", - "listtype": "M", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["W", "S", "P", "R"] - } - }, { - "description": "transaction ended rate by MVS image", - "format": "list", - "helpid": "5007", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D1210", - "listtype": "M", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P", "R"] - } - }, { - "description": "unreferenced interval count by MVS image", - "format": "list", - "helpid": "3025", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D1FE0", - "listtype": "M", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS % avg response time lock by MVS image", - "format": "list", - "helpid": "5501", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D53B0", - "listtype": "M", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS % avg response time sleep by MVS image", - "format": "list", - "helpid": "5502", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D53D0", - "listtype": "M", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS % avg response time I/O by MVS image", - "format": "list", - "helpid": "5500", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D53F0", - "listtype": "M", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS kernel local request rate by MVS image", - "format": "list", - "helpid": "5590", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D5410", - "listtype": "M", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS kernel local response time by MVS image", - "format": "list", - "helpid": "5594", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D5430", - "listtype": "M", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS kernel local XCF rate by MVS image", - "format": "list", - "helpid": "5592", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D5450", - "listtype": "M", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS kernel remote request rate by MVS image", - "format": "list", - "helpid": "5591", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D5470", - "listtype": "M", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS kernel remote response time by MVS image", - "format": "list", - "helpid": "5595", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D5490", - "listtype": "M", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS kernel remote XCF rate by MVS image", - "format": "list", - "helpid": "5593", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D54B0", - "listtype": "M", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS metadata cache % hit by MVS image", - "format": "list", - "helpid": "5508", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D54D0", - "listtype": "M", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS metadata cache # partial writes by MVS image", - "format": "list", - "helpid": "5546", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D54F0", - "listtype": "M", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS metadata cache # requests by MVS image", - "format": "list", - "helpid": "5544", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D5510", - "listtype": "M", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS metadata cache # updates by MVS image", - "format": "list", - "helpid": "5545", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D5530", - "listtype": "M", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS metadata cache # 8K buffers by MVS image", - "format": "list", - "helpid": "5543", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D5550", - "listtype": "M", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS metadata cache request rate by MVS image", - "format": "list", - "helpid": "5507", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D5570", - "listtype": "M", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS metadata cache size by MVS image", - "format": "list", - "helpid": "5541", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D5590", - "listtype": "M", - "unit": "bytes", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS user cache % delay by MVS image", - "format": "list", - "helpid": "5528", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D55B0", - "listtype": "M", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS user cache % delayed reads by MVS image", - "format": "list", - "helpid": "5521", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D55D0", - "listtype": "M", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS user cache % delayed writes by MVS image", - "format": "list", - "helpid": "5525", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D55F0", - "listtype": "M", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS user cache % hit by MVS image", - "format": "list", - "helpid": "5504", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D5610", - "listtype": "M", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS user cache % read by MVS image", - "format": "list", - "helpid": "5527", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D5630", - "listtype": "M", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS user cache # allocated segments by MVS image", - "format": "list", - "helpid": "5518", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D5650", - "listtype": "M", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS user cache # free pages by MVS image", - "format": "list", - "helpid": "5517", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D5670", - "listtype": "M", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS user cache # fsynchs by MVS image", - "format": "list", - "helpid": "5530", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D5690", - "listtype": "M", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS user cache # page reclaim writes by MVS image", - "format": "list", - "helpid": "5529", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D56B0", - "listtype": "M", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS user cache # pages by MVS image", - "format": "list", - "helpid": "5516", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D56D0", - "listtype": "M", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS user cache read rate by MVS image", - "format": "list", - "helpid": "5519", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D56F0", - "listtype": "M", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS user cache read request % hit by MVS image", - "format": "list", - "helpid": "5520", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D5710", - "listtype": "M", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS user cache read-ahead (async) rate by MVS image", - "format": "list", - "helpid": "5522", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D5730", - "listtype": "M", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS user cache request rate by MVS image", - "format": "list", - "helpid": "5503", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D5750", - "listtype": "M", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS user cache scheduled write rate by MVS image", - "format": "list", - "helpid": "5526", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D5770", - "listtype": "M", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS user cache total size by MVS image", - "format": "list", - "helpid": "5514", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D5790", - "listtype": "M", - "unit": "bytes", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS user cache write rate by MVS image", - "format": "list", - "helpid": "5523", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D57B0", - "listtype": "M", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS user cache write request % hit by MVS image", - "format": "list", - "helpid": "5524", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D57D0", - "listtype": "M", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS vnode cache % hit by MVS image", - "format": "list", - "helpid": "5506", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D57F0", - "listtype": "M", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS vnode cache # allocated vnodes by MVS image", - "format": "list", - "helpid": "5532", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D5810", - "listtype": "M", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS vnode cache # extended vnodes by MVS image", - "format": "list", - "helpid": "5534", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D5830", - "listtype": "M", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS vnode cache # open vnodes by MVS image", - "format": "list", - "helpid": "5536", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D5850", - "listtype": "M", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS vnode cache # requests by MVS image", - "format": "list", - "helpid": "5538", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D5870", - "listtype": "M", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS vnode cache # requests for allocs by MVS image", - "format": "list", - "helpid": "5539", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D5890", - "listtype": "M", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS vnode cache # requests for deletes by MVS image", - "format": "list", - "helpid": "5540", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D58B0", - "listtype": "M", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS vnode cache # USS held vnodes by MVS image", - "format": "list", - "helpid": "5537", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D58D0", - "listtype": "M", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS vnode cache extended vnode size by MVS image", - "format": "list", - "helpid": "5535", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D58F0", - "listtype": "M", - "unit": "bytes", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS vnode cache request rate by MVS image", - "format": "list", - "helpid": "5505", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D5910", - "listtype": "M", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS vnode cache size by MVS image", - "format": "list", - "helpid": "5531", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D5930", - "listtype": "M", - "unit": "bytes", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS vnode cache vnode structure size by MVS image", - "format": "list", - "helpid": "5533", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D5950", - "listtype": "M", - "unit": "bytes", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by dataset name and job", - "format": "list", - "helpid": "5081", - "helpurl": "/gpm/include/metrics.html", + "listtype": "M" + }, { "id": "8D2890", - "listtype": "N", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% using by dataset name and job", - "format": "list", - "helpid": "5080", - "helpurl": "/gpm/include/metrics.html", + "listtype": "N" + }, { "id": "8D2B00", - "listtype": "N", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by WLM service class period", - "format": "list", - "helpid": "2013", - "helpurl": "/gpm/include/metrics.html", + "listtype": "N" + }, { "id": "8D1820", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for enqueue by WLM service class period", - "format": "list", - "helpid": "2004", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D1A50", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for i/o by WLM service class period", - "format": "list", - "helpid": "2030", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D1AB0", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for operator by WLM service class period", - "format": "list", - "helpid": "2008", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D1B10", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for processor by WLM service class period", - "format": "list", - "helpid": "2009", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D1B70", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for storage by WLM service class period", - "format": "list", - "helpid": "2010", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D1BD0", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for swsub by WLM service class period", - "format": "list", - "helpid": "2011", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D1C30", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% using by WLM service class period", - "format": "list", - "helpid": "2015", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D1CE0", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% using for i/o by WLM service class period", - "format": "list", - "helpid": "2020", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D1D80", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% using for processor by WLM service class period", - "format": "list", - "helpid": "2042", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D1DE0", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% workflow by WLM service class period", - "format": "list", - "helpid": "4004", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D05A0", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% workflow for i/o by WLM service class period", - "format": "list", - "helpid": "4015", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D1F00", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% workflow for processor by WLM service class period", - "format": "list", - "helpid": "4014", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D1F60", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# active users by WLM service class period", - "format": "list", - "helpid": "4006", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D0660", - "listtype": "P", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# users by WLM service class period", - "format": "list", - "helpid": "4010", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D0D90", - "listtype": "P", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "active time (ms) by WLM service class period", - "format": "list", - "helpid": "5008", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D5E30", - "listtype": "P", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "active time by WLM service class period", - "format": "list", - "helpid": "5008", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D0E70", - "listtype": "P", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "execution velocity by WLM service class period", - "format": "list", - "helpid": "4000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D0F70", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "execution velocity goal by WLM service class period", - "format": "list", - "helpid": "5001", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D0FB0", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "importance by WLM service class period", - "format": "list", - "helpid": "5095", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D2380", - "listtype": "P", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "percentile achieving response time goal by WLM service class period", - "format": "list", - "helpid": "5004", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D0FF0", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "performance index by important WLM service class period", - "format": "list", - "helpid": "5002", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D1010", - "listtype": "P", - "unit": "index", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "performance index by WLM service class period", - "format": "list", - "helpid": "5002", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D1020", - "listtype": "P", - "unit": "index", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "queue time (ms) by WLM service class period", - "format": "list", - "helpid": "5006", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D5E90", - "listtype": "P", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "queue time by WLM service class period", - "format": "list", - "helpid": "5006", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D10D0", - "listtype": "P", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "response time (ms) by WLM service class period", - "format": "list", - "helpid": "5005", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D5F40", - "listtype": "P", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "response time by WLM service class period", - "format": "list", - "helpid": "5005", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D1180", - "listtype": "P", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "response time goal (ms) by WLM service class period", - "format": "list", - "helpid": "5010", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D5F80", - "listtype": "P", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "response time goal by WLM service class period", - "format": "list", - "helpid": "5010", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D11C0", - "listtype": "P", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "response time goal percentile by WLM service class period", - "format": "list", - "helpid": "5011", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D11E0", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "transaction ended rate by WLM service class period", - "format": "list", - "helpid": "5007", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D1240", - "listtype": "P", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "wait time (ms) by WLM service class period", - "format": "list", - "helpid": "6000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D6F00", - "listtype": "P", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by WLM report class", - "format": "list", - "helpid": "2013", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D16E0", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for enqueue by WLM report class", - "format": "list", - "helpid": "2004", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D1A30", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for i/o by WLM report class", - "format": "list", - "helpid": "2030", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D1A90", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for operator by WLM report class", - "format": "list", - "helpid": "2008", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D1AF0", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for processor by WLM report class", - "format": "list", - "helpid": "2009", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D1B50", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for storage by WLM report class", - "format": "list", - "helpid": "2010", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D1BB0", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for swsub by WLM report class", - "format": "list", - "helpid": "2011", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D1C10", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% using by WLM report class", - "format": "list", - "helpid": "2015", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D1C60", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% using for i/o by WLM report class", - "format": "list", - "helpid": "2020", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D1D60", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% using for processor by WLM report class", - "format": "list", - "helpid": "2042", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D1DC0", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% workflow by WLM report class", - "format": "list", - "helpid": "4004", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D0580", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% workflow for i/o by WLM report class", - "format": "list", - "helpid": "4015", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D1EE0", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% workflow for processor by WLM report class", - "format": "list", - "helpid": "4014", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D1F40", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# active users by WLM report class", - "format": "list", - "helpid": "4006", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D0640", - "listtype": "R", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# users by WLM report class", - "format": "list", - "helpid": "4010", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D0D70", - "listtype": "R", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "active time (ms) by WLM report class", - "format": "list", - "helpid": "5008", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D5E00", - "listtype": "R", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "active time by WLM report class", - "format": "list", - "helpid": "5008", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D0E50", - "listtype": "R", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "execution velocity by WLM report class", - "format": "list", - "helpid": "4000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D0F30", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "queue time (ms) by WLM report class", - "format": "list", - "helpid": "5006", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D5E60", - "listtype": "R", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "queue time by WLM report class", - "format": "list", - "helpid": "5006", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D10B0", - "listtype": "R", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "response time (ms) by WLM report class", - "format": "list", - "helpid": "5005", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D5EE0", - "listtype": "R", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "response time by WLM report class", - "format": "list", - "helpid": "5005", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D1140", - "listtype": "R", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "transaction ended rate by WLM report class", - "format": "list", - "helpid": "5007", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D1220", - "listtype": "R", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "wait time (ms) by WLM report class", - "format": "list", - "helpid": "6000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D6ED0", - "listtype": "R", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by WLM service class", - "format": "list", - "helpid": "2013", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D1780", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for enqueue by WLM service class", - "format": "list", - "helpid": "2004", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D1A40", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for i/o by WLM service class", - "format": "list", - "helpid": "2030", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D1AA0", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for operator by WLM service class", - "format": "list", - "helpid": "2008", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D1B00", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for processor by WLM service class", - "format": "list", - "helpid": "2009", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D1B60", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for storage by WLM service class", - "format": "list", - "helpid": "2010", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D1BC0", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for swsub by WLM service class", - "format": "list", - "helpid": "2011", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D1C20", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% using by WLM service class", - "format": "list", - "helpid": "2015", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D1CB0", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% using for i/o by WLM service class", - "format": "list", - "helpid": "2020", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D1D70", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% using for processor by WLM service class", - "format": "list", - "helpid": "2042", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D1DD0", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% workflow by WLM service class", - "format": "list", - "helpid": "4004", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D0590", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% workflow for i/o by WLM service class", - "format": "list", - "helpid": "4015", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D1EF0", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% workflow for processor by WLM service class", - "format": "list", - "helpid": "4014", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D1F50", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# active users by WLM service class", - "format": "list", - "helpid": "4006", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D0650", - "listtype": "S", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# users by WLM service class", - "format": "list", - "helpid": "4010", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D0D80", - "listtype": "S", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "active time (ms) by WLM service class", - "format": "list", - "helpid": "5008", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D5E20", - "listtype": "S", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "active time by WLM service class", - "format": "list", - "helpid": "5008", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D0E60", - "listtype": "S", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "execution velocity by WLM service class", - "format": "list", - "helpid": "4000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D0F50", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "percentile achieving response time goal by WLM service class", - "format": "list", - "helpid": "5004", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D6E80", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "performance index by WLM service class", - "format": "list", - "helpid": "5013", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D6EB0", - "listtype": "S", - "unit": "index", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "queue time (ms) by WLM service class", - "format": "list", - "helpid": "5006", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D5E80", - "listtype": "S", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "queue time by WLM service class", - "format": "list", - "helpid": "5006", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D10C0", - "listtype": "S", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "response time (ms) by WLM service class", - "format": "list", - "helpid": "5005", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D5F20", - "listtype": "S", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "response time by WLM service class", - "format": "list", - "helpid": "5005", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D1160", - "listtype": "S", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "service rate by WLM service class", - "format": "list", - "helpid": "5012", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D1FC0", - "listtype": "S", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "service units / transaction by WLM service class", - "format": "list", - "helpid": "5009", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D1FD0", - "listtype": "S", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "transaction ended rate by WLM service class", - "format": "list", - "helpid": "5007", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D1230", - "listtype": "S", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "wait time (ms) by WLM service class", - "format": "list", - "helpid": "6000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D6EF0", - "listtype": "S", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% CPU utilization by CF structure", - "format": "list", - "helpid": "5066", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D39D0", - "listtype": "T", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "async request rate by CF structure", - "format": "list", - "helpid": "5056", - "helpurl": "/gpm/include/metrics.html", + "listtype": "T" + }, { "id": "8D20B0", - "listtype": "T", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "async service time by CF structure", - "format": "list", - "helpid": "5058", - "helpurl": "/gpm/include/metrics.html", + "listtype": "T" + }, { "id": "8D20F0", - "listtype": "T", - "unit": "microseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "sync request rate by CF structure", - "format": "list", - "helpid": "5055", - "helpurl": "/gpm/include/metrics.html", + "listtype": "T" + }, { "id": "8D2130", - "listtype": "T", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "sync service time by CF structure", - "format": "list", - "helpid": "5057", - "helpurl": "/gpm/include/metrics.html", + "listtype": "T" + }, { "id": "8D2170", - "listtype": "T", - "unit": "microseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% director port busy by channel path and CU", - "format": "list", - "helpid": "2037", - "helpurl": "/gpm/include/metrics.html", + "listtype": "T" + }, { "id": "8D0340", - "listtype": "U", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% CU busy by channel path and CU", - "format": "list", - "helpid": "2036", - "helpurl": "/gpm/include/metrics.html", + "listtype": "U" + }, { "id": "8D05D0", - "listtype": "U", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% active time by volume", - "format": "list", - "helpid": "2026", - "helpurl": "/gpm/include/metrics.html", + "listtype": "U" + }, { "id": "8D0020", - "listtype": "V", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% connect time by volume", - "format": "list", - "helpid": "2027", - "helpurl": "/gpm/include/metrics.html", + "listtype": "V" + }, { "id": "8D00D0", - "listtype": "V", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay device busy by volume", - "format": "list", - "helpid": "2031", - "helpurl": "/gpm/include/metrics.html", + "listtype": "V" + }, { "id": "8D0250", - "listtype": "V", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% disconnect time by volume", - "format": "list", - "helpid": "2028", - "helpurl": "/gpm/include/metrics.html", + "listtype": "V" + }, { "id": "8D0360", - "listtype": "V", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% pending time by volume", - "format": "list", - "helpid": "2029", - "helpurl": "/gpm/include/metrics.html", + "listtype": "V" + }, { "id": "8D0440", - "listtype": "V", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "i/o activity rate by volume", - "format": "list", - "helpid": "2021", - "helpurl": "/gpm/include/metrics.html", + "listtype": "V" + }, { "id": "8D0EA0", - "listtype": "V", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "i/o intensity by volume", - "format": "list", - "helpid": "2024", - "helpurl": "/gpm/include/metrics.html", + "listtype": "V" + }, { "id": "8D12A0", - "listtype": "V", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "response time by volume", - "format": "list", - "helpid": "2023", - "helpurl": "/gpm/include/metrics.html", + "listtype": "V" + }, { "id": "8D1120", - "listtype": "V", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "IOS queue time by volume", - "format": "list", - "helpid": "2022", - "helpurl": "/gpm/include/metrics.html", + "listtype": "V" + }, { "id": "8D12C0", - "listtype": "V", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by WLM workload", - "format": "list", - "helpid": "2013", - "helpurl": "/gpm/include/metrics.html", + "listtype": "V" + }, { "id": "8D18C0", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for enqueue by WLM workload", - "format": "list", - "helpid": "2004", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D1A60", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for i/o by WLM workload", - "format": "list", - "helpid": "2030", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D1AC0", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for operator by WLM workload", - "format": "list", - "helpid": "2008", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D1B20", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for processor by WLM workload", - "format": "list", - "helpid": "2009", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D1B80", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for storage by WLM workload", - "format": "list", - "helpid": "2010", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D1BE0", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay for swsub by WLM workload", - "format": "list", - "helpid": "2011", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D1C40", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% using by WLM workload", - "format": "list", - "helpid": "2015", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D1D10", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% using for i/o by WLM workload", - "format": "list", - "helpid": "2020", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D1D90", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% using for processor by WLM workload", - "format": "list", - "helpid": "2042", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D1DF0", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% workflow by WLM workload", - "format": "list", - "helpid": "4004", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D05B0", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% workflow for i/o by WLM workload", - "format": "list", - "helpid": "4015", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D1F10", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% workflow for processor by WLM workload", - "format": "list", - "helpid": "4014", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D1F70", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# active users by WLM workload", - "format": "list", - "helpid": "4006", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D0670", - "listtype": "W", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# users by WLM workload", - "format": "list", - "helpid": "4010", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D0DA0", - "listtype": "W", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "active time (ms) by WLM workload", - "format": "list", - "helpid": "5008", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D5E40", - "listtype": "W", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "active time by WLM workload", - "format": "list", - "helpid": "5008", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D0E80", - "listtype": "W", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "execution velocity by WLM workload", - "format": "list", - "helpid": "4000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D0F90", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "queue time (ms) by WLM workload", - "format": "list", - "helpid": "5006", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D5EA0", - "listtype": "W", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "queue time by WLM workload", - "format": "list", - "helpid": "5006", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D10E0", - "listtype": "W", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "response time (ms) by WLM workload", - "format": "list", - "helpid": "5005", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D5F60", - "listtype": "W", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "response time by WLM workload", - "format": "list", - "helpid": "5005", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D11A0", - "listtype": "W", - "unit": "seconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "transaction ended rate by WLM workload", - "format": "list", - "helpid": "5007", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D1250", - "listtype": "W", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "wait time (ms) by WLM workload", - "format": "list", - "helpid": "6000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D6F10", - "listtype": "W", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% total physical utilization (AAP) by CPC", - "format": "list", - "helpid": "5112", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D3320", - "listtype": "X", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% total physical utilization (CP) by CPC", - "format": "list", - "helpid": "5112", - "helpurl": "/gpm/include/metrics.html", + "listtype": "X" + }, { "id": "8D2550", - "listtype": "X", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% total physical utilization (ICF) by CPC", - "format": "list", - "helpid": "5112", - "helpurl": "/gpm/include/metrics.html", + "listtype": "X" + }, { "id": "8D32F0", - "listtype": "X", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% total physical utilization (IFL) by CPC", - "format": "list", - "helpid": "5112", - "helpurl": "/gpm/include/metrics.html", + "listtype": "X" + }, { "id": "8D3350", - "listtype": "X", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% total physical utilization (IIP) by CPC", - "format": "list", - "helpid": "5112", - "helpurl": "/gpm/include/metrics.html", + "listtype": "X" + }, { "id": "8D3410", - "listtype": "X", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% LPAR management time (AAP) for PHYSICAL by CPC", - "format": "list", - "helpid": "5128", - "helpurl": "/gpm/include/metrics.html", + "listtype": "X" + }, { "id": "8D33D0", - "listtype": "X", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% LPAR management time (CP) for PHYSICAL by CPC", - "format": "list", - "helpid": "5128", - "helpurl": "/gpm/include/metrics.html", + "listtype": "X" + }, { "id": "8D3370", - "listtype": "X", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% LPAR management time (ICF) for PHYSICAL by CPC", - "format": "list", - "helpid": "5128", - "helpurl": "/gpm/include/metrics.html", + "listtype": "X" + }, { "id": "8D3390", - "listtype": "X", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% LPAR management time (IFL) for PHYSICAL by CPC", - "format": "list", - "helpid": "5128", - "helpurl": "/gpm/include/metrics.html", + "listtype": "X" + }, { "id": "8D33F0", - "listtype": "X", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% LPAR management time (IIP) for PHYSICAL by CPC", - "format": "list", - "helpid": "5128", - "helpurl": "/gpm/include/metrics.html", + "listtype": "X" + }, { "id": "8D3430", - "listtype": "X", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "capacity (MSU/h) by CPC", - "format": "list", - "helpid": "5100", - "helpurl": "/gpm/include/metrics.html", + "listtype": "X" + }, { "id": "8D25D0", - "listtype": "X", - "unit": "rate per hour", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "signals received by XCF group", - "format": "list", - "helpid": "5401", - "helpurl": "/gpm/include/metrics.html", + "listtype": "X" + }, { "id": "8D3E00", - "listtype": "1", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "signals sent by XCF group", - "format": "list", - "helpid": "5400", - "helpurl": "/gpm/include/metrics.html", + "listtype": "1" + }, { "id": "8D3E40", - "listtype": "1", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "signals received by XCF group and member", - "format": "list", - "helpid": "5401", - "helpurl": "/gpm/include/metrics.html", + "listtype": "1" + }, { "id": "8D3E10", - "listtype": "2", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "signals sent by XCF group and member", - "format": "list", - "helpid": "5400", - "helpurl": "/gpm/include/metrics.html", + "listtype": "2" + }, { "id": "8D3E50", - "listtype": "2", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% retry by XCF systems and path", - "format": "list", - "helpid": "5402", - "helpurl": "/gpm/include/metrics.html", + "listtype": "2" + }, { "id": "8D38A0", - "listtype": "3", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "i/o transfer time by XCF systems and path", - "format": "list", - "helpid": "5417", - "helpurl": "/gpm/include/metrics.html", + "listtype": "3" + }, { "id": "8D3DB0", - "listtype": "3", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "message limit by XCF systems and path", - "format": "list", - "helpid": "5404", - "helpurl": "/gpm/include/metrics.html", + "listtype": "3" + }, { "id": "8D3DC0", - "listtype": "3", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "restart count by XCF systems and path", - "format": "list", - "helpid": "5408", - "helpurl": "/gpm/include/metrics.html", + "listtype": "3" + }, { "id": "8D3DD0", - "listtype": "3", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "retry limit by XCF systems and path", - "format": "list", - "helpid": "5403", - "helpurl": "/gpm/include/metrics.html", + "listtype": "3" + }, { "id": "8D3DE0", - "listtype": "3", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "signals pending transfer by XCF systems and path", - "format": "list", - "helpid": "5406", - "helpurl": "/gpm/include/metrics.html", + "listtype": "3" + }, { "id": "8D3DF0", - "listtype": "3", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "signals received by XCF systems and path", - "format": "list", - "helpid": "5401", - "helpurl": "/gpm/include/metrics.html", + "listtype": "3" + }, { "id": "8D3E30", - "listtype": "3", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "signals sent by XCF systems and path", - "format": "list", - "helpid": "5400", - "helpurl": "/gpm/include/metrics.html", + "listtype": "3" + }, { "id": "8D3E60", - "listtype": "3", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "storage in use by XCF systems and path", - "format": "list", - "helpid": "5407", - "helpurl": "/gpm/include/metrics.html", + "listtype": "3" + }, { "id": "8D3E80", - "listtype": "3", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "times buffer unavailable by XCF systems and path", - "format": "list", - "helpid": "5409", - "helpurl": "/gpm/include/metrics.html", + "listtype": "3" + }, { "id": "8D3E90", - "listtype": "3", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "times path busy by XCF systems and path", - "format": "list", - "helpid": "5405", - "helpurl": "/gpm/include/metrics.html", + "listtype": "3" + }, { "id": "8D3EB0", - "listtype": "3", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% degraded by XCF systems and transport class", - "format": "list", - "helpid": "5416", - "helpurl": "/gpm/include/metrics.html", + "listtype": "3" + }, { "id": "8D3660", - "listtype": "4", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% fit by XCF systems and transport class", - "format": "list", - "helpid": "5413", - "helpurl": "/gpm/include/metrics.html", + "listtype": "4" + }, { "id": "8D36F0", - "listtype": "4", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% large by XCF systems and transport class", - "format": "list", - "helpid": "5415", - "helpurl": "/gpm/include/metrics.html", + "listtype": "4" + }, { "id": "8D3700", - "listtype": "4", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% small by XCF systems and transport class", - "format": "list", - "helpid": "5414", - "helpurl": "/gpm/include/metrics.html", + "listtype": "4" + }, { "id": "8D38B0", - "listtype": "4", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "buffer length by XCF systems and transport class", - "format": "list", - "helpid": "5412", - "helpurl": "/gpm/include/metrics.html", + "listtype": "4" + }, { "id": "8D3DA0", - "listtype": "4", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "signals sent by XCF systems and transport class", - "format": "list", - "helpid": "5400", - "helpurl": "/gpm/include/metrics.html", + "listtype": "4" + }, { "id": "8D3E70", - "listtype": "4", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "times buffer unavailable by XCF systems and transport class", - "format": "list", - "helpid": "5411", - "helpurl": "/gpm/include/metrics.html", + "listtype": "4" + }, { "id": "8D3EA0", - "listtype": "4", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "times path unavailable by XCF systems and transport class", - "format": "list", - "helpid": "5410", - "helpurl": "/gpm/include/metrics.html", + "listtype": "4" + }, { "id": "8D3EC0", - "listtype": "4", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "signals received by XCF systems", - "format": "list", - "helpid": "5401", - "helpurl": "/gpm/include/metrics.html", + "listtype": "4" + }, { "id": "8D3E20", - "listtype": "5", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization asym-key generation operations (domain) by crypto card", - "format": "list", - "helpid": "5642", - "helpurl": "/gpm/include/metrics.html", + "listtype": "5" + }, { "id": "8D6470", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization asym-key generation operations (CPC) by crypto card", - "format": "list", - "helpid": "5642", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6490", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization complete sym-key operations (domain) by crypto card", - "format": "list", - "helpid": "5642", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D64B0", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization complete sym-key operations (CPC) by crypto card", - "format": "list", - "helpid": "5642", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D64D0", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization crypto operations (domain) by crypto card", - "format": "list", - "helpid": "5632", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D64F0", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization crypto operations (CPC) by crypto card", - "format": "list", - "helpid": "5632", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6510", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization fast asym-key operations (domain) by crypto card", - "format": "list", - "helpid": "5642", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6530", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization fast asym-key operations (CPC) by crypto card", - "format": "list", - "helpid": "5642", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6550", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization partial sym-key operations (domain) by crypto card", - "format": "list", - "helpid": "5642", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6570", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization partial sym-key operations (CPC) by crypto card", - "format": "list", - "helpid": "5642", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6590", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization slow asym-key operations (domain) by crypto card", - "format": "list", - "helpid": "5642", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D65B0", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization slow asym-key operations (CPC) by crypto card", - "format": "list", - "helpid": "5642", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D65D0", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA key-generation operations (domain) by crypto card", - "format": "list", - "helpid": "5635", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D65F0", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA key-generation operations (CPC) by crypto card", - "format": "list", - "helpid": "5635", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6610", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA CRT 1024 operations (domain) by crypto card", - "format": "list", - "helpid": "5639", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6630", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA CRT 1024 operations (CPC) by crypto card", - "format": "list", - "helpid": "5639", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6650", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA CRT 2048 operations (domain) by crypto card", - "format": "list", - "helpid": "5639", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6670", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA CRT 2048 operations (CPC) by crypto card", - "format": "list", - "helpid": "5639", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6690", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA CRT 4096 operations (domain) by crypto card", - "format": "list", - "helpid": "5639", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D66B0", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA CRT 4096 operations (CPC) by crypto card", - "format": "list", - "helpid": "5639", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D66D0", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA ME 1024 operations (domain) by crypto card", - "format": "list", - "helpid": "5639", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D66F0", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA ME 1024 operations (CPC) by crypto card", - "format": "list", - "helpid": "5639", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6710", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA ME 2048 operations (domain) by crypto card", - "format": "list", - "helpid": "5639", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6730", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA ME 2048 operations (CPC) by crypto card", - "format": "list", - "helpid": "5639", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6750", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA ME 4096 operations (domain) by crypto card", - "format": "list", - "helpid": "5639", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6770", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% utilization RSA ME 4096 operations (CPC) by crypto card", - "format": "list", - "helpid": "5639", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6790", - "listtype": "6", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "asym-key generation operation rate (domain) by crypto card", - "format": "list", - "helpid": "5640", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D67B0", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "asym-key generation operation rate (CPC) by crypto card", - "format": "list", - "helpid": "5640", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D67D0", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average asym-key generation exec time (domain) by crypto card", - "format": "list", - "helpid": "5641", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D67E0", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average asym-key generation exec time (CPC) by crypto card", - "format": "list", - "helpid": "5641", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D67F0", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average complete sym-key execution time (domain) by crypto card", - "format": "list", - "helpid": "5641", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6830", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average complete sym-key execution time (CPC) by crypto card", - "format": "list", - "helpid": "5641", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6850", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average crypto execution time (domain) by crypto card", - "format": "list", - "helpid": "5631", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6870", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average crypto execution time (CPC) by crypto card", - "format": "list", - "helpid": "5631", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6890", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average fast asym-key execution time (domain) by crypto card", - "format": "list", - "helpid": "5641", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D68B0", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average fast asym-key execution time (CPC) by crypto card", - "format": "list", - "helpid": "5641", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D68D0", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average partial sym-key execution time (domain) by crypto card", - "format": "list", - "helpid": "5641", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D68F0", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average partial sym-key execution time (CPC) by crypto card", - "format": "list", - "helpid": "5641", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6910", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average slow asym-key execution time (domain) by crypto card", - "format": "list", - "helpid": "5641", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6930", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average slow asym-key execution time (CPC) by crypto card", - "format": "list", - "helpid": "5641", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6950", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA key-generation execution time (domain) by crypto card", - "format": "list", - "helpid": "5634", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6970", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA key-generation execution time (CPC) by crypto card", - "format": "list", - "helpid": "5634", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6990", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA CRT 1024 execution time (domain) by crypto card", - "format": "list", - "helpid": "5638", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D69B0", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA CRT 1024 execution time (CPC) by crypto card", - "format": "list", - "helpid": "5638", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D69D0", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA CRT 2048 execution time (domain) by crypto card", - "format": "list", - "helpid": "5638", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D69F0", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA CRT 2048 execution time (CPC) by crypto card", - "format": "list", - "helpid": "5638", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6A10", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA CRT 4096 execution time (domain) by crypto card", - "format": "list", - "helpid": "5638", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6A30", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA CRT 4096 execution time (CPC) by crypto card", - "format": "list", - "helpid": "5638", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6A50", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA ME 1024 execution time (domain) by crypto card", - "format": "list", - "helpid": "5638", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6A70", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA ME 1024 execution time (CPC) by crypto card", - "format": "list", - "helpid": "5638", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6A90", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA ME 2048 execution time (domain) by crypto card", - "format": "list", - "helpid": "5638", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6AB0", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA ME 2048 execution time (CPC) by crypto card", - "format": "list", - "helpid": "5638", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6AD0", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA ME 4096 execution time (domain) by crypto card", - "format": "list", - "helpid": "5638", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6AF0", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "average RSA ME 4096 execution time (CPC) by crypto card", - "format": "list", - "helpid": "5638", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6B10", - "listtype": "6", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "complete sym-key operation rate (domain) by crypto card", - "format": "list", - "helpid": "5640", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6B30", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "complete sym-key operation rate (CPC) by crypto card", - "format": "list", - "helpid": "5640", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6B50", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "crypto operation rate (domain) by crypto card", - "format": "list", - "helpid": "5630", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6B70", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "crypto operation rate (CPC) by crypto card", - "format": "list", - "helpid": "5630", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6B90", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "fast asym-key operation rate (domain) by crypto card", - "format": "list", - "helpid": "5640", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6BB0", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "fast asym-key operation rate (CPC) by crypto card", - "format": "list", - "helpid": "5640", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6BD0", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "partial sym-key operation rate (domain) by crypto card", - "format": "list", - "helpid": "5640", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6BF0", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "partial sym-key operation rate (CPC) by crypto card", - "format": "list", - "helpid": "5640", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6C10", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "slow asym-key operation rate (domain) by crypto card", - "format": "list", - "helpid": "5640", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6C30", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "slow asym-key operation rate (CPC) by crypto card", - "format": "list", - "helpid": "5640", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6C50", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA key-generation operation rate (domain) by crypto card", - "format": "list", - "helpid": "5633", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6C70", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA key-generation operation rate (CPC) by crypto card", - "format": "list", - "helpid": "5633", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6C90", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA CRT 1024 operation rate (domain) by crypto card", - "format": "list", - "helpid": "5637", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6CB0", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA CRT 1024 operation rate (CPC) by crypto card", - "format": "list", - "helpid": "5637", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6CD0", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA CRT 2048 operation rate (domain) by crypto card", - "format": "list", - "helpid": "5637", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6CF0", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA CRT 2048 operation rate (CPC) by crypto card", - "format": "list", - "helpid": "5637", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6D10", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA CRT 4096 operation rate (domain) by crypto card", - "format": "list", - "helpid": "5637", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6D30", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA CRT 4096 operation rate (CPC) by crypto card", - "format": "list", - "helpid": "5637", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6D50", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA ME 1024 operation rate (domain) by crypto card", - "format": "list", - "helpid": "5637", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6D70", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA ME 1024 operation rate (CPC) by crypto card", - "format": "list", - "helpid": "5637", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6D90", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA ME 2048 operation rate (domain) by crypto card", - "format": "list", - "helpid": "5637", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6DB0", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA ME 2048 operation rate (CPC) by crypto card", - "format": "list", - "helpid": "5637", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6DD0", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA ME 4096 operation rate (domain) by crypto card", - "format": "list", - "helpid": "5637", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6DF0", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "RSA ME 4096 operation rate (CPC) by crypto card", - "format": "list", - "helpid": "5637", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6E10", - "listtype": "6", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "capacity actual (# CPs) by WLM resource group", - "format": "list", - "helpid": "6001", - "helpurl": "/gpm/include/metrics.html", + "listtype": "6" + }, { "id": "8D6E30", - "listtype": "7", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "capacity actual (MSU) by WLM resource group", - "format": "list", - "helpid": "6002", - "helpurl": "/gpm/include/metrics.html", + "listtype": "7" + }, { "id": "8D6E50", - "listtype": "7", - "unit": "rate per hour", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "capacity actual (SU/sec) by WLM resource group", - "format": "list", - "helpid": "6003", - "helpurl": "/gpm/include/metrics.html", + "listtype": "7" + }, { "id": "8D6E70", - "listtype": "7", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } + "listtype": "7" }], "resource": { "attributes": "YES", "expandable": "YES", - "helpurl": "/gpm/include/help/restypes/SYSPLEX.htm", "icon": "rmfsyspl.gif", "reslabel": "RS26,RSPLEX01,SYSPLEX", "restype": "SYSPLEX" @@ -19516,2351 +5573,708 @@ "resource": { "attributes": "YES", "expandable": "NO", - "helpurl": "/gpm/include/help/restypes/USS_PROCESS.htm", "icon": "rmfusspr.gif", "reslabel": "RS26,*,USS_PROCESS", "restype": "USS_PROCESS" } }, { "metric": [{ - "description": "% active time", - "format": "single", - "helpid": "2026", - "helpurl": "/gpm/include/metrics.html", "id": "8D0010", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% cache hits (all systems)", - "format": "single", - "helpid": "5091", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D21F0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% cache misses (all systems)", - "format": "single", - "helpid": "5092", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D2240", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% connect time", - "format": "single", - "helpid": "2027", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D00B0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay", - "format": "single", - "helpid": "2030", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0170", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "% delay device busy", - "format": "single", - "helpid": "2031", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0240", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay due to device command response time", - "format": "single", - "helpid": "5117", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D2770", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% disconnect time", - "format": "single", - "helpid": "2028", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0350", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% freespace", - "format": "single", - "helpid": "5142", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D2A40", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% pending time", - "format": "single", - "helpid": "2029", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0430", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% using", - "format": "single", - "helpid": "2034", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D04C0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["J"] - } - }, { - "description": "cache read hits (all systems)", - "format": "single", - "helpid": "5091", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D2280", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "cache CFW hits (all systems)", - "format": "single", - "helpid": "5091", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D21C0", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "cache DFW hits (all systems)", - "format": "single", - "helpid": "5091", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D21D0", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "capacity", - "format": "single", - "helpid": "5140", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D2FF0", - "listtype": " ", - "unit": "megabytes", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "freespace", - "format": "single", - "helpid": "5141", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D3090", - "listtype": " ", - "unit": "megabytes", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "i/o activity rate", - "format": "single", - "helpid": "2021", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0E90", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "i/o intensity", - "format": "single", - "helpid": "2024", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D1290", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "i/o rate (all systems)", - "format": "single", - "helpid": "5090", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D2300", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "largest extent", - "format": "single", - "helpid": "5143", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D30D0", - "listtype": " ", - "unit": "megabytes", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "non-cache dasd i/o rate (all systems)", - "format": "single", - "helpid": "5094", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D2330", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "response time", - "format": "single", - "helpid": "2023", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D10F0", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "IOS queue time", - "format": "single", - "helpid": "2022", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D12B0", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by job", - "format": "list", - "helpid": "2030", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0210", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% using by job", - "format": "list", - "helpid": "2034", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D0500", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } + "listtype": "J" }], "resource": { "attributes": "YES", "expandable": "NO", - "helpurl": "/gpm/include/help/restypes/VOLUME.htm", "icon": "rmfvolum.gif", "reslabel": "RS26,*,VOLUME", "restype": "VOLUME" } }, { "metric": [{ - "description": "active time (ms) by WLM report class period", - "format": "list", - "helpid": "5008", - "helpurl": "/gpm/include/metrics.html", "id": "8D5E10", - "listtype": "K", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "execution velocity by WLM report class period", - "format": "list", - "helpid": "4000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D3080", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "performance index by WLM report class period", - "format": "list", - "helpid": "5002", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D3110", - "listtype": "K", - "unit": "index", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "queue time (ms) by WLM report class period", - "format": "list", - "helpid": "5006", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D5E70", - "listtype": "K", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "transaction ended rate by WLM report class period", - "format": "list", - "helpid": "5007", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D3230", - "listtype": "K", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "wait time (ms) by WLM report class period", - "format": "list", - "helpid": "6000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D6EE0", - "listtype": "K", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "active time (ms) by WLM service class period", - "format": "list", - "helpid": "5008", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D5E30", - "listtype": "P", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "execution velocity by WLM service class period", - "format": "list", - "helpid": "4000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D0F60", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "percentile achieving response time goal by WLM service class period", - "format": "list", - "helpid": "5004", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D0FF0", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "performance index by WLM service class period", - "format": "list", - "helpid": "5002", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D1020", - "listtype": "P", - "unit": "index", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "queue time (ms) by WLM service class period", - "format": "list", - "helpid": "5006", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D5E90", - "listtype": "P", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "response time (ms) by WLM service class period", - "format": "list", - "helpid": "5005", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D5F40", - "listtype": "P", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "transaction ended rate by WLM service class period", - "format": "list", - "helpid": "5007", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D1240", - "listtype": "P", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "wait time (ms) by WLM service class period", - "format": "list", - "helpid": "6000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D6F00", - "listtype": "P", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "active time (ms) by WLM report class", - "format": "list", - "helpid": "5008", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D5E00", - "listtype": "R", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "execution velocity by WLM report class", - "format": "list", - "helpid": "4000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D0F20", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "queue time (ms) by WLM report class", - "format": "list", - "helpid": "5006", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D5E60", - "listtype": "R", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "transaction ended rate by WLM report class", - "format": "list", - "helpid": "5007", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D1220", - "listtype": "R", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "wait time (ms) by WLM report class", - "format": "list", - "helpid": "6000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D6ED0", - "listtype": "R", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "active time (ms) by WLM service class", - "format": "list", - "helpid": "5008", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D5E20", - "listtype": "S", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "execution velocity by WLM service class", - "format": "list", - "helpid": "4000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D0F50", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "percentile achieving response time goal by WLM service class", - "format": "list", - "helpid": "5004", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D6E80", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "performance index by WLM service class", - "format": "list", - "helpid": "5013", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D6EB0", - "listtype": "S", - "unit": "index", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "queue time (ms) by WLM service class", - "format": "list", - "helpid": "5006", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D5E80", - "listtype": "S", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "response time (ms) by WLM service class", - "format": "list", - "helpid": "5005", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D5F20", - "listtype": "S", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "transaction ended rate by WLM service class", - "format": "list", - "helpid": "5007", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D1230", - "listtype": "S", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "wait time (ms) by WLM service class", - "format": "list", - "helpid": "6000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D6EF0", - "listtype": "S", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "active time (ms) by WLM workload", - "format": "list", - "helpid": "5008", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D5E40", - "listtype": "W", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "execution velocity by WLM workload", - "format": "list", - "helpid": "4000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D0F80", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "queue time (ms) by WLM workload", - "format": "list", - "helpid": "5006", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D5EA0", - "listtype": "W", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "transaction ended rate by WLM workload", - "format": "list", - "helpid": "5007", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D1250", - "listtype": "W", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "wait time (ms) by WLM workload", - "format": "list", - "helpid": "6000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D6F10", - "listtype": "W", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "capacity actual (# CPs) by WLM resource group", - "format": "list", - "helpid": "6001", - "helpurl": "/gpm/include/metrics.html", + "listtype": "W" + }, { "id": "8D6E30", - "listtype": "7", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "capacity actual (MSU) by WLM resource group", - "format": "list", - "helpid": "6002", - "helpurl": "/gpm/include/metrics.html", + "listtype": "7" + }, { "id": "8D6E50", - "listtype": "7", - "unit": "rate per hour", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "capacity actual (SU/sec) by WLM resource group", - "format": "list", - "helpid": "6003", - "helpurl": "/gpm/include/metrics.html", + "listtype": "7" + }, { "id": "8D6E70", - "listtype": "7", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } + "listtype": "7" }], "resource": { "attributes": "YES", "expandable": "YES", - "helpurl": "/gpm/include/help/restypes/WLM_ACTIVE_POLICY.htm", "icon": "rmfwlm.gif", "reslabel": "RS26,*,WLM_ACTIVE_POLICY", "restype": "WLM_ACTIVE_POLICY" } }, { "metric": [{ - "description": "active time (ms)", - "format": "single", - "helpid": "5008", - "helpurl": "/gpm/include/metrics.html", "id": "8D5DF0", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "execution velocity", - "format": "single", - "helpid": "4000", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0EF0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "performance index", - "format": "single", - "helpid": "5007", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6E90", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "queue time (ms)", - "format": "single", - "helpid": "5006", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5E50", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "transaction ended rate", - "format": "single", - "helpid": "5007", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D1200", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "wait time (ms)", - "format": "single", - "helpid": "6000", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6EC0", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } + "listtype": " " }], "resource": { "attributes": "NO", "expandable": "NO", - "helpurl": "/gpm/include/help/restypes/WLM_RC_PERIOD.htm", "icon": "rmfwlm.gif", "reslabel": "RS26,*,WLM_RC_PERIOD", "restype": "WLM_RC_PERIOD" } }, { "metric": [{ - "description": "active time (ms)", - "format": "single", - "helpid": "5008", - "helpurl": "/gpm/include/metrics.html", "id": "8D5DF0", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "execution velocity", - "format": "single", - "helpid": "4000", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0EF0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "queue time (ms)", - "format": "single", - "helpid": "5006", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5E50", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "transaction ended rate", - "format": "single", - "helpid": "5007", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D1200", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "wait time (ms)", - "format": "single", - "helpid": "6000", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6EC0", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "active time (ms) by WLM report class period", - "format": "list", - "helpid": "5008", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5E10", - "listtype": "K", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "execution velocity by WLM report class period", - "format": "list", - "helpid": "4000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D3080", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "performance index by WLM report class period", - "format": "list", - "helpid": "5007", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D6EA0", - "listtype": "K", - "unit": "index", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "queue time (ms) by WLM report class period", - "format": "list", - "helpid": "5006", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D5E70", - "listtype": "K", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "transaction ended rate by WLM report class period", - "format": "list", - "helpid": "5007", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D3230", - "listtype": "K", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "wait time (ms) by WLM report class period", - "format": "list", - "helpid": "6000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D6EE0", - "listtype": "K", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } + "listtype": "K" }], "resource": { "attributes": "YES", "expandable": "NO", - "helpurl": "/gpm/include/help/restypes/WLM_REPORT_CLASS.htm", "icon": "rmfwlm.gif", "reslabel": "RS26,*,WLM_REPORT_CLASS", "restype": "WLM_REPORT_CLASS" } }, { "metric": [{ - "description": "capacity actual (# CPs)", - "format": "single", - "helpid": "6001", - "helpurl": "/gpm/include/metrics.html", "id": "8D6E20", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "capacity actual (MSU)", - "format": "single", - "helpid": "6002", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6E40", - "listtype": " ", - "unit": "rate per hour", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "capacity actual (SU/sec)", - "format": "single", - "helpid": "6003", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6E60", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } + "listtype": " " }], "resource": { "attributes": "YES", "expandable": "NO", - "helpurl": "/gpm/include/help/restypes/WLM_RESOURCE_GROUP.htm", "icon": "rmfwlm.gif", "reslabel": "RS26,*,WLM_RESOURCE_GROUP", "restype": "WLM_RESOURCE_GROUP" } }, { "metric": [{ - "description": "active time (ms)", - "format": "single", - "helpid": "5008", - "helpurl": "/gpm/include/metrics.html", "id": "8D5DF0", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "execution velocity", - "format": "single", - "helpid": "4000", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0EF0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "percentile achieving response time goal", - "format": "single", - "helpid": "5004", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0FE0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "performance index", - "format": "single", - "helpid": "5013", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D1000", - "listtype": " ", - "unit": "index", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "queue time (ms)", - "format": "single", - "helpid": "5006", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5E50", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "response time (ms)", - "format": "single", - "helpid": "5005", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5EC0", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "transaction ended rate", - "format": "single", - "helpid": "5007", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D1200", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "wait time (ms)", - "format": "single", - "helpid": "6000", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6EC0", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } + "listtype": " " }], "resource": { "attributes": "YES", "expandable": "NO", - "helpurl": "/gpm/include/help/restypes/WLM_SC_PERIOD.htm", "icon": "rmfwlm.gif", "reslabel": "RS26,*,WLM_SC_PERIOD", "restype": "WLM_SC_PERIOD" } }, { "metric": [{ - "description": "active time (ms)", - "format": "single", - "helpid": "5008", - "helpurl": "/gpm/include/metrics.html", "id": "8D5DF0", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "execution velocity", - "format": "single", - "helpid": "4000", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0EF0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "percentile achieving response time goal", - "format": "single", - "helpid": "5004", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0FE0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "performance index", - "format": "single", - "helpid": "5013", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D1000", - "listtype": " ", - "unit": "index", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "queue time (ms)", - "format": "single", - "helpid": "5006", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5E50", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "response time (ms)", - "format": "single", - "helpid": "5005", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5EC0", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "transaction ended rate", - "format": "single", - "helpid": "5007", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D1200", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "wait time (ms)", - "format": "single", - "helpid": "6000", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6EC0", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "active time (ms) by WLM service class period", - "format": "list", - "helpid": "5008", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5E30", - "listtype": "P", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "execution velocity by WLM service class period", - "format": "list", - "helpid": "4000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D0F60", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "percentile achieving response time goal by WLM service class period", - "format": "list", - "helpid": "5004", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D0FF0", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "performance index by WLM service class period", - "format": "list", - "helpid": "5013", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D1020", - "listtype": "P", - "unit": "index", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "queue time (ms) by WLM service class period", - "format": "list", - "helpid": "5006", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D5E90", - "listtype": "P", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "response time (ms) by WLM service class period", - "format": "list", - "helpid": "5005", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D5F40", - "listtype": "P", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "transaction ended rate by WLM service class period", - "format": "list", - "helpid": "5007", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D1240", - "listtype": "P", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "wait time (ms) by WLM service class period", - "format": "list", - "helpid": "6000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D6F00", - "listtype": "P", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } + "listtype": "P" }], "resource": { "attributes": "YES", "expandable": "NO", - "helpurl": "/gpm/include/help/restypes/WLM_SERVICE_CLASS.htm", "icon": "rmfwlm.gif", "reslabel": "RS26,*,WLM_SERVICE_CLASS", "restype": "WLM_SERVICE_CLASS" } }, { "metric": [{ - "description": "active time (ms)", - "format": "single", - "helpid": "5008", - "helpurl": "/gpm/include/metrics.html", "id": "8D5DF0", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "execution velocity", - "format": "single", - "helpid": "4000", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D0EF0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "queue time (ms)", - "format": "single", - "helpid": "5006", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5E50", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "transaction ended rate", - "format": "single", - "helpid": "5007", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D1200", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "wait time (ms)", - "format": "single", - "helpid": "6000", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D6EC0", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "active time (ms) by WLM service class period", - "format": "list", - "helpid": "5008", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5E30", - "listtype": "P", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "execution velocity by WLM service class period", - "format": "list", - "helpid": "4000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D0F60", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "percentile achieving response time goal by WLM service class period", - "format": "list", - "helpid": "5004", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D0FF0", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "performance index by WLM service class period", - "format": "list", - "helpid": "5002", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D1020", - "listtype": "P", - "unit": "index", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "queue time (ms) by WLM service class period", - "format": "list", - "helpid": "5006", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D5E90", - "listtype": "P", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "response time (ms) by WLM service class period", - "format": "list", - "helpid": "5005", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D5F40", - "listtype": "P", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "transaction ended rate by WLM service class period", - "format": "list", - "helpid": "5007", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D1240", - "listtype": "P", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "wait time (ms) by WLM service class period", - "format": "list", - "helpid": "6000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D6F00", - "listtype": "P", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "active time (ms) by WLM service class", - "format": "list", - "helpid": "5008", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D5E20", - "listtype": "S", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "execution velocity by WLM service class", - "format": "list", - "helpid": "4000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D0F50", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "percentile achieving response time goal by WLM service class", - "format": "list", - "helpid": "5004", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D6E80", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "performance index by WLM service class", - "format": "list", - "helpid": "5013", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D6EB0", - "listtype": "S", - "unit": "index", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "queue time (ms) by WLM service class", - "format": "list", - "helpid": "5006", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D5E80", - "listtype": "S", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "response time (ms) by WLM service class", - "format": "list", - "helpid": "5005", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D5F20", - "listtype": "S", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "transaction ended rate by WLM service class", - "format": "list", - "helpid": "5007", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D1230", - "listtype": "S", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "wait time (ms) by WLM service class", - "format": "list", - "helpid": "6000", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D6EF0", - "listtype": "S", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } + "listtype": "S" }], "resource": { "attributes": "YES", "expandable": "NO", - "helpurl": "/gpm/include/help/restypes/WLM_WORKLOAD.htm", "icon": "rmfwlm.gif", "reslabel": "RS26,*,WLM_WORKLOAD", "restype": "WLM_WORKLOAD" } }, { "metric": [{ - "description": "% delay", - "format": "single", - "helpid": "2012", - "helpurl": "/gpm/include/metrics.html", "id": "8D0150", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "J", "W", "S", "P", "R"] - } - }, { - "description": "% delay by job", - "format": "list", - "helpid": "2012", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D01F0", - "listtype": "J", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G", "W", "S", "P"] - } - }, { - "description": "% delay by WLM report class period", - "format": "list", - "helpid": "2012", - "helpurl": "/gpm/include/metrics.html", + "listtype": "J" + }, { "id": "8D2950", - "listtype": "K", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by WLM service class period", - "format": "list", - "helpid": "2012", - "helpurl": "/gpm/include/metrics.html", + "listtype": "K" + }, { "id": "8D1810", - "listtype": "P", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by WLM report class", - "format": "list", - "helpid": "2012", - "helpurl": "/gpm/include/metrics.html", + "listtype": "P" + }, { "id": "8D16D0", - "listtype": "R", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by WLM service class", - "format": "list", - "helpid": "2012", - "helpurl": "/gpm/include/metrics.html", + "listtype": "R" + }, { "id": "8D1770", - "listtype": "S", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% delay by WLM workload", - "format": "list", - "helpid": "2012", - "helpurl": "/gpm/include/metrics.html", + "listtype": "S" + }, { "id": "8D18B0", - "listtype": "W", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } + "listtype": "W" }], "resource": { "attributes": "NO", "expandable": "NO", - "helpurl": "/gpm/include/help/restypes/XCF.htm", "icon": "rmfxcf.gif", "reslabel": "RS26,*,XCF", "restype": "XCF" } }, { "metric": [{ - "description": "zFS % avg response time lock", - "format": "single", - "helpid": "5501", - "helpurl": "/gpm/include/metrics.html", "id": "8D53A0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS % avg response time sleep", - "format": "single", - "helpid": "5502", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D53C0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS % avg response time I/O", - "format": "single", - "helpid": "5500", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D53E0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS kernel local request rate", - "format": "single", - "helpid": "5590", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5400", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS kernel local response time", - "format": "single", - "helpid": "5594", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5420", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS kernel local XCF rate", - "format": "single", - "helpid": "5592", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5440", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS kernel remote request rate", - "format": "single", - "helpid": "5591", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5460", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS kernel remote response time", - "format": "single", - "helpid": "5595", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5480", - "listtype": " ", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS kernel remote XCF rate", - "format": "single", - "helpid": "5593", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D54A0", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS metadata cache % hit", - "format": "single", - "helpid": "5508", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D54C0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS metadata cache # partial writes", - "format": "single", - "helpid": "5546", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D54E0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS metadata cache # requests", - "format": "single", - "helpid": "5544", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5500", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS metadata cache # updates", - "format": "single", - "helpid": "5545", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5520", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS metadata cache # 8K buffers", - "format": "single", - "helpid": "5543", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5540", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS metadata cache request rate", - "format": "single", - "helpid": "5507", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5560", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS metadata cache size", - "format": "single", - "helpid": "5541", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5580", - "listtype": " ", - "unit": "bytes", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS user cache % delay", - "format": "single", - "helpid": "5528", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D55A0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS user cache % delayed reads", - "format": "single", - "helpid": "5521", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D55C0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS user cache % delayed writes", - "format": "single", - "helpid": "5525", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D55E0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS user cache % hit", - "format": "single", - "helpid": "5504", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5600", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS user cache % read", - "format": "single", - "helpid": "5527", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5620", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS user cache # allocated segments", - "format": "single", - "helpid": "5518", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5640", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS user cache # free pages", - "format": "single", - "helpid": "5517", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5660", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS user cache # fsynchs", - "format": "single", - "helpid": "5530", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5680", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS user cache # page reclaim writes", - "format": "single", - "helpid": "5529", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D56A0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS user cache # pages", - "format": "single", - "helpid": "5516", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D56C0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS user cache read rate", - "format": "single", - "helpid": "5519", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D56E0", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS user cache read request % hit", - "format": "single", - "helpid": "5520", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5700", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS user cache read-ahead (async) rate", - "format": "single", - "helpid": "5522", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5720", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS user cache request rate", - "format": "single", - "helpid": "5503", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5740", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS user cache scheduled write rate", - "format": "single", - "helpid": "5526", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5760", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS user cache total size", - "format": "single", - "helpid": "5514", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5780", - "listtype": " ", - "unit": "bytes", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS user cache write rate", - "format": "single", - "helpid": "5523", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D57A0", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS user cache write request % hit", - "format": "single", - "helpid": "5524", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D57C0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS vnode cache % hit", - "format": "single", - "helpid": "5506", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D57E0", - "listtype": " ", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS vnode cache # allocated vnodes", - "format": "single", - "helpid": "5532", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5800", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS vnode cache # extended vnodes", - "format": "single", - "helpid": "5534", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5820", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS vnode cache # open vnodes", - "format": "single", - "helpid": "5536", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5840", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS vnode cache # requests", - "format": "single", - "helpid": "5538", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5860", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS vnode cache # requests for allocs", - "format": "single", - "helpid": "5539", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5880", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS vnode cache # requests for deletes", - "format": "single", - "helpid": "5540", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D58A0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS vnode cache # USS held vnodes", - "format": "single", - "helpid": "5537", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D58C0", - "listtype": " ", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS vnode cache extended vnode size", - "format": "single", - "helpid": "5535", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D58E0", - "listtype": " ", - "unit": "bytes", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS vnode cache request rate", - "format": "single", - "helpid": "5505", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5900", - "listtype": " ", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS vnode cache size", - "format": "single", - "helpid": "5531", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5920", - "listtype": " ", - "unit": "bytes", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "zFS vnode cache vnode structure size", - "format": "single", - "helpid": "5533", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5940", - "listtype": " ", - "unit": "bytes", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% read (in I/O rate) by aggregate", - "format": "list", - "helpid": "5558", - "helpurl": "/gpm/include/metrics.html", + "listtype": " " + }, { "id": "8D5000", - "listtype": "G", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "% space used by aggregate", - "format": "list", - "helpid": "5555", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5030", - "listtype": "G", - "unit": "percent", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# cancelled operations by aggregate", - "format": "list", - "helpid": "5580", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5060", - "listtype": "G", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# disk I/O errors by aggregate", - "format": "list", - "helpid": "5578", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5090", - "listtype": "G", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# open objects by aggregate", - "format": "list", - "helpid": "5563", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D50C0", - "listtype": "G", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# tokens by aggregate", - "format": "list", - "helpid": "5564", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D50F0", - "listtype": "G", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# vnodes by aggregate", - "format": "list", - "helpid": "5561", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5120", - "listtype": "G", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# ENOSPC errors by aggregate", - "format": "list", - "helpid": "5577", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5150", - "listtype": "G", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# USS held vnodes by aggregate", - "format": "list", - "helpid": "5562", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5180", - "listtype": "G", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# XCF communication failures by aggregate", - "format": "list", - "helpid": "5579", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D51B0", - "listtype": "G", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# 4K pages in user cache by aggregate", - "format": "list", - "helpid": "5565", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D51E0", - "listtype": "G", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "# 8K pages in metadata cache by aggregate", - "format": "list", - "helpid": "5566", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5210", - "listtype": "G", - "unit": "count", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "aggregate read rate by aggregate", - "format": "list", - "helpid": "5571", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5240", - "listtype": "G", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "aggregate write rate by aggregate", - "format": "list", - "helpid": "5576", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5270", - "listtype": "G", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "application read rate by aggregate", - "format": "list", - "helpid": "5567", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D52A0", - "listtype": "G", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "application read response time by aggregate", - "format": "list", - "helpid": "5568", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D52D0", - "listtype": "G", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "application write rate by aggregate", - "format": "list", - "helpid": "5572", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5300", - "listtype": "G", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "application write response time by aggregate", - "format": "list", - "helpid": "5573", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5330", - "listtype": "G", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "maximum size by aggregate", - "format": "list", - "helpid": "5554", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5360", - "listtype": "G", - "unit": "bytes", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "response time (read + write) by aggregate", - "format": "list", - "helpid": "5557", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5390", - "listtype": "G", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "I/O rate (read + write) by aggregate", - "format": "list", - "helpid": "5556", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5980", - "listtype": "G", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "XCF rate (read + write) by aggregate", - "format": "list", - "helpid": "5559", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D59B0", - "listtype": "G", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "XCF read rate by aggregate", - "format": "list", - "helpid": "5569", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D59E0", - "listtype": "G", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "XCF read response time by aggregate", - "format": "list", - "helpid": "5570", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5A10", - "listtype": "G", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "XCF write rate by aggregate", - "format": "list", - "helpid": "5574", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5A40", - "listtype": "G", - "unit": "rate per second", - "workscopesSupported": { - "workscopeType": ["G"] - } - }, { - "description": "XCF write response time by aggregate", - "format": "list", - "helpid": "5575", - "helpurl": "/gpm/include/metrics.html", + "listtype": "G" + }, { "id": "8D5A70", - "listtype": "G", - "unit": "milliseconds", - "workscopesSupported": { - "workscopeType": ["G"] - } + "listtype": "G" }], "resource": { "attributes": "NO", "expandable": "YES", - "helpurl": "/gpm/include/help/restypes/ZFS.htm", "icon": "rmfzfs.gif", "reslabel": "RS26,*,ZFS", "restype": "ZFS" From 20c021b18604db22d7ad60c625240a2869578dbf Mon Sep 17 00:00:00 2001 From: dprizentsov Date: Mon, 29 Dec 2025 17:54:04 +0100 Subject: [PATCH 3/7] datasource import fix Signed-off-by: dprizentsov --- grafana/rmf-app/src/components/Root/Root.tsx | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/grafana/rmf-app/src/components/Root/Root.tsx b/grafana/rmf-app/src/components/Root/Root.tsx index a17ae35..5eacc3c 100644 --- a/grafana/rmf-app/src/components/Root/Root.tsx +++ b/grafana/rmf-app/src/components/Root/Root.tsx @@ -239,13 +239,10 @@ export class Root extends PureComponent { type: DATA_SOURCE_TYPE, access: 'proxy', name: pmDs.name, - jsonData: { - path: pmDs.host, - port: pmDs.port, - ssl: pmDs.https, - }, + url: `${pmDs.https ? 'https' : 'http'}://${pmDs.host}:${pmDs.port}`, }); nameUid.set(pmDs.name, datasource.uid); + getDataSourceSrv().reload(); } else { nameUid.set(pmDs.name, existingDs.uid); } From fc9365a44128890ee87e400b2177601453917d23 Mon Sep 17 00:00:00 2001 From: dprizentsov Date: Tue, 30 Dec 2025 10:27:48 +0100 Subject: [PATCH 4/7] PM icon 64x64 Signed-off-by: dprizentsov --- grafana/rmf-app/src/img/pm390.png | Bin 431 -> 1537 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/grafana/rmf-app/src/img/pm390.png b/grafana/rmf-app/src/img/pm390.png index 2471e13c3562060131840476ff03a8aeb2dbb438..1013b14c77a3d830de8e9df3b6419906f9ea6bc2 100644 GIT binary patch delta 1530 zcmVSe@q$Gn zWd2xn;{{nF=*jVa%Uory%IFK`dBMz^SIv0AED>^rK&YF^S@oF`AZzsZf1baA*Y4bc z5e?Ge^m?xkQsf((uxiN7Lc138xtdBk0=>ovyunYjO1hn?9y4= zY`71?i$pYPFovG68k7Vu49NvhbV|D(Z9Z*}_|6=-K2~*dfi|^ZD-9(9tT@93(&$gn zj;Bk`88V^?_ZLXEQvkYb{4-lp4!|zWD@9SQ%(`K9Bc6tBR||odf2XKLumD`GtWoPR zUZ5lZVwraUc9Y3!gXDP0<(+H?^rCXZK}`V2cmR*+;ZY7Ye)=u)dgk<9{v4U>t1yg_PQKD?f52tNtv!!yXqn6EVsecP zj|Eud1)4@i*ZETyU+j&JIoZ`IluVunRYy8KcZ#y=-jcRe+5=*K6O86R-Vd|h@McW< zew%lrb7^M94cn4Gqo{>|J!>)3q4o7gw{icKJ-mc}@XmhnKS6X%JFb^TJ)rWD zH@vNCMw%(N&-zIE#k+?%I(nMUL}&T?0B>A`JCPI(X{C2|if%A~(X`QQTp!&>i#8rb z{!mKdbpE2t#;~fe+s1%AEN<9vYx~p$wPEsVLA1k1e-bR-re|ZcPEK&#>7a3~iKBx9 z`fUVD`ulMY=O+Qa`|;P&%@mWNJ~Qs;iLh^W@Zy1sAAWg==Kc!^8@uoZAq$`Y;_6r>zrMPMyMt?2S!Y1-fXu+X%DGY{5ooZ{x{phiL5VVBr0WAnK6b4jjjVZP_?$wV@d{wzr#T)a$tU%(G~2 zoA~~x-;$n>n3dXOkSf@p<-bj*mg0ujP%KrsbVBRb@R{-X! zh%nE1CV%?8B4m01Q*|%M8hvJ=08CXySY$jSB>+=35oC;Kqy=EAB7&^(jFJF?O%+1L zP;fym0hmn_A&>D)ZUF@A79y|Vf~5su)+NHS#xsQokfv-giZD7&;Q|PX7NTgw1*Hiv giK-xF89WZ~AJMY$aQdkzu>b%707*qoM6N<$f+wccyZ`_I delta 415 zcmV;Q0bu@t46g$&iBL{Q4GJ0x0000DNk~Le0000G0000G2nGNE03Y-JVE_OC0drDE zLIAGL9O;oE8-Kz801mAWNN1-cr-aJhguM215g&O72C&oW5{am(lf# z0=g?O&1Fx01?*irevVs#M1L#*7+Jk?5s}%Ak{gMPWeU2-Oh(%PV3PobR?03SGQ5~` zqj($waA>jGjsf(a24G_B?}0L`w?P18w1w~!4g&C(i1L+pEeSwc`_G813QmWf#{P6u z*vfzAFT7}ecZN+s^fBchv?UAi26#;Tv5DbOfao!FPsyq%`UU*6agzf=Zm<9V002ov JPDHLkV1k)julxW2 From b81dbf109375a5256ee987f7883c637459bb2804 Mon Sep 17 00:00:00 2001 From: dprizentsov Date: Tue, 30 Dec 2025 12:48:06 +0100 Subject: [PATCH 5/7] reload before redirecting to new dashboards folder, add transformation depend on series number Signed-off-by: dprizentsov --- .../rmf-app/src/components/Root/PmImport.ts | 22 ++++++++----------- grafana/rmf-app/src/components/Root/Root.tsx | 6 +++-- 2 files changed, 13 insertions(+), 15 deletions(-) diff --git a/grafana/rmf-app/src/components/Root/PmImport.ts b/grafana/rmf-app/src/components/Root/PmImport.ts index e26d4bc..527ff8a 100644 --- a/grafana/rmf-app/src/components/Root/PmImport.ts +++ b/grafana/rmf-app/src/components/Root/PmImport.ts @@ -438,19 +438,15 @@ function parseSeriesDescription(description: string): { ulq: string; name: strin } function getTransformationsFromDataView(dataView: DataView): any[] { - const transformations: any[] = []; - if (dataView.XAXIS) { - if (dataView.XAXIS === 'H') { - - } else if (dataView.XAXIS === 'V') { - transformations.push({ - id: "joinByField", - options: { - byField: getGroupByField(dataView), - mode: "outer" - } - }); - } + const transformations: any[] = []; + if (dataView?.SERIES && dataView.SERIES.length > 1) { + transformations.push({ + id: "joinByField", + options: { + byField: getGroupByField(dataView), + mode: "outer" + } + }); } return transformations; } diff --git a/grafana/rmf-app/src/components/Root/Root.tsx b/grafana/rmf-app/src/components/Root/Root.tsx index 5eacc3c..8f9bee6 100644 --- a/grafana/rmf-app/src/components/Root/Root.tsx +++ b/grafana/rmf-app/src/components/Root/Root.tsx @@ -493,11 +493,13 @@ export class Root extends PureComponent { fill="outline" icon={'apps'} onClick={ - () => + () => { + getDataSourceSrv().reload(); this.goToFolder( PM_FOLDER_UID, pm.operation.code === OperCode.Install || pm.operation.code === OperCode.Reset - ) + ); + } } > Go to PM Dashboards From 5fa7c2de60ffb7f25c1fe58a3c75410a7942b353 Mon Sep 17 00:00:00 2001 From: dprizentsov Date: Wed, 7 Jan 2026 13:48:43 +0100 Subject: [PATCH 6/7] missing semicolon Signed-off-by: dprizentsov --- grafana/rmf-app/src/components/Root/PmImport.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/grafana/rmf-app/src/components/Root/PmImport.ts b/grafana/rmf-app/src/components/Root/PmImport.ts index 527ff8a..cbdce7b 100644 --- a/grafana/rmf-app/src/components/Root/PmImport.ts +++ b/grafana/rmf-app/src/components/Root/PmImport.ts @@ -144,7 +144,7 @@ export function parsePmImportFile(content: string | ArrayBuffer | null): ParsedD for (let i = 0; i < lines.length; i++) { const lineSrc = lines[i]; - const level = lineSrc.search(/\S|$/)/3 + const level = lineSrc.search(/\S|$/)/3; const line = lineSrc.trim(); if (line.startsWith('[') && line.endsWith(']')) { @@ -496,5 +496,5 @@ function getGridPosition(deskSize: {width: number, height: number}, dataView: Da y: y, h: h, w: w, - } + }; } \ No newline at end of file From 7e94101c9f773461c9803188ea3ec5967a36e4d3 Mon Sep 17 00:00:00 2001 From: dprizentsov Date: Mon, 19 Jan 2026 11:13:15 +0100 Subject: [PATCH 7/7] cleanup Signed-off-by: dprizentsov --- .../rmf-app/src/components/Root/PmImport.ts | 2 +- grafana/rmf-app/src/components/Root/Root.tsx | 17 +- grafana/rmf-app/src/metrics/dds/index.json | 465 ++---------------- 3 files changed, 51 insertions(+), 433 deletions(-) diff --git a/grafana/rmf-app/src/components/Root/PmImport.ts b/grafana/rmf-app/src/components/Root/PmImport.ts index cbdce7b..d90afbf 100644 --- a/grafana/rmf-app/src/components/Root/PmImport.ts +++ b/grafana/rmf-app/src/components/Root/PmImport.ts @@ -134,7 +134,7 @@ interface ParsedData { export function parsePmImportFile(content: string | ArrayBuffer | null): ParsedData { if (!content) { - return {}; + throw new Error("RMF PM dashboard import file is invalid"); } content = content.toString(); const lines = content.split('\n'); diff --git a/grafana/rmf-app/src/components/Root/Root.tsx b/grafana/rmf-app/src/components/Root/Root.tsx index 8f9bee6..2af990d 100644 --- a/grafana/rmf-app/src/components/Root/Root.tsx +++ b/grafana/rmf-app/src/components/Root/Root.tsx @@ -182,13 +182,8 @@ export class Root extends PureComponent { }; importDashboard = async (folderUid: string, operCode: OperCode, dashboards: any[]) => { - //const isDds = folderUid === DDS_FOLDER_UID; const defaultFolderName = PM_FOLDER_NAME; - /*this.setFolderState(isDds, { - code: operCode, - status: OperStatus.InProgress, - });*/ var err; try { if (operCode === OperCode.Reset || operCode === OperCode.Delete) { @@ -197,15 +192,7 @@ export class Root extends PureComponent { if (operCode === OperCode.Reset || operCode === OperCode.Install) { await installDashboards(folderUid, defaultFolderName, dashboards, {enabled: false} as FalconStatus); } - /*this.setFolderState(isDds, { - code: operCode, - status: OperStatus.Done, - });*/ } catch (error) { - /*this.setFolderState(isDds, { - code: operCode, - status: OperStatus.Error, - });*/ const appEvents = getAppEvents(); appEvents.publish({ type: AppEvents.alertError.name, @@ -476,7 +463,7 @@ export class Root extends PureComponent {

logo for IBM RMF - Import Dashboards from RMF Performance Monitoring File + Import Dashboards from RMF Performance Monitoring


@@ -532,7 +519,7 @@ export class Root extends PureComponent {

- Note: Ensure imported datasources have DDS Server credentials if required and fully qualified domain names or accessible IP addresses before using the dashboards. + Note: Data sources defined in RMF PM dashboards are imported without credentials. Make sure to update the data source settings with valid credentials if corresponding DDS requires authentication.

diff --git a/grafana/rmf-app/src/metrics/dds/index.json b/grafana/rmf-app/src/metrics/dds/index.json index b8a68a3..6e69fd5 100644 --- a/grafana/rmf-app/src/metrics/dds/index.json +++ b/grafana/rmf-app/src/metrics/dds/index.json @@ -1,8 +1,4 @@ { - "attributeList": [], - "containedResourcesList": [], - "filterInstancesList": [], - "message": [], "metricList": [{ "metric": [{ "id": "8D4FE0", @@ -82,14 +78,7 @@ }, { "id": "8D5A50", "listtype": " " - }], - "resource": { - "attributes": "YES", - "expandable": "NO", - "icon": "rmfaggre.gif", - "reslabel": "RS26,*,AGGREGATE", - "restype": "AGGREGATE" - } + }] }, { "metric": [{ "id": "8D2370", @@ -142,14 +131,7 @@ }, { "id": "8D05D0", "listtype": "U" - }], - "resource": { - "attributes": "NO", - "expandable": "YES", - "icon": "rmfallch.gif", - "reslabel": "RS26,*,ALL_CHANNELS", - "restype": "ALL_CHANNELS" - } + }] }, { "metric": [{ "id": "8D0690", @@ -175,14 +157,7 @@ }, { "id": "8D05C0", "listtype": "U" - }], - "resource": { - "attributes": "NO", - "expandable": "YES", - "icon": "rmfalllc.gif", - "reslabel": "RS26,*,ALL_LCUS", - "restype": "ALL_LCUS" - } + }] }, { "metric": [{ "id": "8D2210", @@ -202,14 +177,7 @@ }, { "id": "8D2310", "listtype": "I" - }], - "resource": { - "attributes": "NO", - "expandable": "YES", - "icon": "rmfallss.gif", - "reslabel": "RS26,*,ALL_SSIDS", - "restype": "ALL_SSIDS" - } + }] }, { "metric": [{ "id": "8D2A50", @@ -280,14 +248,7 @@ }, { "id": "8D12C0", "listtype": "V" - }], - "resource": { - "attributes": "NO", - "expandable": "YES", - "icon": "rmfallvo.gif", - "reslabel": "RS26,*,ALL_VOLUMES", - "restype": "ALL_VOLUMES" - } + }] }, { "metric": [{ "id": "8D5E10", @@ -322,14 +283,7 @@ }, { "id": "8D6ED0", "listtype": "R" - }], - "resource": { - "attributes": "NO", - "expandable": "YES", - "icon": "rmfwlm.gif", - "reslabel": "RS26,*,ALL_WLM_REPORT_CLASSES", - "restype": "ALL_WLM_REPORT_CLASSES" - } + }] }, { "metric": [{ "id": "8D6E30", @@ -340,14 +294,7 @@ }, { "id": "8D6E70", "listtype": "7" - }], - "resource": { - "attributes": "NO", - "expandable": "YES", - "icon": "rmfwlm.gif", - "reslabel": "RS26,*,ALL_WLM_RESOURCE_GROUPS", - "restype": "ALL_WLM_RESOURCE_GROUPS" - } + }] }, { "metric": [{ "id": "8D5E30", @@ -412,14 +359,7 @@ }, { "id": "8D6F10", "listtype": "W" - }], - "resource": { - "attributes": "NO", - "expandable": "YES", - "icon": "rmfwlm.gif", - "reslabel": "RS26,*,ALL_WLM_WORKLOADS", - "restype": "ALL_WLM_WORKLOADS" - } + }] }, { "metric": [{ "id": "8D0D30", @@ -430,14 +370,7 @@ }, { "id": "8D0D40", "listtype": "J" - }], - "resource": { - "attributes": "NO", - "expandable": "NO", - "icon": "rmfaux.gif", - "reslabel": "RS26,*,AUXILIARY_STORAGE", - "restype": "AUXILIARY_STORAGE" - } + }] }, { "metric": [{ "id": "8D0370", @@ -490,14 +423,7 @@ }, { "id": "8D1280", "listtype": "J" - }], - "resource": { - "attributes": "YES", - "expandable": "YES", - "icon": "rmfcentr.gif", - "reslabel": "RS26,*,CENTRAL_STORAGE", - "restype": "CENTRAL_STORAGE" - } + }] }, { "metric": [{ "id": "8D39A0", @@ -526,14 +452,7 @@ }, { "id": "8D2180", "listtype": "M" - }], - "resource": { - "attributes": "YES", - "expandable": "NO", - "icon": "rmfcfstr.gif", - "reslabel": "RS26,*,CF_STRUCTURE", - "restype": "CF_STRUCTURE" - } + }] }, { "metric": [{ "id": "8D2360", @@ -580,14 +499,7 @@ }, { "id": "8D44C0", "listtype": " " - }], - "resource": { - "attributes": "YES", - "expandable": "NO", - "icon": "rmfchann.gif", - "reslabel": "RS26,*,CHANNEL_PATH", - "restype": "CHANNEL_PATH" - } + }] }, { "metric": [{ "id": "8D4670", @@ -661,14 +573,7 @@ }, { "id": "8D2170", "listtype": "T" - }], - "resource": { - "attributes": "YES", - "expandable": "YES", - "icon": "rmfcf.gif", - "reslabel": "RS26,*,COUPLING_FACILITY", - "restype": "COUPLING_FACILITY" - } + }] }, { "metric": [{ "id": "8D3290", @@ -1066,14 +971,7 @@ }, { "id": "8D6E10", "listtype": "6" - }], - "resource": { - "attributes": "YES", - "expandable": "YES", - "icon": "rmfcpc.gif", - "reslabel": "RS26,*,CPC", - "restype": "CPC" - } + }] }, { "metric": [{ "id": "8D6470", @@ -1309,14 +1207,7 @@ }, { "id": "8D6E10", "listtype": "6" - }], - "resource": { - "attributes": "NO", - "expandable": "YES", - "icon": "rmfpcie.gif", - "reslabel": "RS26,*,CRYPTO", - "restype": "CRYPTO" - } + }] }, { "metric": [{ "id": "8D6460", @@ -1552,14 +1443,7 @@ }, { "id": "8D6E00", "listtype": " " - }], - "resource": { - "attributes": "YES", - "expandable": "NO", - "icon": "rmfpfie.gif", - "reslabel": "RS26,*,CRYPTO_CARD", - "restype": "CRYPTO_CARD" - } + }] }, { "metric": [{ "id": "8D0050", @@ -1588,14 +1472,7 @@ }, { "id": "8D0CF0", "listtype": "J" - }], - "resource": { - "attributes": "NO", - "expandable": "NO", - "icon": "rmfcsa.gif", - "reslabel": "RS26,*,CSA", - "restype": "CSA" - } + }] }, { "metric": [{ "id": "8D0050", @@ -1624,23 +1501,7 @@ }, { "id": "8D0CF0", "listtype": "J" - }], - "resource": { - "attributes": "NO", - "expandable": "NO", - "icon": "rmfecsa.gif", - "reslabel": "RS26,*,ECSA", - "restype": "ECSA" - } - }, { - "metric": [], - "resource": { - "attributes": "YES", - "expandable": "NO", - "icon": "rmfencla.gif", - "reslabel": "RS26,*,ENCLAVE", - "restype": "ENCLAVE" - } + }] }, { "metric": [{ "id": "8D00E0", @@ -1666,14 +1527,7 @@ }, { "id": "8D1840", "listtype": "W" - }], - "resource": { - "attributes": "NO", - "expandable": "NO", - "icon": "rmfenque.gif", - "reslabel": "RS26,*,ENQUEUE", - "restype": "ENQUEUE" - } + }] }, { "metric": [{ "id": "8D0050", @@ -1702,23 +1556,7 @@ }, { "id": "8D0CF0", "listtype": "J" - }], - "resource": { - "attributes": "NO", - "expandable": "NO", - "icon": "rmfesqa.gif", - "reslabel": "RS26,*,ESQA", - "restype": "ESQA" - } - }, { - "metric": [], - "resource": { - "attributes": "YES", - "expandable": "NO", - "icon": "rmfexpan.gif", - "reslabel": "RS26,*,EXPANDED_STORAGE", - "restype": "EXPANDED_STORAGE" - } + }] }, { "metric": [{ "id": "8D00F0", @@ -1741,14 +1579,7 @@ }, { "id": "8D1850", "listtype": "W" - }], - "resource": { - "attributes": "NO", - "expandable": "NO", - "icon": "rmfhsm.gif", - "reslabel": "RS26,*,HSM", - "restype": "HSM" - } + }] }, { "metric": [{ "id": "8D00A0", @@ -1864,14 +1695,7 @@ }, { "id": "8D1EA0", "listtype": "W" - }], - "resource": { - "attributes": "NO", - "expandable": "YES", - "icon": "rmfiosub.gif", - "reslabel": "RS26,*,I/O_SUBSYSTEM", - "restype": "I/O_SUBSYSTEM" - } + }] }, { "metric": [{ "id": "8D0100", @@ -1894,14 +1718,7 @@ }, { "id": "8D1860", "listtype": "W" - }], - "resource": { - "attributes": "NO", - "expandable": "NO", - "icon": "rmfjes.gif", - "reslabel": "RS26,*,JES", - "restype": "JES" - } + }] }, { "metric": [{ "id": "8D0680", @@ -1957,14 +1774,7 @@ }, { "id": "8D12C0", "listtype": "V" - }], - "resource": { - "attributes": "NO", - "expandable": "NO", - "icon": "rmflcu.gif", - "reslabel": "RS26,*,LOGICAL_CONTROL_UNIT", - "restype": "LOGICAL_CONTROL_UNIT" - } + }] }, { "metric": [{ "id": "8D2870", @@ -2197,14 +2007,7 @@ }, { "id": "8D4BF0", "listtype": " " - }], - "resource": { - "attributes": "YES", - "expandable": "NO", - "icon": "rmflpar.gif", - "reslabel": "RS26,*,LPAR", - "restype": "LPAR" - } + }] }, { "metric": [{ "id": "8D0160", @@ -2524,14 +2327,7 @@ }, { "id": "8D3EC0", "listtype": "4" - }], - "resource": { - "attributes": "YES", - "expandable": "YES", - "icon": "rmfmvsim.gif", - "reslabel": "RS26,*,MVS_IMAGE", - "restype": "MVS_IMAGE" - } + }] }, { "metric": [{ "id": "8D0110", @@ -2554,14 +2350,7 @@ }, { "id": "8D1870", "listtype": "W" - }], - "resource": { - "attributes": "NO", - "expandable": "NO", - "icon": "rmfopera.gif", - "reslabel": "RS26,*,OPERATOR", - "restype": "OPERATOR" - } + }] }, { "metric": [{ "id": "8D4C60", @@ -2674,14 +2463,7 @@ }, { "id": "8D4FD0", "listtype": "H" - }], - "resource": { - "attributes": "NO", - "expandable": "NO", - "icon": "rmfpcie.gif", - "reslabel": "RS26,*,PCIE", - "restype": "PCIE" - } + }] }, { "metric": [{ "id": "8D4C50", @@ -2794,14 +2576,7 @@ }, { "id": "8D4FC0", "listtype": " " - }], - "resource": { - "attributes": "YES", - "expandable": "NO", - "icon": "rmfpfie.gif", - "reslabel": "RS26,*,PCIE_FUNCTION", - "restype": "PCIE_FUNCTION" - } + }] }, { "metric": [{ "id": "8D0600", @@ -3325,14 +3100,7 @@ }, { "id": "8D3F10", "listtype": "W" - }], - "resource": { - "attributes": "YES", - "expandable": "NO", - "icon": "rmfproc.gif", - "reslabel": "RS26,*,PROCESSOR", - "restype": "PROCESSOR" - } + }] }, { "metric": [{ "id": "8D5AC0", @@ -3400,14 +3168,7 @@ }, { "id": "8D5C00", "listtype": "Z" - }], - "resource": { - "attributes": "NO", - "expandable": "NO", - "icon": "rmfscm.gif", - "reslabel": "RS26,*,SCM", - "restype": "SCM" - } + }] }, { "metric": [{ "id": "8D5A80", @@ -3442,14 +3203,7 @@ }, { "id": "8D5BF0", "listtype": " " - }], - "resource": { - "attributes": "NO", - "expandable": "NO", - "icon": "rmfscmc.gif", - "reslabel": "RS26,*,SCM_CARD", - "restype": "SCM_CARD" - } + }] }, { "metric": [{ "id": "8D0050", @@ -3478,14 +3232,7 @@ }, { "id": "8D0CF0", "listtype": "J" - }], - "resource": { - "attributes": "NO", - "expandable": "NO", - "icon": "rmfsqa.gif", - "reslabel": "RS26,*,SQA", - "restype": "SQA" - } + }] }, { "metric": [{ "id": "8D21E0", @@ -3517,14 +3264,7 @@ }, { "id": "8D2350", "listtype": "V" - }], - "resource": { - "attributes": "YES", - "expandable": "NO", - "icon": "rmfssid.gif", - "reslabel": "RS26,*,SSID", - "restype": "SSID" - } + }] }, { "metric": [{ "id": "8D0130", @@ -4045,14 +3785,7 @@ }, { "id": "8D1070", "listtype": "W" - }], - "resource": { - "attributes": "NO", - "expandable": "YES", - "icon": "rmfstora.gif", - "reslabel": "RS26,*,STORAGE", - "restype": "STORAGE" - } + }] }, { "metric": [{ "id": "8D0140", @@ -4075,14 +3808,7 @@ }, { "id": "8D18A0", "listtype": "W" - }], - "resource": { - "attributes": "NO", - "expandable": "YES", - "icon": "rmfswsub.gif", - "reslabel": "RS26,*,SW_SUBSYSTEMS", - "restype": "SW_SUBSYSTEMS" - } + }] }, { "metric": [{ "id": "8D0160", @@ -5560,23 +5286,7 @@ }, { "id": "8D6E70", "listtype": "7" - }], - "resource": { - "attributes": "YES", - "expandable": "YES", - "icon": "rmfsyspl.gif", - "reslabel": "RS26,RSPLEX01,SYSPLEX", - "restype": "SYSPLEX" - } - }, { - "metric": [], - "resource": { - "attributes": "YES", - "expandable": "NO", - "icon": "rmfusspr.gif", - "reslabel": "RS26,*,USS_PROCESS", - "restype": "USS_PROCESS" - } + }] }, { "metric": [{ "id": "8D0010", @@ -5653,14 +5363,7 @@ }, { "id": "8D0500", "listtype": "J" - }], - "resource": { - "attributes": "YES", - "expandable": "NO", - "icon": "rmfvolum.gif", - "reslabel": "RS26,*,VOLUME", - "restype": "VOLUME" - } + }] }, { "metric": [{ "id": "8D5E10", @@ -5767,14 +5470,7 @@ }, { "id": "8D6E70", "listtype": "7" - }], - "resource": { - "attributes": "YES", - "expandable": "YES", - "icon": "rmfwlm.gif", - "reslabel": "RS26,*,WLM_ACTIVE_POLICY", - "restype": "WLM_ACTIVE_POLICY" - } + }] }, { "metric": [{ "id": "8D5DF0", @@ -5794,14 +5490,7 @@ }, { "id": "8D6EC0", "listtype": " " - }], - "resource": { - "attributes": "NO", - "expandable": "NO", - "icon": "rmfwlm.gif", - "reslabel": "RS26,*,WLM_RC_PERIOD", - "restype": "WLM_RC_PERIOD" - } + }] }, { "metric": [{ "id": "8D5DF0", @@ -5836,14 +5525,7 @@ }, { "id": "8D6EE0", "listtype": "K" - }], - "resource": { - "attributes": "YES", - "expandable": "NO", - "icon": "rmfwlm.gif", - "reslabel": "RS26,*,WLM_REPORT_CLASS", - "restype": "WLM_REPORT_CLASS" - } + }] }, { "metric": [{ "id": "8D6E20", @@ -5854,14 +5536,7 @@ }, { "id": "8D6E60", "listtype": " " - }], - "resource": { - "attributes": "YES", - "expandable": "NO", - "icon": "rmfwlm.gif", - "reslabel": "RS26,*,WLM_RESOURCE_GROUP", - "restype": "WLM_RESOURCE_GROUP" - } + }] }, { "metric": [{ "id": "8D5DF0", @@ -5887,14 +5562,7 @@ }, { "id": "8D6EC0", "listtype": " " - }], - "resource": { - "attributes": "YES", - "expandable": "NO", - "icon": "rmfwlm.gif", - "reslabel": "RS26,*,WLM_SC_PERIOD", - "restype": "WLM_SC_PERIOD" - } + }] }, { "metric": [{ "id": "8D5DF0", @@ -5944,14 +5612,7 @@ }, { "id": "8D6F00", "listtype": "P" - }], - "resource": { - "attributes": "YES", - "expandable": "NO", - "icon": "rmfwlm.gif", - "reslabel": "RS26,*,WLM_SERVICE_CLASS", - "restype": "WLM_SERVICE_CLASS" - } + }] }, { "metric": [{ "id": "8D5DF0", @@ -6016,14 +5677,7 @@ }, { "id": "8D6EF0", "listtype": "S" - }], - "resource": { - "attributes": "YES", - "expandable": "NO", - "icon": "rmfwlm.gif", - "reslabel": "RS26,*,WLM_WORKLOAD", - "restype": "WLM_WORKLOAD" - } + }] }, { "metric": [{ "id": "8D0150", @@ -6046,14 +5700,7 @@ }, { "id": "8D18B0", "listtype": "W" - }], - "resource": { - "attributes": "NO", - "expandable": "NO", - "icon": "rmfxcf.gif", - "reslabel": "RS26,*,XCF", - "restype": "XCF" - } + }] }, { "metric": [{ "id": "8D53A0", @@ -6271,22 +5918,6 @@ }, { "id": "8D5A70", "listtype": "G" - }], - "resource": { - "attributes": "NO", - "expandable": "YES", - "icon": "rmfzfs.gif", - "reslabel": "RS26,*,ZFS", - "restype": "ZFS" - } - }], - "postprocessor": [], - "report": [], - "server": { - "functionality": "3650", - "name": "RMF-DDS-Server", - "platform": "z/OS", - "version": "03.01.00" - }, - "workscopeList": [] + }] + }] } \ No newline at end of file