From fac7d9d73045d86cd76d3be332ba150a897c410b Mon Sep 17 00:00:00 2001 From: dprizentsov Date: Fri, 21 Nov 2025 19:09:06 +0100 Subject: [PATCH 01/26] removing dependencies from ibm-rmf-panel separate table from banner with timestamps and caption with non table properties Signed-off-by: dprizentsov --- grafana/rmf-app/grammar/RMFQuery.g4 | 8 +- grafana/rmf-app/pkg/plugin/datasource.go | 113 +++++++++++- grafana/rmf-app/pkg/plugin/query.go | 12 ++ .../rmf-app/src/dashboards/dds/CACHDET.json | 167 +++++++++++++++-- .../rmf-app/src/dashboards/dds/CACHSUM.json | 169 +++++++++++++++-- grafana/rmf-app/src/dashboards/dds/CFACT.json | 95 ++++++++-- .../rmf-app/src/dashboards/dds/CFOVER.json | 169 +++++++++++++++-- grafana/rmf-app/src/dashboards/dds/CFSYS.json | 95 ++++++++-- .../rmf-app/src/dashboards/dds/CHANNEL.json | 98 ++++++++-- grafana/rmf-app/src/dashboards/dds/CPC.json | 172 +++++++++++++++-- .../rmf-app/src/dashboards/dds/CRYOVW.json | 95 ++++++++-- grafana/rmf-app/src/dashboards/dds/DELAY.json | 98 ++++++++-- grafana/rmf-app/src/dashboards/dds/DEV.json | 98 ++++++++-- grafana/rmf-app/src/dashboards/dds/DEVR.json | 98 ++++++++-- grafana/rmf-app/src/dashboards/dds/DSND.json | 96 ++++++++-- grafana/rmf-app/src/dashboards/dds/EADM.json | 174 ++++++++++++++++-- .../rmf-app/src/dashboards/dds/ENCLAVE.json | 172 +++++++++++++++-- grafana/rmf-app/src/dashboards/dds/ENQ.json | 98 ++++++++-- grafana/rmf-app/src/dashboards/dds/HSM.json | 98 ++++++++-- grafana/rmf-app/src/dashboards/dds/IOQ.json | 98 ++++++++-- grafana/rmf-app/src/dashboards/dds/JES.json | 98 ++++++++-- .../rmf-app/src/dashboards/dds/LOCKSP.json | 172 +++++++++++++++-- .../rmf-app/src/dashboards/dds/LOCKSU.json | 170 +++++++++++++++-- grafana/rmf-app/src/dashboards/dds/OPD.json | 170 +++++++++++++++-- grafana/rmf-app/src/dashboards/dds/PCIE.json | 172 +++++++++++++++-- grafana/rmf-app/src/dashboards/dds/PROC.json | 98 ++++++++-- grafana/rmf-app/src/dashboards/dds/PROCU.json | 98 ++++++++-- .../rmf-app/src/dashboards/dds/SPACED.json | 95 ++++++++-- .../rmf-app/src/dashboards/dds/SPACEG.json | 95 ++++++++-- grafana/rmf-app/src/dashboards/dds/STOR.json | 98 ++++++++-- grafana/rmf-app/src/dashboards/dds/STORC.json | 172 +++++++++++++++-- .../rmf-app/src/dashboards/dds/STORCR.json | 96 ++++++++-- grafana/rmf-app/src/dashboards/dds/STORF.json | 98 ++++++++-- grafana/rmf-app/src/dashboards/dds/STORM.json | 172 +++++++++++++++-- grafana/rmf-app/src/dashboards/dds/STORR.json | 172 +++++++++++++++-- grafana/rmf-app/src/dashboards/dds/STORS.json | 172 +++++++++++++++-- .../rmf-app/src/dashboards/dds/SYSINFO.json | 172 +++++++++++++++-- grafana/rmf-app/src/dashboards/dds/SYSRG.json | 95 ++++++++-- .../rmf-app/src/dashboards/dds/SYSSUM.json | 169 +++++++++++++++-- grafana/rmf-app/src/dashboards/dds/USAGE.json | 98 ++++++++-- .../rmf-app/src/dashboards/dds/XCFGROUP.json | 95 ++++++++-- .../rmf-app/src/dashboards/dds/XCFOVW.json | 95 ++++++++-- .../rmf-app/src/dashboards/dds/XCFPATH.json | 95 ++++++++-- .../rmf-app/src/dashboards/dds/XCFSYS.json | 95 ++++++++-- grafana/rmf-app/src/dashboards/dds/ZFSFS.json | 93 ++++++++-- grafana/rmf-app/src/dashboards/dds/ZFSKN.json | 95 ++++++++-- .../rmf-app/src/dashboards/dds/ZFSOVW.json | 93 ++++++++-- .../src/datasource/parser/core/parser.ts | 11 +- 48 files changed, 4978 insertions(+), 599 deletions(-) diff --git a/grafana/rmf-app/grammar/RMFQuery.g4 b/grafana/rmf-app/grammar/RMFQuery.g4 index c2a5d61d..d5406150 100644 --- a/grafana/rmf-app/grammar/RMFQuery.g4 +++ b/grafana/rmf-app/grammar/RMFQuery.g4 @@ -30,7 +30,7 @@ Examples: grammar RMFQuery; -query: WS* RES_TYPE (DOT REPORT)? DOT identifier WS* qualifiers? WS* EOF; +query: WS* RES_TYPE (DOT REPORT)? (DOT REPORT_CAPTION)? (DOT REPORT_BANNER)? DOT identifier WS* qualifiers? WS* EOF; // A workaround: some reports are also resource TYPES (e.g. CPC). // In general, the problem is that we define keywords that are not distiguashable for antlr from // string literals which we also support. @@ -54,7 +54,7 @@ workscopeValue: string? COMMA string? COMMA WORKSCOPE_TYPE; // Another workaround: it won't work on token level. number: INTEGER | DECIMAL; stringUnquoted - : IDENTIFIER | RES_TYPE | REPORT | WORKSCOPE | RANGE | ULQ | NAME | FILTER + : IDENTIFIER | RES_TYPE | REPORT | REPORT_CAPTION | REPORT_BANNER | WORKSCOPE | RANGE | ULQ | NAME | FILTER | PAT | LB | UB | HI | LO | ORD | ORD_OPTION | INTEGER | STRING_UNQUOTED; stringSpaced: stringUnquoted (WS + stringUnquoted)*; stringDotted: stringUnquoted (DOT stringUnquoted)*; @@ -62,6 +62,8 @@ string: stringDotted | STRING_QUOTED; REPORT: R E P O R T; +REPORT_CAPTION: R E P O R T UNDERSCORE C A P T I O N; +REPORT_BANNER: R E P O R T UNDERSCORE B A N N E R; WORKSCOPE: W O R K S C O P E; RANGE: R A N G E; ULQ: U L Q; @@ -144,9 +146,11 @@ WS: [ \n\t\r]+; fragment SINGLE_QUOTE: '\''; fragment DOUBLE_QOUTE: '"'; +fragment UNDERSCORE: '_'; fragment STRING_ITEM_NO_QUOTE: ~[ .;{}=,]; fragment STRING_ITEM_SINGLE_QUOTE: ~'\''; fragment STRING_ITEM_DOUBLE_QUOTE: ~'"'; +fragment STRING_ITEM_UNDERSCORE: ~'_'; fragment A : [aA]; fragment B : [bB]; fragment C : [cC]; diff --git a/grafana/rmf-app/pkg/plugin/datasource.go b/grafana/rmf-app/pkg/plugin/datasource.go index f4f68d8e..931891a3 100644 --- a/grafana/rmf-app/pkg/plugin/datasource.go +++ b/grafana/rmf-app/pkg/plugin/datasource.go @@ -21,7 +21,9 @@ import ( "context" "encoding/json" "errors" + "fmt" "net/http" + "regexp" "runtime/debug" "slices" "strings" @@ -56,6 +58,7 @@ var ( const ChannelCacheSizeMB = 64 const SdsDelay = 5 * time.Second const TimeSeriesType = "TimeSeries" +const QueryPattern = `^([A-Za-z_][A-Za-z0-9_]*)\(([^)]*)\)$` // e.g., banner(resource), table(resource), caption(resource) type RMFDatasource struct { uid string @@ -65,6 +68,7 @@ type RMFDatasource struct { ddsClient *dds.Client single singleflight.Group omegamonDs string + queryMatcher *regexp.Regexp } // NewRMFDatasource creates a new instance of the RMF datasource. @@ -86,6 +90,7 @@ func NewRMFDatasource(ctx context.Context, settings backend.DataSourceInstanceSe "uid", settings.UID, "name", settings.Name, "url", config.URL, "timeout", config.Timeout, "cacheSize", config.CacheSize, "username", config.Username, "tlsSkipVerify", config.JSON.TlsSkipVerify) + ds.queryMatcher = regexp.MustCompile(QueryPattern) return ds, nil } @@ -335,10 +340,14 @@ func (ds *RMFDatasource) QueryData(ctx context.Context, req *backend.QueryDataRe } } else { // Query non-timeseries data - r := dds.NewRequest(params.Resource.Value, q.TimeRange.From.UTC(), q.TimeRange.To.UTC(), mintime) + queryKind, query := ds.parseQuery(params.Resource.Value) + r := dds.NewRequest(query, q.TimeRange.From.UTC(), q.TimeRange.To.UTC(), mintime) response = &backend.DataResponse{} - // FIXME: doesn't it need to be cached? - if newFrame, err := ds.getFrame(r, false); err != nil { + newFrame, err := ds.getCachedReportFrames(r) + if newFrame == nil || err != nil { + newFrame, err = ds.getFrame(r, false) + } + if err != nil { var msg *dds.Message if errors.As(err, &msg) { response.Error = err @@ -348,6 +357,15 @@ func (ds *RMFDatasource) QueryData(ctx context.Context, req *backend.QueryDataRe response.Status = backend.StatusInternal } } else if newFrame != nil { + ds.setCachedReportFrames(newFrame, r) + switch queryKind { + case "banner": + newFrame = ds.getFrameBanner(newFrame) + case "caption": + newFrame = ds.getFrameCaption(newFrame) + case "table": + newFrame = ds.getFrameTable(newFrame) + } response.Frames = append(response.Frames, newFrame) } } @@ -450,3 +468,92 @@ func (ds *RMFDatasource) SubscribeStream(_ context.Context, req *backend.Subscri func (d *RMFDatasource) PublishStream(_ context.Context, req *backend.PublishStreamRequest) (*backend.PublishStreamResponse, error) { return &backend.PublishStreamResponse{Status: backend.PublishStreamStatusPermissionDenied}, nil } + +func (d *RMFDatasource) parseQuery(resource string) (string, string) { + matches := d.queryMatcher.FindStringSubmatch(resource) + if len(matches) == 3 { + return strings.ToLower(matches[1]), matches[2] + } + return "", resource +} + +func copyReportField(field *data.Field, length int) *data.Field { + var newField *data.Field + t := field.Type() + switch t { + case data.FieldTypeNullableFloat64: + newField = data.NewField(field.Name, field.Labels, []*float64{}) + case data.FieldTypeNullableString: + newField = data.NewField(field.Name, field.Labels, []*string{}) + default: + newField = data.NewField(field.Name, field.Labels, []string{}) + } + newField.SetConfig(field.Config) + length = slices.Min([]int{length, field.Len()}) + for i := 0; i < length; i++ { + newField.Append(field.At(i)) + } + return newField +} + +func (ds *RMFDatasource) getFrameTable(f *data.Frame) *data.Frame { + var newFrame data.Frame + for _, field := range f.Fields { + if !strings.HasPrefix(field.Name, frame.CaptionPrefix) && + !strings.HasPrefix(field.Name, frame.BannerPrefix) { + var newField *data.Field = copyReportField(field, field.Len()) + newField.Delete(0) + newFrame.Fields = append(newFrame.Fields, newField) + } + } + return &newFrame +} + +func (ds *RMFDatasource) getFrameCaption(f *data.Frame) *data.Frame { + var newFrame data.Frame + newFrame.Fields = append(newFrame.Fields, data.NewField("Key", nil, []string{})) + newFrame.Fields = append(newFrame.Fields, data.NewField("Value", nil, []string{})) + for _, field := range f.Fields { + if strings.HasPrefix(field.Name, frame.CaptionPrefix) { + key := strings.TrimPrefix(field.Name, frame.CaptionPrefix) + value := getStringAt(field, 0) + newFrame.Fields[0].Append(key) + newFrame.Fields[1].Append(value) + } + } + return &newFrame +} + +func (ds *RMFDatasource) getFrameBanner(f *data.Frame) *data.Frame { + var newFrame data.Frame + newFrame.Fields = append(newFrame.Fields, data.NewField("Key", nil, []string{})) + newFrame.Fields = append(newFrame.Fields, data.NewField("Value", nil, []string{})) + for _, field := range f.Fields { + if strings.HasPrefix(field.Name, frame.BannerPrefix) { + key := strings.TrimPrefix(field.Name, frame.BannerPrefix) + value := getStringAt(field, 0) + newFrame.Fields[0].Append(key) + newFrame.Fields[1].Append(value) + } + } + return &newFrame +} + +func getStringAt(field *data.Field, index int) string { + value := "" + if field.Len() > index { + v := field.At(index) + if v != nil { + if s, ok := v.(string); ok { + value = s + } else if s, ok := v.(*string); ok { + if s != nil { + value = *s + } + } else if f, ok := v.(float64); ok { + value = fmt.Sprintf("%f", f) + } + } + } + return value +} diff --git a/grafana/rmf-app/pkg/plugin/query.go b/grafana/rmf-app/pkg/plugin/query.go index 49e79f21..be74eb4b 100644 --- a/grafana/rmf-app/pkg/plugin/query.go +++ b/grafana/rmf-app/pkg/plugin/query.go @@ -91,6 +91,18 @@ func (ds *RMFDatasource) getCachedTSFrames(r *dds.Request, stop time.Time, step return f, jump, err } +func (ds *RMFDatasource) getCachedReportFrames(r *dds.Request) (*data.Frame, error) { + f := ds.frameCache.Get(r, true) + return f, nil +} + +func (ds *RMFDatasource) setCachedReportFrames(f *data.Frame, r *dds.Request) { + logger := log.Logger.With("func", "setCachedReportFrames") + if err := ds.frameCache.Set(f, r, true); err != nil { + logger.Error("failed to save data in cache", "request", r.String(), "reason", err) + } +} + func (ds *RMFDatasource) serveTSFrame(ctx context.Context, sender *backend.StreamSender, fields frame.SeriesFields, r *dds.Request, hist bool) error { logger := log.Logger.With("func", "serveTSFrame") var f *data.Frame diff --git a/grafana/rmf-app/src/dashboards/dds/CACHDET.json b/grafana/rmf-app/src/dashboards/dds/CACHDET.json index c80b8d2c..375ed78b 100644 --- a/grafana/rmf-app/src/dashboards/dds/CACHDET.json +++ b/grafana/rmf-app/src/dashboards/dds/CACHDET.json @@ -13,12 +13,6 @@ "id": "ibm-rmf-datasource", "name": "IBM RMF for z/OS", "version": "%VERSION%" - }, - { - "type": "panel", - "id": "ibm-rmf-panel", - "name": "Report for IBM RMF for z/OS", - "version": "%VERSION%" } ], "annotations": { @@ -83,10 +77,10 @@ "overrides": [] }, "gridPos": { - "h": 22, + "h": 14, "w": 24, "x": 0, - "y": 0 + "y": 7 }, "id": 2, "interval": "1m", @@ -101,8 +95,8 @@ "rmfPanelGuid": "a30ba0f0-e67a-44b0-bfe6-3b437603e414", "selectedQuery": "SYSPLEX.REPORT.CACHDET", "selectedResource": { - "label": "report=CACHDET&resource=,,SYSPLEX", - "value": "report=CACHDET&resource=,,SYSPLEX" + "label": "TABLE(report=CACHDET&resource=,,SYSPLEX)", + "value": "TABLE(report=CACHDET&resource=,,SYSPLEX)" }, "selectedVisualisationType": "table" } @@ -379,7 +373,155 @@ } } ], - "type": "ibm-rmf-panel" + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 7, + "w": 12, + "x": 0, + "y": 0 + }, + "id": 2, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", + "selectedQuery": "SYSPLEX.REPORT_BANNER.CACHDET", + "selectedResource": { + "label": "BANNER(report=CACHDET&resource=,,SYSPLEX)", + "value": "BANNER(report=CACHDET&resource=,,SYSPLEX)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 7, + "w": 12, + "x": 12, + "y": 0 + }, + "id": 3, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "885ff52d-c1c1-4112-951f-acdec5c20116", + "selectedQuery": "SYSPLEX.REPORT_CAPTION.CACHDET", + "selectedResource": { + "label": "CAPTION(report=CACHDET&resource=,,SYSPLEX)", + "value": "CAPTION(report=CACHDET&resource=,,SYSPLEX)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" } ], "schemaVersion": 37, @@ -408,7 +550,8 @@ "refresh": 1, "regex": "", "skipUrlSync": false, - "type": "datasource" + "type": "datasource", + "allowCustomValue": false }, { "datasource": { diff --git a/grafana/rmf-app/src/dashboards/dds/CACHSUM.json b/grafana/rmf-app/src/dashboards/dds/CACHSUM.json index 2d0305e6..915841d7 100644 --- a/grafana/rmf-app/src/dashboards/dds/CACHSUM.json +++ b/grafana/rmf-app/src/dashboards/dds/CACHSUM.json @@ -13,12 +13,6 @@ "id": "ibm-rmf-datasource", "name": "IBM RMF for z/OS", "version": "%VERSION%" - }, - { - "type": "panel", - "id": "ibm-rmf-panel", - "name": "Report for IBM RMF for z/OS", - "version": "%VERSION%" } ], "annotations": { @@ -83,12 +77,12 @@ "overrides": [] }, "gridPos": { - "h": 22, + "h": 14, "w": 24, "x": 0, - "y": 0 + "y": 7 }, - "id": 2, + "id": 1, "interval": "1m", "maxDataPoints": 1, "targets": [ @@ -101,8 +95,8 @@ "rmfPanelGuid": "0a230d99-a837-4aff-b520-3b6c68d5a8e0", "selectedQuery": "SYSPLEX.REPORT.CACHSUM", "selectedResource": { - "label": "report=CACHSUM&resource=,,SYSPLEX", - "value": "report=CACHSUM&resource=,,SYSPLEX" + "label": "TABLE(report=CACHSUM&resource=,,SYSPLEX)", + "value": "TABLE(report=CACHSUM&resource=,,SYSPLEX)" }, "selectedVisualisationType": "table" } @@ -341,7 +335,155 @@ } } ], - "type": "ibm-rmf-panel" + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 7, + "w": 12, + "x": 0, + "y": 0 + }, + "id": 2, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", + "selectedQuery": "SYSPLEX.REPORT_BANNER.CACHSUM", + "selectedResource": { + "label": "BANNER(report=CACHSUM&resource=,,SYSPLEX)", + "value": "BANNER(report=CACHSUM&resource=,,SYSPLEX)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 7, + "w": 12, + "x": 12, + "y": 0 + }, + "id": 3, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "885ff52d-c1c1-4112-951f-acdec5c20116", + "selectedQuery": "SYSPLEX.REPORT_CAPTION.CACHSUM", + "selectedResource": { + "label": "CAPTION(report=CACHSUM&resource=,,SYSPLEX)", + "value": "CAPTION(report=CACHSUM&resource=,,SYSPLEX)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" } ], "schemaVersion": 37, @@ -370,7 +512,8 @@ "refresh": 1, "regex": "", "skipUrlSync": false, - "type": "datasource" + "type": "datasource", + "allowCustomValue": false }, { "datasource": { diff --git a/grafana/rmf-app/src/dashboards/dds/CFACT.json b/grafana/rmf-app/src/dashboards/dds/CFACT.json index a205fed6..d94cd2af 100644 --- a/grafana/rmf-app/src/dashboards/dds/CFACT.json +++ b/grafana/rmf-app/src/dashboards/dds/CFACT.json @@ -13,12 +13,6 @@ "id": "ibm-rmf-datasource", "name": "IBM RMF for z/OS", "version": "%VERSION%" - }, - { - "type": "panel", - "id": "ibm-rmf-panel", - "name": "Report for IBM RMF for z/OS", - "version": "%VERSION%" } ], "annotations": { @@ -82,12 +76,12 @@ "overrides": [] }, "gridPos": { - "h": 22, + "h": 16, "w": 24, "x": 0, - "y": 0 + "y": 5 }, - "id": 2, + "id": 1, "interval": "1m", "maxDataPoints": 1, "targets": [ @@ -100,8 +94,8 @@ "rmfPanelGuid": "26f5f14b-f506-4c31-907c-9f32ccd314e4", "selectedQuery": "SYSPLEX.REPORT.CFACT", "selectedResource": { - "label": "report=CFACT&resource=,,SYSPLEX", - "value": "report=CFACT&resource=,,SYSPLEX" + "label": "TABLE(report=CFACT&resource=,,SYSPLEX)", + "value": "TABLE(report=CFACT&resource=,,SYSPLEX)" }, "selectedVisualisationType": "table" } @@ -394,7 +388,81 @@ } } ], - "type": "ibm-rmf-panel" + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 5, + "w": 24, + "x": 0, + "y": 0 + }, + "id": 2, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", + "selectedQuery": "SYSPLEX.REPORT_BANNER.CFACT", + "selectedResource": { + "label": "BANNER(report=CFACT&resource=,,SYSPLEX)", + "value": "BANNER(report=CFACT&resource=,,SYSPLEX)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" } ], "schemaVersion": 37, @@ -423,7 +491,8 @@ "refresh": 1, "regex": "", "skipUrlSync": false, - "type": "datasource" + "type": "datasource", + "allowCustomValue": false }, { "datasource": { diff --git a/grafana/rmf-app/src/dashboards/dds/CFOVER.json b/grafana/rmf-app/src/dashboards/dds/CFOVER.json index 7482aab8..80d85827 100644 --- a/grafana/rmf-app/src/dashboards/dds/CFOVER.json +++ b/grafana/rmf-app/src/dashboards/dds/CFOVER.json @@ -13,12 +13,6 @@ "id": "ibm-rmf-datasource", "name": "IBM RMF for z/OS", "version": "%VERSION%" - }, - { - "type": "panel", - "id": "ibm-rmf-panel", - "name": "Report for IBM RMF for z/OS", - "version": "%VERSION%" } ], "annotations": { @@ -82,12 +76,12 @@ "overrides": [] }, "gridPos": { - "h": 22, + "h": 14, "w": 24, "x": 0, - "y": 0 + "y": 7 }, - "id": 2, + "id": 1, "interval": "1m", "maxDataPoints": 1, "targets": [ @@ -100,8 +94,8 @@ "rmfPanelGuid": "0c882408-b619-4f60-a8a3-37be2c38af18", "selectedQuery": "SYSPLEX.REPORT.CFOVER", "selectedResource": { - "label": "report=CFOVER&resource=,,SYSPLEX", - "value": "report=CFOVER&resource=,,SYSPLEX" + "label": "TABLE(report=CFOVER&resource=,,SYSPLEX)", + "value": "TABLE(report=CFOVER&resource=,,SYSPLEX)" }, "selectedVisualisationType": "table" } @@ -290,7 +284,155 @@ } } ], - "type": "ibm-rmf-panel" + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 7, + "w": 12, + "x": 0, + "y": 0 + }, + "id": 2, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", + "selectedQuery": "SYSPLEX.REPORT_BANNER.CFOVER", + "selectedResource": { + "label": "BANNER(report=CFOVER&resource=,,SYSPLEX)", + "value": "BANNER(report=CFOVER&resource=,,SYSPLEX)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 7, + "w": 12, + "x": 12, + "y": 0 + }, + "id": 3, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "885ff52d-c1c1-4112-951f-acdec5c20116", + "selectedQuery": "SYSPLEX.REPORT_CAPTION.CFOVER", + "selectedResource": { + "label": "CAPTION(report=CFOVER&resource=,,SYSPLEX)", + "value": "CAPTION(report=CFOVER&resource=,,SYSPLEX)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" } ], "schemaVersion": 37, @@ -319,7 +461,8 @@ "refresh": 1, "regex": "", "skipUrlSync": false, - "type": "datasource" + "type": "datasource", + "allowCustomValue": false }, { "datasource": { diff --git a/grafana/rmf-app/src/dashboards/dds/CFSYS.json b/grafana/rmf-app/src/dashboards/dds/CFSYS.json index eac9cc54..42598f73 100644 --- a/grafana/rmf-app/src/dashboards/dds/CFSYS.json +++ b/grafana/rmf-app/src/dashboards/dds/CFSYS.json @@ -13,12 +13,6 @@ "id": "ibm-rmf-datasource", "name": "IBM RMF for z/OS", "version": "%VERSION%" - }, - { - "type": "panel", - "id": "ibm-rmf-panel", - "name": "Report for IBM RMF for z/OS", - "version": "%VERSION%" } ], "annotations": { @@ -82,12 +76,12 @@ "overrides": [] }, "gridPos": { - "h": 22, + "h": 16, "w": 24, "x": 0, - "y": 0 + "y": 5 }, - "id": 2, + "id": 1, "interval": "1m", "maxDataPoints": 1, "targets": [ @@ -100,8 +94,8 @@ "rmfPanelGuid": "c699b2d0-fa49-4b45-bae9-913739728e44", "selectedQuery": "SYSPLEX.REPORT.CFSYS", "selectedResource": { - "label": "report=CFSYS&resource=,,SYSPLEX", - "value": "report=CFSYS&resource=,,SYSPLEX" + "label": "TABLE(report=CFSYS&resource=,,SYSPLEX)", + "value": "TABLE(report=CFSYS&resource=,,SYSPLEX)" }, "selectedVisualisationType": "table" } @@ -285,7 +279,81 @@ } } ], - "type": "ibm-rmf-panel" + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 5, + "w": 24, + "x": 0, + "y": 0 + }, + "id": 2, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", + "selectedQuery": "SYSPLEX.REPORT_BANNER.CFSYS", + "selectedResource": { + "label": "BANNER(report=CFSYS&resource=,,SYSPLEX)", + "value": "BANNER(report=CFSYS&resource=,,SYSPLEX)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" } ], "schemaVersion": 37, @@ -314,7 +382,8 @@ "refresh": 1, "regex": "", "skipUrlSync": false, - "type": "datasource" + "type": "datasource", + "allowCustomValue": false }, { "datasource": { diff --git a/grafana/rmf-app/src/dashboards/dds/CHANNEL.json b/grafana/rmf-app/src/dashboards/dds/CHANNEL.json index 43c6544f..ccb9959f 100644 --- a/grafana/rmf-app/src/dashboards/dds/CHANNEL.json +++ b/grafana/rmf-app/src/dashboards/dds/CHANNEL.json @@ -13,12 +13,6 @@ "id": "ibm-rmf-datasource", "name": "IBM RMF for z/OS", "version": "%VERSION%" - }, - { - "type": "panel", - "id": "ibm-rmf-panel", - "name": "Report for IBM RMF for z/OS", - "version": "%VERSION%" } ], "annotations": { @@ -82,12 +76,12 @@ "overrides": [] }, "gridPos": { - "h": 22, + "h": 17, "w": 24, "x": 0, - "y": 0 + "y": 4 }, - "id": 2, + "id": 1, "targets": [ { "datasource": { @@ -98,8 +92,8 @@ "rmfPanelGuid": "9f386c5a-cffd-4367-8065-189a5e4fe925", "selectedQuery": "MVS_IMAGE.REPORT.CHANNEL{name=$LPAR}", "selectedResource": { - "label": "report=CHANNEL&resource=,$LPAR,MVS_IMAGE", - "value": "report=CHANNEL&resource=,$LPAR,MVS_IMAGE" + "label": "TABLE(report=CHANNEL&resource=,$LPAR,MVS_IMAGE)", + "value": "TABLE(report=CHANNEL&resource=,$LPAR,MVS_IMAGE)" }, "selectedVisualisationType": "table" } @@ -129,7 +123,81 @@ } } ], - "type": "ibm-rmf-panel" + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 4, + "w": 24, + "x": 0, + "y": 0 + }, + "id": 2, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", + "selectedQuery": "MVS_IMAGE.REPORT_BANNER.CHANNEL{name=$LPAR}", + "selectedResource": { + "label": "BANNER(report=CHANNEL&resource=,$LPAR,MVS_IMAGE)", + "value": "BANNER(report=CHANNEL&resource=,$LPAR,MVS_IMAGE)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" } ], "refresh": "1m", @@ -158,7 +226,8 @@ "refresh": 1, "regex": "", "skipUrlSync": false, - "type": "datasource" + "type": "datasource", + "allowCustomValue": false }, { "datasource": { @@ -196,7 +265,8 @@ "regex": "", "skipUrlSync": false, "sort": 0, - "type": "query" + "type": "query", + "allowCustomValue": false } ] }, diff --git a/grafana/rmf-app/src/dashboards/dds/CPC.json b/grafana/rmf-app/src/dashboards/dds/CPC.json index 08da9ee1..de5c6038 100644 --- a/grafana/rmf-app/src/dashboards/dds/CPC.json +++ b/grafana/rmf-app/src/dashboards/dds/CPC.json @@ -13,12 +13,6 @@ "id": "ibm-rmf-datasource", "name": "IBM RMF for z/OS", "version": "%VERSION%" - }, - { - "type": "panel", - "id": "ibm-rmf-panel", - "name": "Report for IBM RMF for z/OS", - "version": "%VERSION%" } ], "annotations": { @@ -82,12 +76,12 @@ "overrides": [] }, "gridPos": { - "h": 22, + "h": 14, "w": 24, "x": 0, - "y": 0 + "y": 7 }, - "id": 2, + "id": 1, "targets": [ { "datasource": { @@ -98,8 +92,8 @@ "rmfPanelGuid": "de465562-c3f1-4548-93fb-d19e0cdb70e6", "selectedQuery": "MVS_IMAGE.REPORT.CPC{name=$LPAR}", "selectedResource": { - "label": "report=CPC&resource=,$LPAR,MVS_IMAGE", - "value": "report=CPC&resource=,$LPAR,MVS_IMAGE" + "label": "TABLE(report=CPC&resource=,$LPAR,MVS_IMAGE)", + "value": "TABLE(report=CPC&resource=,$LPAR,MVS_IMAGE)" }, "selectedVisualisationType": "table" } @@ -291,7 +285,155 @@ } } ], - "type": "ibm-rmf-panel" + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 7, + "w": 12, + "x": 0, + "y": 0 + }, + "id": 2, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", + "selectedQuery": "MVS_IMAGE.REPORT_BANNER.CPC{name=$LPAR}", + "selectedResource": { + "label": "BANNER(report=CPC&resource=,$LPAR,MVS_IMAGE)", + "value": "BANNER(report=CPC&resource=,$LPAR,MVS_IMAGE)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 7, + "w": 12, + "x": 12, + "y": 0 + }, + "id": 3, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "885ff52d-c1c1-4112-951f-acdec5c20116", + "selectedQuery": "MVS_IMAGE.REPORT_CAPTION.CPC{name=$LPAR}", + "selectedResource": { + "label": "CAPTION(report=CPC&resource=,$LPAR,MVS_IMAGE)", + "value": "CAPTION(report=CPC&resource=,$LPAR,MVS_IMAGE)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" } ], "refresh": "1m", @@ -320,7 +462,8 @@ "refresh": 1, "regex": "", "skipUrlSync": false, - "type": "datasource" + "type": "datasource", + "allowCustomValue": false }, { "datasource": { @@ -358,7 +501,8 @@ "regex": "", "skipUrlSync": false, "sort": 0, - "type": "query" + "type": "query", + "allowCustomValue": false } ] }, diff --git a/grafana/rmf-app/src/dashboards/dds/CRYOVW.json b/grafana/rmf-app/src/dashboards/dds/CRYOVW.json index 9e6fe559..59fa26cd 100644 --- a/grafana/rmf-app/src/dashboards/dds/CRYOVW.json +++ b/grafana/rmf-app/src/dashboards/dds/CRYOVW.json @@ -13,12 +13,6 @@ "id": "ibm-rmf-datasource", "name": "IBM RMF for z/OS", "version": "%VERSION%" - }, - { - "type": "panel", - "id": "ibm-rmf-panel", - "name": "Report for IBM RMF for z/OS", - "version": "%VERSION%" } ], "annotations": { @@ -82,12 +76,12 @@ "overrides": [] }, "gridPos": { - "h": 22, + "h": 16, "w": 24, "x": 0, - "y": 0 + "y": 5 }, - "id": 2, + "id": 1, "interval": "1m", "maxDataPoints": 1, "targets": [ @@ -100,8 +94,8 @@ "rmfPanelGuid": "8ad04b33-d007-4e2c-866c-7f2dbeb9b6be", "selectedQuery": "SYSPLEX.REPORT.CRYOVW", "selectedResource": { - "label": "report=CRYOVW&resource=,,SYSPLEX", - "value": "report=CRYOVW&resource=,,SYSPLEX" + "label": "TABLE(report=CRYOVW&resource=,,SYSPLEX)", + "value": "TABLE(report=CRYOVW&resource=,,SYSPLEX)" }, "selectedVisualisationType": "table" } @@ -312,7 +306,81 @@ } } ], - "type": "ibm-rmf-panel" + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 5, + "w": 24, + "x": 0, + "y": 0 + }, + "id": 2, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", + "selectedQuery": "SYSPLEX.REPORT_BANNER.CRYOVW", + "selectedResource": { + "label": "BANNER(report=CRYOVW&resource=,,SYSPLEX)", + "value": "BANNER(report=CRYOVW&resource=,,SYSPLEX)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" } ], "schemaVersion": 37, @@ -341,7 +409,8 @@ "refresh": 1, "regex": "", "skipUrlSync": false, - "type": "datasource" + "type": "datasource", + "allowCustomValue": false }, { "datasource": { diff --git a/grafana/rmf-app/src/dashboards/dds/DELAY.json b/grafana/rmf-app/src/dashboards/dds/DELAY.json index d1941824..f0d2c3fd 100644 --- a/grafana/rmf-app/src/dashboards/dds/DELAY.json +++ b/grafana/rmf-app/src/dashboards/dds/DELAY.json @@ -13,12 +13,6 @@ "id": "ibm-rmf-datasource", "name": "IBM RMF for z/OS", "version": "%VERSION%" - }, - { - "type": "panel", - "id": "ibm-rmf-panel", - "name": "Report for IBM RMF for z/OS", - "version": "%VERSION%" } ], "annotations": { @@ -82,12 +76,12 @@ "overrides": [] }, "gridPos": { - "h": 22, + "h": 17, "w": 24, "x": 0, - "y": 0 + "y": 4 }, - "id": 2, + "id": 1, "targets": [ { "datasource": { @@ -98,8 +92,8 @@ "rmfPanelGuid": "b91a33da-135f-44a5-cfed-b3689f07856b", "selectedQuery": "MVS_IMAGE.REPORT.DELAY{name=$LPAR}", "selectedResource": { - "label": "report=DELAY&resource=,$LPAR,MVS_IMAGE", - "value": "report=DELAY&resource=,$LPAR,MVS_IMAGE" + "label": "TABLE(report=DELAY&resource=,$LPAR,MVS_IMAGE)", + "value": "TABLE(report=DELAY&resource=,$LPAR,MVS_IMAGE)" }, "selectedVisualisationType": "table" } @@ -142,7 +136,81 @@ } } ], - "type": "ibm-rmf-panel" + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 4, + "w": 24, + "x": 0, + "y": 0 + }, + "id": 2, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", + "selectedQuery": "MVS_IMAGE.REPORT_BANNER.DELAY{name=$LPAR}", + "selectedResource": { + "label": "BANNER(report=DELAY&resource=,$LPAR,MVS_IMAGE)", + "value": "BANNER(report=DELAY&resource=,$LPAR,MVS_IMAGE)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" } ], "refresh": "1m", @@ -171,7 +239,8 @@ "refresh": 1, "regex": "", "skipUrlSync": false, - "type": "datasource" + "type": "datasource", + "allowCustomValue": false }, { "datasource": { @@ -209,7 +278,8 @@ "regex": "", "skipUrlSync": false, "sort": 0, - "type": "query" + "type": "query", + "allowCustomValue": false } ] }, diff --git a/grafana/rmf-app/src/dashboards/dds/DEV.json b/grafana/rmf-app/src/dashboards/dds/DEV.json index 019bf396..642ce418 100644 --- a/grafana/rmf-app/src/dashboards/dds/DEV.json +++ b/grafana/rmf-app/src/dashboards/dds/DEV.json @@ -13,12 +13,6 @@ "id": "ibm-rmf-datasource", "name": "IBM RMF for z/OS", "version": "%VERSION%" - }, - { - "type": "panel", - "id": "ibm-rmf-panel", - "name": "Report for IBM RMF for z/OS", - "version": "%VERSION%" } ], "annotations": { @@ -82,12 +76,12 @@ "overrides": [] }, "gridPos": { - "h": 22, + "h": 17, "w": 24, "x": 0, - "y": 0 + "y": 4 }, - "id": 2, + "id": 1, "targets": [ { "datasource": { @@ -98,8 +92,8 @@ "rmfPanelGuid": "b088b1b8-86f7-4a06-ed7c-33f4859c3030", "selectedQuery": "MVS_IMAGE.REPORT.DEV{name=$LPAR}", "selectedResource": { - "label": "report=DEV&resource=,$LPAR,MVS_IMAGE", - "value": "report=DEV&resource=,$LPAR,MVS_IMAGE" + "label": "TABLE(report=DEV&resource=,$LPAR,MVS_IMAGE)", + "value": "TABLE(report=DEV&resource=,$LPAR,MVS_IMAGE)" }, "selectedVisualisationType": "table" } @@ -146,7 +140,81 @@ } } ], - "type": "ibm-rmf-panel" + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 4, + "w": 24, + "x": 0, + "y": 0 + }, + "id": 2, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", + "selectedQuery": "MVS_IMAGE.REPORT_BANNER.DEV{name=$LPAR}", + "selectedResource": { + "label": "BANNER(report=DEV&resource=,$LPAR,MVS_IMAGE)", + "value": "BANNER(report=DEV&resource=,$LPAR,MVS_IMAGE)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" } ], "refresh": "1m", @@ -175,7 +243,8 @@ "refresh": 1, "regex": "", "skipUrlSync": false, - "type": "datasource" + "type": "datasource", + "allowCustomValue": false }, { "datasource": { @@ -213,7 +282,8 @@ "regex": "", "skipUrlSync": false, "sort": 0, - "type": "query" + "type": "query", + "allowCustomValue": false } ] }, diff --git a/grafana/rmf-app/src/dashboards/dds/DEVR.json b/grafana/rmf-app/src/dashboards/dds/DEVR.json index 67119f64..5b830852 100644 --- a/grafana/rmf-app/src/dashboards/dds/DEVR.json +++ b/grafana/rmf-app/src/dashboards/dds/DEVR.json @@ -13,12 +13,6 @@ "id": "ibm-rmf-datasource", "name": "IBM RMF for z/OS", "version": "%VERSION%" - }, - { - "type": "panel", - "id": "ibm-rmf-panel", - "name": "Report for IBM RMF for z/OS", - "version": "%VERSION%" } ], "annotations": { @@ -82,12 +76,12 @@ "overrides": [] }, "gridPos": { - "h": 22, + "h": 17, "w": 24, "x": 0, - "y": 0 + "y": 4 }, - "id": 2, + "id": 1, "targets": [ { "datasource": { @@ -98,8 +92,8 @@ "rmfPanelGuid": "5e502a01-3a37-4873-94ff-7b635ecaee3a", "selectedQuery": "MVS_IMAGE.REPORT.DEVR{name=$LPAR}", "selectedResource": { - "label": "report=DEVR&resource=,$LPAR,MVS_IMAGE", - "value": "report=DEVR&resource=,$LPAR,MVS_IMAGE" + "label": "TABLE(report=DEVR&resource=,$LPAR,MVS_IMAGE)", + "value": "TABLE(report=DEVR&resource=,$LPAR,MVS_IMAGE)" }, "selectedVisualisationType": "table" } @@ -177,7 +171,81 @@ } } ], - "type": "ibm-rmf-panel" + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 4, + "w": 24, + "x": 0, + "y": 0 + }, + "id": 2, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", + "selectedQuery": "MVS_IMAGE.REPORT_BANNER.DEVR{name=$LPAR}", + "selectedResource": { + "label": "BANNER(report=DEVR&resource=,$LPAR,MVS_IMAGE)", + "value": "BANNER(report=DEVR&resource=,$LPAR,MVS_IMAGE)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" } ], "refresh": "1m", @@ -206,7 +274,8 @@ "refresh": 1, "regex": "", "skipUrlSync": false, - "type": "datasource" + "type": "datasource", + "allowCustomValue": false }, { "datasource": { @@ -244,7 +313,8 @@ "regex": "", "skipUrlSync": false, "sort": 0, - "type": "query" + "type": "query", + "allowCustomValue": false } ] }, diff --git a/grafana/rmf-app/src/dashboards/dds/DSND.json b/grafana/rmf-app/src/dashboards/dds/DSND.json index f52bfb6b..cbada604 100644 --- a/grafana/rmf-app/src/dashboards/dds/DSND.json +++ b/grafana/rmf-app/src/dashboards/dds/DSND.json @@ -13,12 +13,6 @@ "id": "ibm-rmf-datasource", "name": "IBM RMF for z/OS", "version": "%VERSION%" - }, - { - "type": "panel", - "id": "ibm-rmf-panel", - "name": "Report for IBM RMF for z/OS", - "version": "%VERSION%" } ], "annotations": { @@ -82,10 +76,10 @@ "overrides": [] }, "gridPos": { - "h": 22, + "h": 17, "w": 24, "x": 0, - "y": 0 + "y": 4 }, "id": 2, "targets": [ @@ -98,8 +92,8 @@ "rmfPanelGuid": "1f674985-8c23-483d-bf70-7d637d6e262", "selectedQuery": "MVS_IMAGE.REPORT.DSND{name=$LPAR}", "selectedResource": { - "label": "report=DSND&resource=,$LPAR,MVS_IMAGE", - "value": "report=DSND&resource=,$LPAR,MVS_IMAGE" + "label": "TABLE(report=DSND&resource=,$LPAR,MVS_IMAGE)", + "value": "TABLE(report=DSND&resource=,$LPAR,MVS_IMAGE)" }, "selectedVisualisationType": "table" } @@ -129,7 +123,81 @@ } } ], - "type": "ibm-rmf-panel" + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 4, + "w": 24, + "x": 0, + "y": 0 + }, + "id": 2, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", + "selectedQuery": "MVS_IMAGE.REPORT_BANNER.DSND{name=$LPAR}", + "selectedResource": { + "label": "BANNER(report=DSND&resource=,$LPAR,MVS_IMAGE)", + "value": "BANNER(report=DSND&resource=,$LPAR,MVS_IMAGE)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" } ], "refresh": "1m", @@ -158,7 +226,8 @@ "refresh": 1, "regex": "", "skipUrlSync": false, - "type": "datasource" + "type": "datasource", + "allowCustomValue": false }, { "datasource": { @@ -196,7 +265,8 @@ "regex": "", "skipUrlSync": false, "sort": 0, - "type": "query" + "type": "query", + "allowCustomValue": false } ] }, diff --git a/grafana/rmf-app/src/dashboards/dds/EADM.json b/grafana/rmf-app/src/dashboards/dds/EADM.json index 0e69f301..7dba9323 100644 --- a/grafana/rmf-app/src/dashboards/dds/EADM.json +++ b/grafana/rmf-app/src/dashboards/dds/EADM.json @@ -13,12 +13,6 @@ "id": "ibm-rmf-datasource", "name": "IBM RMF for z/OS", "version": "%VERSION%" - }, - { - "type": "panel", - "id": "ibm-rmf-panel", - "name": "Report for IBM RMF for z/OS", - "version": "%VERSION%" } ], "annotations": { @@ -82,12 +76,12 @@ "overrides": [] }, "gridPos": { - "h": 20, - "w": 20, + "h": 14, + "w": 24, "x": 0, - "y": 0 + "y": 7 }, - "id": 2, + "id": 1, "targets": [ { "datasource": { @@ -98,8 +92,8 @@ "rmfPanelGuid": "dda59d24-7686-49e6-b45f-0f8e5b449dee", "selectedQuery": "MVS_IMAGE.REPORT.EADM{name=$LPAR}", "selectedResource": { - "label": "report=EADM&resource=,$LPAR,MVS_IMAGE", - "value": "report=EADM&resource=,$LPAR,MVS_IMAGE" + "label": "TABLE(report=EADM&resource=,$LPAR,MVS_IMAGE)", + "value": "TABLE(report=EADM&resource=,$LPAR,MVS_IMAGE)" }, "selectedVisualisationType": "table" } @@ -143,7 +137,155 @@ } } ], - "type": "ibm-rmf-panel" + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 7, + "w": 12, + "x": 0, + "y": 0 + }, + "id": 2, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", + "selectedQuery": "MVS_IMAGE.REPORT_BANNER.EADM{name=$LPAR}", + "selectedResource": { + "label": "BANNER(report=EADM&resource=,$LPAR,MVS_IMAGE)", + "value": "BANNER(report=EADM&resource=,$LPAR,MVS_IMAGE)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 7, + "w": 12, + "x": 12, + "y": 0 + }, + "id": 3, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "885ff52d-c1c1-4112-951f-acdec5c20116", + "selectedQuery": "MVS_IMAGE.REPORT_CAPTION.EADM{name=$LPAR}", + "selectedResource": { + "label": "CAPTION(report=EADM&resource=,$LPAR,MVS_IMAGE)", + "value": "CAPTION(report=EADM&resource=,$LPAR,MVS_IMAGE)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" } ], "refresh": false, @@ -172,7 +314,8 @@ "refresh": 1, "regex": "", "skipUrlSync": false, - "type": "datasource" + "type": "datasource", + "allowCustomValue": false }, { "datasource": { @@ -210,7 +353,8 @@ "regex": "", "skipUrlSync": false, "sort": 0, - "type": "query" + "type": "query", + "allowCustomValue": false } ] }, diff --git a/grafana/rmf-app/src/dashboards/dds/ENCLAVE.json b/grafana/rmf-app/src/dashboards/dds/ENCLAVE.json index b20aa2d5..89d0b613 100644 --- a/grafana/rmf-app/src/dashboards/dds/ENCLAVE.json +++ b/grafana/rmf-app/src/dashboards/dds/ENCLAVE.json @@ -13,12 +13,6 @@ "id": "ibm-rmf-datasource", "name": "IBM RMF for z/OS", "version": "%VERSION%" - }, - { - "type": "panel", - "id": "ibm-rmf-panel", - "name": "Report for IBM RMF for z/OS", - "version": "%VERSION%" } ], "annotations": { @@ -82,12 +76,12 @@ "overrides": [] }, "gridPos": { - "h": 22, + "h": 14, "w": 24, "x": 0, - "y": 0 + "y": 7 }, - "id": 2, + "id": 1, "targets": [ { "datasource": { @@ -98,8 +92,8 @@ "rmfPanelGuid": "87fa8279-0f6c-425e-835d-652e59e29ed9", "selectedQuery": "MVS_IMAGE.REPORT.ENCLAVE{name=$LPAR}", "selectedResource": { - "label": "report=ENCLAVE&resource=,$LPAR,MVS_IMAGE", - "value": "report=ENCLAVE&resource=,$LPAR,MVS_IMAGE" + "label": "TABLE(report=ENCLAVE&resource=,$LPAR,MVS_IMAGE)", + "value": "TABLE(report=ENCLAVE&resource=,$LPAR,MVS_IMAGE)" }, "selectedVisualisationType": "table" } @@ -292,7 +286,155 @@ } } ], - "type": "ibm-rmf-panel" + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 7, + "w": 12, + "x": 0, + "y": 0 + }, + "id": 2, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", + "selectedQuery": "MVS_IMAGE.REPORT_BANNER.ENCLAVE{name=$LPAR}", + "selectedResource": { + "label": "BANNER(report=ENCLAVE&resource=,$LPAR,MVS_IMAGE)", + "value": "BANNER(report=ENCLAVE&resource=,$LPAR,MVS_IMAGE)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 7, + "w": 12, + "x": 12, + "y": 0 + }, + "id": 3, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "885ff52d-c1c1-4112-951f-acdec5c20116", + "selectedQuery": "MVS_IMAGE.REPORT_CAPTION.ENCLAVE{name=$LPAR}", + "selectedResource": { + "label": "CAPTION(report=ENCLAVE&resource=,$LPAR,MVS_IMAGE)", + "value": "CAPTION(report=ENCLAVE&resource=,$LPAR,MVS_IMAGE)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" } ], "refresh": "1m", @@ -321,7 +463,8 @@ "refresh": 1, "regex": "", "skipUrlSync": false, - "type": "datasource" + "type": "datasource", + "allowCustomValue": false }, { "datasource": { @@ -359,7 +502,8 @@ "regex": "", "skipUrlSync": false, "sort": 0, - "type": "query" + "type": "query", + "allowCustomValue": false } ] }, diff --git a/grafana/rmf-app/src/dashboards/dds/ENQ.json b/grafana/rmf-app/src/dashboards/dds/ENQ.json index 1346f3c6..60370831 100644 --- a/grafana/rmf-app/src/dashboards/dds/ENQ.json +++ b/grafana/rmf-app/src/dashboards/dds/ENQ.json @@ -13,12 +13,6 @@ "id": "ibm-rmf-datasource", "name": "IBM RMF for z/OS", "version": "%VERSION%" - }, - { - "type": "panel", - "id": "ibm-rmf-panel", - "name": "Report for IBM RMF for z/OS", - "version": "%VERSION%" } ], "annotations": { @@ -82,12 +76,12 @@ "overrides": [] }, "gridPos": { - "h": 22, + "h": 17, "w": 24, "x": 0, - "y": 0 + "y": 4 }, - "id": 2, + "id": 1, "targets": [ { "datasource": { @@ -98,8 +92,8 @@ "rmfPanelGuid": "2e245147-c660-4f64-bcaf-326ba6d434ac", "selectedQuery": "MVS_IMAGE.REPORT.ENQ{name=$LPAR}", "selectedResource": { - "label": "report=ENQ&resource=,$LPAR,MVS_IMAGE", - "value": "report=ENQ&resource=,$LPAR,MVS_IMAGE" + "label": "TABLE(report=ENQ&resource=,$LPAR,MVS_IMAGE)", + "value": "TABLE(report=ENQ&resource=,$LPAR,MVS_IMAGE)" }, "selectedVisualisationType": "table" } @@ -129,7 +123,81 @@ } } ], - "type": "ibm-rmf-panel" + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 4, + "w": 24, + "x": 0, + "y": 0 + }, + "id": 2, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", + "selectedQuery": "MVS_IMAGE.REPORT_BANNER.ENQ{name=$LPAR}", + "selectedResource": { + "label": "BANNER(report=ENQ&resource=,$LPAR,MVS_IMAGE)", + "value": "BANNER(report=ENQ&resource=,$LPAR,MVS_IMAGE)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" } ], "refresh": "1m", @@ -158,7 +226,8 @@ "refresh": 1, "regex": "", "skipUrlSync": false, - "type": "datasource" + "type": "datasource", + "allowCustomValue": false }, { "datasource": { @@ -196,7 +265,8 @@ "regex": "", "skipUrlSync": false, "sort": 0, - "type": "query" + "type": "query", + "allowCustomValue": false } ] }, diff --git a/grafana/rmf-app/src/dashboards/dds/HSM.json b/grafana/rmf-app/src/dashboards/dds/HSM.json index d6032e5a..3994f68b 100644 --- a/grafana/rmf-app/src/dashboards/dds/HSM.json +++ b/grafana/rmf-app/src/dashboards/dds/HSM.json @@ -13,12 +13,6 @@ "id": "ibm-rmf-datasource", "name": "IBM RMF for z/OS", "version": "%VERSION%" - }, - { - "type": "panel", - "id": "ibm-rmf-panel", - "name": "Report for IBM RMF for z/OS", - "version": "%VERSION%" } ], "annotations": { @@ -82,12 +76,12 @@ "overrides": [] }, "gridPos": { - "h": 22, + "h": 17, "w": 24, "x": 0, - "y": 0 + "y": 4 }, - "id": 2, + "id": 1, "targets": [ { "datasource": { @@ -98,8 +92,8 @@ "rmfPanelGuid": "4ca5f811-7ce7-4cb5-9c8e-e82c744f7689", "selectedQuery": "MVS_IMAGE.REPORT.HSM{name=$LPAR}", "selectedResource": { - "label": "report=HSM&resource=,$LPAR,MVS_IMAGE", - "value": "report=HSM&resource=,$LPAR,MVS_IMAGE" + "label": "TABLE(report=HSM&resource=,$LPAR,MVS_IMAGE)", + "value": "TABLE(report=HSM&resource=,$LPAR,MVS_IMAGE)" }, "selectedVisualisationType": "table" } @@ -136,7 +130,81 @@ } } ], - "type": "ibm-rmf-panel" + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 4, + "w": 24, + "x": 0, + "y": 0 + }, + "id": 2, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", + "selectedQuery": "MVS_IMAGE.REPORT_BANNER.HSM{name=$LPAR}", + "selectedResource": { + "label": "BANNER(report=HSM&resource=,$LPAR,MVS_IMAGE)", + "value": "BANNER(report=HSM&resource=,$LPAR,MVS_IMAGE)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" } ], "refresh": "1m", @@ -165,7 +233,8 @@ "refresh": 1, "regex": "", "skipUrlSync": false, - "type": "datasource" + "type": "datasource", + "allowCustomValue": false }, { "datasource": { @@ -203,7 +272,8 @@ "regex": "", "skipUrlSync": false, "sort": 0, - "type": "query" + "type": "query", + "allowCustomValue": false } ] }, diff --git a/grafana/rmf-app/src/dashboards/dds/IOQ.json b/grafana/rmf-app/src/dashboards/dds/IOQ.json index a96f4626..6079a4fd 100644 --- a/grafana/rmf-app/src/dashboards/dds/IOQ.json +++ b/grafana/rmf-app/src/dashboards/dds/IOQ.json @@ -13,12 +13,6 @@ "id": "ibm-rmf-datasource", "name": "IBM RMF for z/OS", "version": "%VERSION%" - }, - { - "type": "panel", - "id": "ibm-rmf-panel", - "name": "Report for IBM RMF for z/OS", - "version": "%VERSION%" } ], "annotations": { @@ -82,12 +76,12 @@ "overrides": [] }, "gridPos": { - "h": 22, + "h": 17, "w": 24, "x": 0, - "y": 0 + "y": 4 }, - "id": 2, + "id": 1, "targets": [ { "datasource": { @@ -98,8 +92,8 @@ "rmfPanelGuid": "c53199a2-81e7-4063-9aa8-814de9ddec89", "selectedQuery": "MVS_IMAGE.REPORT.IOQ{name=$LPAR}", "selectedResource": { - "label": "report=IOQ&resource=,$LPAR,MVS_IMAGE", - "value": "report=IOQ&resource=,$LPAR,MVS_IMAGE" + "label": "TABLE(report=IOQ&resource=,$LPAR,MVS_IMAGE)", + "value": "TABLE(report=IOQ&resource=,$LPAR,MVS_IMAGE)" }, "selectedVisualisationType": "table" } @@ -147,7 +141,81 @@ } } ], - "type": "ibm-rmf-panel" + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 4, + "w": 24, + "x": 0, + "y": 0 + }, + "id": 2, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", + "selectedQuery": "MVS_IMAGE.REPORT_BANNER.IOQ{name=$LPAR}", + "selectedResource": { + "label": "BANNER(report=IOQ&resource=,$LPAR,MVS_IMAGE)", + "value": "BANNER(report=IOQ&resource=,$LPAR,MVS_IMAGE)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" } ], "refresh": "1m", @@ -176,7 +244,8 @@ "refresh": 1, "regex": "", "skipUrlSync": false, - "type": "datasource" + "type": "datasource", + "allowCustomValue": false }, { "datasource": { @@ -214,7 +283,8 @@ "regex": "", "skipUrlSync": false, "sort": 0, - "type": "query" + "type": "query", + "allowCustomValue": false } ] }, diff --git a/grafana/rmf-app/src/dashboards/dds/JES.json b/grafana/rmf-app/src/dashboards/dds/JES.json index a991055d..bd504c79 100644 --- a/grafana/rmf-app/src/dashboards/dds/JES.json +++ b/grafana/rmf-app/src/dashboards/dds/JES.json @@ -13,12 +13,6 @@ "id": "ibm-rmf-datasource", "name": "IBM RMF for z/OS", "version": "%VERSION%" - }, - { - "type": "panel", - "id": "ibm-rmf-panel", - "name": "Report for IBM RMF for z/OS", - "version": "%VERSION%" } ], "annotations": { @@ -82,12 +76,12 @@ "overrides": [] }, "gridPos": { - "h": 22, + "h": 17, "w": 24, "x": 0, - "y": 0 + "y": 4 }, - "id": 2, + "id": 1, "targets": [ { "datasource": { @@ -98,8 +92,8 @@ "rmfPanelGuid": "9b725562-731d-424f-840e-832de4a70f2c", "selectedQuery": "MVS_IMAGE.REPORT.JES{name=$LPAR}", "selectedResource": { - "label": "report=JES&resource=,$LPAR,MVS_IMAGE", - "value": "report=JES&resource=,$LPAR,MVS_IMAGE" + "label": "TABLE(report=JES&resource=,$LPAR,MVS_IMAGE)", + "value": "TABLE(report=JES&resource=,$LPAR,MVS_IMAGE)" }, "selectedVisualisationType": "table" } @@ -136,7 +130,81 @@ } } ], - "type": "ibm-rmf-panel" + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 4, + "w": 24, + "x": 0, + "y": 0 + }, + "id": 2, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", + "selectedQuery": "MVS_IMAGE.REPORT_BANNER.JES{name=$LPAR}", + "selectedResource": { + "label": "BANNER(report=JES&resource=,$LPAR,MVS_IMAGE)", + "value": "BANNER(report=JES&resource=,$LPAR,MVS_IMAGE)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" } ], "refresh": "1m", @@ -165,7 +233,8 @@ "refresh": 1, "regex": "", "skipUrlSync": false, - "type": "datasource" + "type": "datasource", + "allowCustomValue": false }, { "datasource": { @@ -203,7 +272,8 @@ "regex": "", "skipUrlSync": false, "sort": 0, - "type": "query" + "type": "query", + "allowCustomValue": false } ] }, diff --git a/grafana/rmf-app/src/dashboards/dds/LOCKSP.json b/grafana/rmf-app/src/dashboards/dds/LOCKSP.json index 5702bafb..020b4e2b 100644 --- a/grafana/rmf-app/src/dashboards/dds/LOCKSP.json +++ b/grafana/rmf-app/src/dashboards/dds/LOCKSP.json @@ -13,12 +13,6 @@ "id": "ibm-rmf-datasource", "name": "IBM RMF for z/OS", "version": "%VERSION%" - }, - { - "type": "panel", - "id": "ibm-rmf-panel", - "name": "Report for IBM RMF for z/OS", - "version": "%VERSION%" } ], "annotations": { @@ -82,12 +76,12 @@ "overrides": [] }, "gridPos": { - "h": 22, + "h": 14, "w": 24, "x": 0, - "y": 0 + "y": 7 }, - "id": 2, + "id": 1, "targets": [ { "datasource": { @@ -98,8 +92,8 @@ "rmfPanelGuid": "1898c684-d2dd-4b95-a655-e1c7170ad8e8", "selectedQuery": "MVS_IMAGE.REPORT.LOCKSP{name=$LPAR}", "selectedResource": { - "label": "report=LOCKSP&resource=,$LPAR,MVS_IMAGE", - "value": "report=LOCKSP&resource=,$LPAR,MVS_IMAGE" + "label": "TABLE(report=LOCKSP&resource=,$LPAR,MVS_IMAGE)", + "value": "TABLE(report=LOCKSP&resource=,$LPAR,MVS_IMAGE)" }, "selectedVisualisationType": "table" } @@ -129,7 +123,155 @@ } } ], - "type": "ibm-rmf-panel" + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 7, + "w": 12, + "x": 0, + "y": 0 + }, + "id": 2, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", + "selectedQuery": "MVS_IMAGE.REPORT_BANNER.LOCKSP{name=$LPAR}", + "selectedResource": { + "label": "BANNER(report=LOCKSP&resource=,$LPAR,MVS_IMAGE)", + "value": "BANNER(report=LOCKSP&resource=,$LPAR,MVS_IMAGE)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 7, + "w": 12, + "x": 12, + "y": 0 + }, + "id": 3, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "885ff52d-c1c1-4112-951f-acdec5c20116", + "selectedQuery": "MVS_IMAGE.REPORT_CAPTION.LOCKSP{name=$LPAR}", + "selectedResource": { + "label": "CAPTION(report=LOCKSP&resource=,$LPAR,MVS_IMAGE)", + "value": "CAPTION(report=LOCKSP&resource=,$LPAR,MVS_IMAGE)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" } ], "refresh": "1m", @@ -158,7 +300,8 @@ "refresh": 1, "regex": "", "skipUrlSync": false, - "type": "datasource" + "type": "datasource", + "allowCustomValue": false }, { "datasource": { @@ -196,7 +339,8 @@ "regex": "", "skipUrlSync": false, "sort": 0, - "type": "query" + "type": "query", + "allowCustomValue": false } ] }, diff --git a/grafana/rmf-app/src/dashboards/dds/LOCKSU.json b/grafana/rmf-app/src/dashboards/dds/LOCKSU.json index 1d3220cb..b28b2732 100644 --- a/grafana/rmf-app/src/dashboards/dds/LOCKSU.json +++ b/grafana/rmf-app/src/dashboards/dds/LOCKSU.json @@ -13,12 +13,6 @@ "id": "ibm-rmf-datasource", "name": "IBM RMF for z/OS", "version": "%VERSION%" - }, - { - "type": "panel", - "id": "ibm-rmf-panel", - "name": "Report for IBM RMF for z/OS", - "version": "%VERSION%" } ], "annotations": { @@ -82,10 +76,10 @@ "overrides": [] }, "gridPos": { - "h": 22, + "h": 14, "w": 24, "x": 0, - "y": 0 + "y": 7 }, "id": 2, "targets": [ @@ -98,8 +92,8 @@ "rmfPanelGuid": "8003e165-ab46-4b61-94b7-a37f69adc5c8", "selectedQuery": "MVS_IMAGE.REPORT.LOCKSU{name=$LPAR}", "selectedResource": { - "label": "report=LOCKSU&resource=,$LPAR,MVS_IMAGE", - "value": "report=LOCKSU&resource=,$LPAR,MVS_IMAGE" + "label": "TABLE(report=LOCKSU&resource=,$LPAR,MVS_IMAGE)", + "value": "TABLE(report=LOCKSU&resource=,$LPAR,MVS_IMAGE)" }, "selectedVisualisationType": "table" } @@ -129,7 +123,155 @@ } } ], - "type": "ibm-rmf-panel" + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 7, + "w": 12, + "x": 0, + "y": 0 + }, + "id": 2, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", + "selectedQuery": "MVS_IMAGE.REPORT_BANNER.LOCKSU{name=$LPAR}", + "selectedResource": { + "label": "BANNER(report=LOCKSU&resource=,$LPAR,MVS_IMAGE)", + "value": "BANNER(report=LOCKSU&resource=,$LPAR,MVS_IMAGE)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 7, + "w": 12, + "x": 12, + "y": 0 + }, + "id": 3, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "885ff52d-c1c1-4112-951f-acdec5c20116", + "selectedQuery": "MVS_IMAGE.REPORT_CAPTION.LOCKSU{name=$LPAR}", + "selectedResource": { + "label": "CAPTION(report=LOCKSU&resource=,$LPAR,MVS_IMAGE)", + "value": "CAPTION(report=LOCKSU&resource=,$LPAR,MVS_IMAGE)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" } ], "refresh": "1m", @@ -158,7 +300,8 @@ "refresh": 1, "regex": "", "skipUrlSync": false, - "type": "datasource" + "type": "datasource", + "allowCustomValue": false }, { "datasource": { @@ -196,7 +339,8 @@ "regex": "", "skipUrlSync": false, "sort": 0, - "type": "query" + "type": "query", + "allowCustomValue": false } ] }, diff --git a/grafana/rmf-app/src/dashboards/dds/OPD.json b/grafana/rmf-app/src/dashboards/dds/OPD.json index 825daa91..ade42ed9 100644 --- a/grafana/rmf-app/src/dashboards/dds/OPD.json +++ b/grafana/rmf-app/src/dashboards/dds/OPD.json @@ -13,12 +13,6 @@ "id": "ibm-rmf-datasource", "name": "IBM RMF for z/OS", "version": "%VERSION%" - }, - { - "type": "panel", - "id": "ibm-rmf-panel", - "name": "Report for IBM RMF for z/OS", - "version": "%VERSION%" } ], "annotations": { @@ -82,10 +76,10 @@ "overrides": [] }, "gridPos": { - "h": 22, + "h": 14, "w": 24, "x": 0, - "y": 0 + "y": 7 }, "id": 2, "targets": [ @@ -98,8 +92,8 @@ "rmfPanelGuid": "1af174dd-1466-4d45-8c07-41f3f574f692", "selectedQuery": "MVS_IMAGE.REPORT.OPD{name=$LPAR}", "selectedResource": { - "label": "report=OPD&resource=,$LPAR,MVS_IMAGE", - "value": "report=OPD&resource=,$LPAR,MVS_IMAGE" + "label": "TABLE(report=OPD&resource=,$LPAR,MVS_IMAGE)", + "value": "TABLE(report=OPD&resource=,$LPAR,MVS_IMAGE)" }, "selectedVisualisationType": "table" } @@ -138,7 +132,155 @@ } } ], - "type": "ibm-rmf-panel" + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 7, + "w": 12, + "x": 0, + "y": 0 + }, + "id": 2, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", + "selectedQuery": "MVS_IMAGE.REPORT_BANNER.OPD{name=$LPAR}", + "selectedResource": { + "label": "BANNER(report=OPD&resource=,$LPAR,MVS_IMAGE)", + "value": "BANNER(report=OPD&resource=,$LPAR,MVS_IMAGE)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 7, + "w": 12, + "x": 12, + "y": 0 + }, + "id": 3, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "885ff52d-c1c1-4112-951f-acdec5c20116", + "selectedQuery": "MVS_IMAGE.REPORT_CAPTION.OPD{name=$LPAR}", + "selectedResource": { + "label": "CAPTION(report=OPD&resource=,$LPAR,MVS_IMAGE)", + "value": "CAPTION(report=OPD&resource=,$LPAR,MVS_IMAGE)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" } ], "refresh": "1m", @@ -167,7 +309,8 @@ "refresh": 1, "regex": "", "skipUrlSync": false, - "type": "datasource" + "type": "datasource", + "allowCustomValue": false }, { "datasource": { @@ -205,7 +348,8 @@ "regex": "", "skipUrlSync": false, "sort": 0, - "type": "query" + "type": "query", + "allowCustomValue": false } ] }, diff --git a/grafana/rmf-app/src/dashboards/dds/PCIE.json b/grafana/rmf-app/src/dashboards/dds/PCIE.json index 4d08d5cf..10875e46 100644 --- a/grafana/rmf-app/src/dashboards/dds/PCIE.json +++ b/grafana/rmf-app/src/dashboards/dds/PCIE.json @@ -13,12 +13,6 @@ "id": "ibm-rmf-datasource", "name": "IBM RMF for z/OS", "version": "%VERSION%" - }, - { - "type": "panel", - "id": "ibm-rmf-panel", - "name": "Report for IBM RMF for z/OS", - "version": "%VERSION%" } ], "annotations": { @@ -82,12 +76,12 @@ "overrides": [] }, "gridPos": { - "h": 22, + "h": 14, "w": 24, "x": 0, - "y": 0 + "y": 7 }, - "id": 2, + "id": 1, "targets": [ { "datasource": { @@ -99,8 +93,8 @@ "rmfPanelGuid": "caaae81f-5211-4ff1-b8e2-e9350465da39", "selectedQuery": "MVS_IMAGE.REPORT.PCIE{name=$LPAR}", "selectedResource": { - "label": "report=PCIE&resource=,$LPAR,MVS_IMAGE", - "value": "report=PCIE&resource=,$LPAR,MVS_IMAGE" + "label": "TABLE(report=PCIE&resource=,$LPAR,MVS_IMAGE)", + "value": "TABLE(report=PCIE&resource=,$LPAR,MVS_IMAGE)" }, "selectedVisualisationType": "table" } @@ -168,7 +162,155 @@ } } ], - "type": "ibm-rmf-panel" + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 7, + "w": 12, + "x": 0, + "y": 0 + }, + "id": 2, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", + "selectedQuery": "MVS_IMAGE.REPORT_BANNER.PCIE{name=$LPAR}", + "selectedResource": { + "label": "BANNER(report=PCIE&resource=,$LPAR,MVS_IMAGE)", + "value": "BANNER(report=PCIE&resource=,$LPAR,MVS_IMAGE)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 7, + "w": 12, + "x": 12, + "y": 0 + }, + "id": 3, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "885ff52d-c1c1-4112-951f-acdec5c20116", + "selectedQuery": "MVS_IMAGE.REPORT_CAPTION.PCIE{name=$LPAR}", + "selectedResource": { + "label": "CAPTION(report=PCIE&resource=,$LPAR,MVS_IMAGE)", + "value": "CAPTION(report=PCIE&resource=,$LPAR,MVS_IMAGE)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" } ], "refresh": "1m", @@ -197,7 +339,8 @@ "refresh": 1, "regex": "", "skipUrlSync": false, - "type": "datasource" + "type": "datasource", + "allowCustomValue": false }, { "datasource": { @@ -235,7 +378,8 @@ "regex": "", "skipUrlSync": false, "sort": 0, - "type": "query" + "type": "query", + "allowCustomValue": false } ] }, diff --git a/grafana/rmf-app/src/dashboards/dds/PROC.json b/grafana/rmf-app/src/dashboards/dds/PROC.json index 39731e3f..a0be10a0 100644 --- a/grafana/rmf-app/src/dashboards/dds/PROC.json +++ b/grafana/rmf-app/src/dashboards/dds/PROC.json @@ -13,12 +13,6 @@ "id": "ibm-rmf-datasource", "name": "IBM RMF for z/OS", "version": "%VERSION%" - }, - { - "type": "panel", - "id": "ibm-rmf-panel", - "name": "Report for IBM RMF for z/OS", - "version": "%VERSION%" } ], "annotations": { @@ -82,12 +76,12 @@ "overrides": [] }, "gridPos": { - "h": 22, + "h": 17, "w": 24, "x": 0, - "y": 0 + "y": 4 }, - "id": 2, + "id": 1, "targets": [ { "datasource": { @@ -98,8 +92,8 @@ "rmfPanelGuid": "271e34ff-d57f-43d4-a897-6b8053983d24", "selectedQuery": "MVS_IMAGE.REPORT.PROC{name=$LPAR}", "selectedResource": { - "label": "report=PROC&resource=,$LPAR,MVS_IMAGE", - "value": "report=PROC&resource=,$LPAR,MVS_IMAGE" + "label": "TABLE(report=PROC&resource=,$LPAR,MVS_IMAGE)", + "value": "TABLE(report=PROC&resource=,$LPAR,MVS_IMAGE)" }, "selectedVisualisationType": "table" } @@ -172,7 +166,81 @@ } } ], - "type": "ibm-rmf-panel" + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 4, + "w": 24, + "x": 0, + "y": 0 + }, + "id": 2, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", + "selectedQuery": "MVS_IMAGE.REPORT_BANNER.PROC{name=$LPAR}", + "selectedResource": { + "label": "BANNER(report=PROC&resource=,$LPAR,MVS_IMAGE)", + "value": "BANNER(report=PROC&resource=,$LPAR,MVS_IMAGE)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" } ], "refresh": "1m", @@ -201,7 +269,8 @@ "refresh": 1, "regex": "", "skipUrlSync": false, - "type": "datasource" + "type": "datasource", + "allowCustomValue": false }, { "datasource": { @@ -239,7 +308,8 @@ "regex": "", "skipUrlSync": false, "sort": 0, - "type": "query" + "type": "query", + "allowCustomValue": false } ] }, diff --git a/grafana/rmf-app/src/dashboards/dds/PROCU.json b/grafana/rmf-app/src/dashboards/dds/PROCU.json index 6dfac03c..d6ed44bf 100644 --- a/grafana/rmf-app/src/dashboards/dds/PROCU.json +++ b/grafana/rmf-app/src/dashboards/dds/PROCU.json @@ -13,12 +13,6 @@ "id": "ibm-rmf-datasource", "name": "IBM RMF for z/OS", "version": "%VERSION%" - }, - { - "type": "panel", - "id": "ibm-rmf-panel", - "name": "Report for IBM RMF for z/OS", - "version": "%VERSION%" } ], "annotations": { @@ -82,12 +76,12 @@ "overrides": [] }, "gridPos": { - "h": 22, + "h": 17, "w": 24, "x": 0, - "y": 0 + "y": 4 }, - "id": 2, + "id": 1, "targets": [ { "datasource": { @@ -98,8 +92,8 @@ "rmfPanelGuid": "908ddeb5-eef7-4ab9-a3f0-4727805960d5", "selectedQuery": "MVS_IMAGE.REPORT.PROCU{name=$LPAR}", "selectedResource": { - "label": "report=PROCU&resource=,$LPAR,MVS_IMAGE", - "value": "report=PROCU&resource=,$LPAR,MVS_IMAGE" + "label": "TABLE(report=PROCU&resource=,$LPAR,MVS_IMAGE)", + "value": "TABLE(report=PROCU&resource=,$LPAR,MVS_IMAGE)" }, "selectedVisualisationType": "table" } @@ -144,7 +138,81 @@ } } ], - "type": "ibm-rmf-panel" + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 4, + "w": 24, + "x": 0, + "y": 0 + }, + "id": 2, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", + "selectedQuery": "MVS_IMAGE.REPORT_BANNER.PROCU{name=$LPAR}", + "selectedResource": { + "label": "BANNER(report=PROCU&resource=,$LPAR,MVS_IMAGE)", + "value": "BANNER(report=PROCU&resource=,$LPAR,MVS_IMAGE)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" } ], "refresh": "1m", @@ -173,7 +241,8 @@ "refresh": 1, "regex": "", "skipUrlSync": false, - "type": "datasource" + "type": "datasource", + "allowCustomValue": false }, { "datasource": { @@ -211,7 +280,8 @@ "regex": "", "skipUrlSync": false, "sort": 0, - "type": "query" + "type": "query", + "allowCustomValue": false } ] }, diff --git a/grafana/rmf-app/src/dashboards/dds/SPACED.json b/grafana/rmf-app/src/dashboards/dds/SPACED.json index b108d5e1..c7762115 100644 --- a/grafana/rmf-app/src/dashboards/dds/SPACED.json +++ b/grafana/rmf-app/src/dashboards/dds/SPACED.json @@ -13,12 +13,6 @@ "id": "ibm-rmf-datasource", "name": "IBM RMF for z/OS", "version": "%VERSION%" - }, - { - "type": "panel", - "id": "ibm-rmf-panel", - "name": "Report for IBM RMF for z/OS", - "version": "%VERSION%" } ], "annotations": { @@ -82,12 +76,12 @@ "overrides": [] }, "gridPos": { - "h": 22, + "h": 16, "w": 24, "x": 0, - "y": 0 + "y": 5 }, - "id": 2, + "id": 1, "interval": "1m", "maxDataPoints": 1, "targets": [ @@ -100,8 +94,8 @@ "rmfPanelGuid": "346e1b6d-c49a-455f-81af-b18f52fea63a", "selectedQuery": "SYSPLEX.REPORT.SPACED", "selectedResource": { - "label": "report=SPACED&resource=,,SYSPLEX", - "value": "report=SPACED&resource=,,SYSPLEX" + "label": "TABLE(report=SPACED&resource=,,SYSPLEX)", + "value": "TABLE(report=SPACED&resource=,,SYSPLEX)" }, "selectedVisualisationType": "table" } @@ -284,7 +278,81 @@ } } ], - "type": "ibm-rmf-panel" + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 5, + "w": 24, + "x": 0, + "y": 0 + }, + "id": 2, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", + "selectedQuery": "SYSPLEX.REPORT_BANNER.SPACED", + "selectedResource": { + "label": "BANNER(report=SPACED&resource=,,SYSPLEX)", + "value": "BANNER(report=SPACED&resource=,,SYSPLEX)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" } ], "schemaVersion": 37, @@ -313,7 +381,8 @@ "refresh": 1, "regex": "", "skipUrlSync": false, - "type": "datasource" + "type": "datasource", + "allowCustomValue": false }, { "datasource": { diff --git a/grafana/rmf-app/src/dashboards/dds/SPACEG.json b/grafana/rmf-app/src/dashboards/dds/SPACEG.json index 55eb7aa2..684adeaf 100644 --- a/grafana/rmf-app/src/dashboards/dds/SPACEG.json +++ b/grafana/rmf-app/src/dashboards/dds/SPACEG.json @@ -13,12 +13,6 @@ "id": "ibm-rmf-datasource", "name": "IBM RMF for z/OS", "version": "%VERSION%" - }, - { - "type": "panel", - "id": "ibm-rmf-panel", - "name": "Report for IBM RMF for z/OS", - "version": "%VERSION%" } ], "annotations": { @@ -82,12 +76,12 @@ "overrides": [] }, "gridPos": { - "h": 21, + "h": 16, "w": 24, "x": 0, - "y": 0 + "y": 5 }, - "id": 2, + "id": 1, "interval": "1m", "maxDataPoints": 1, "targets": [ @@ -100,8 +94,8 @@ "rmfPanelGuid": "3414ef3c-2a88-49dc-a6a3-362d2b69c5b1", "selectedQuery": "SYSPLEX.REPORT.SPACEG", "selectedResource": { - "label": "report=SPACEG&resource=,,SYSPLEX", - "value": "report=SPACEG&resource=,,SYSPLEX" + "label": "TABLE(report=SPACEG&resource=,,SYSPLEX)", + "value": "TABLE(report=SPACEG&resource=,,SYSPLEX)" }, "selectedVisualisationType": "table" } @@ -284,7 +278,81 @@ } } ], - "type": "ibm-rmf-panel" + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 5, + "w": 24, + "x": 0, + "y": 0 + }, + "id": 2, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", + "selectedQuery": "SYSPLEX.REPORT_BANNER.SPACEG", + "selectedResource": { + "label": "BANNER(report=SPACEG&resource=,,SYSPLEX)", + "value": "BANNER(report=SPACEG&resource=,,SYSPLEX)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" } ], "schemaVersion": 37, @@ -313,7 +381,8 @@ "refresh": 1, "regex": "", "skipUrlSync": false, - "type": "datasource" + "type": "datasource", + "allowCustomValue": false }, { "datasource": { diff --git a/grafana/rmf-app/src/dashboards/dds/STOR.json b/grafana/rmf-app/src/dashboards/dds/STOR.json index 1efb7dcf..fee996f8 100644 --- a/grafana/rmf-app/src/dashboards/dds/STOR.json +++ b/grafana/rmf-app/src/dashboards/dds/STOR.json @@ -13,12 +13,6 @@ "id": "ibm-rmf-datasource", "name": "IBM RMF for z/OS", "version": "%VERSION%" - }, - { - "type": "panel", - "id": "ibm-rmf-panel", - "name": "Report for IBM RMF for z/OS", - "version": "%VERSION%" } ], "annotations": { @@ -82,12 +76,12 @@ "overrides": [] }, "gridPos": { - "h": 22, + "h": 17, "w": 24, "x": 0, - "y": 0 + "y": 4 }, - "id": 2, + "id": 1, "targets": [ { "datasource": { @@ -98,8 +92,8 @@ "rmfPanelGuid": "f171daf4-2cd7-4209-a752-3a901b8ff6c3", "selectedQuery": "MVS_IMAGE.REPORT.STOR{name=$LPAR}", "selectedResource": { - "label": "report=STOR&resource=,$LPAR,MVS_IMAGE", - "value": "report=STOR&resource=,$LPAR,MVS_IMAGE" + "label": "TABLE(report=STOR&resource=,$LPAR,MVS_IMAGE)", + "value": "TABLE(report=STOR&resource=,$LPAR,MVS_IMAGE)" }, "selectedVisualisationType": "table" } @@ -157,7 +151,81 @@ } } ], - "type": "ibm-rmf-panel" + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 4, + "w": 24, + "x": 0, + "y": 0 + }, + "id": 2, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", + "selectedQuery": "MVS_IMAGE.REPORT_BANNER.STOR{name=$LPAR}", + "selectedResource": { + "label": "BANNER(report=STOR&resource=,$LPAR,MVS_IMAGE)", + "value": "BANNER(report=STOR&resource=,$LPAR,MVS_IMAGE)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" } ], "refresh": "1m", @@ -186,7 +254,8 @@ "refresh": 1, "regex": "", "skipUrlSync": false, - "type": "datasource" + "type": "datasource", + "allowCustomValue": false }, { "datasource": { @@ -224,7 +293,8 @@ "regex": "", "skipUrlSync": false, "sort": 0, - "type": "query" + "type": "query", + "allowCustomValue": false } ] }, diff --git a/grafana/rmf-app/src/dashboards/dds/STORC.json b/grafana/rmf-app/src/dashboards/dds/STORC.json index 4030b292..b6cae645 100644 --- a/grafana/rmf-app/src/dashboards/dds/STORC.json +++ b/grafana/rmf-app/src/dashboards/dds/STORC.json @@ -13,12 +13,6 @@ "id": "ibm-rmf-datasource", "name": "IBM RMF for z/OS", "version": "%VERSION%" - }, - { - "type": "panel", - "id": "ibm-rmf-panel", - "name": "Report for IBM RMF for z/OS", - "version": "%VERSION%" } ], "annotations": { @@ -82,12 +76,12 @@ "overrides": [] }, "gridPos": { - "h": 22, + "h": 14, "w": 24, "x": 0, - "y": 0 + "y": 7 }, - "id": 2, + "id": 1, "targets": [ { "datasource": { @@ -98,8 +92,8 @@ "rmfPanelGuid": "b28c67d8-2f71-4e81-a797-b8b8ca413910", "selectedQuery": "MVS_IMAGE.REPORT.STORC{name=$LPAR}", "selectedResource": { - "label": "report=STORC&resource=,$LPAR,MVS_IMAGE", - "value": "report=STORC&resource=,$LPAR,MVS_IMAGE" + "label": "TABLE(report=STORC&resource=,$LPAR,MVS_IMAGE)", + "value": "TABLE(report=STORC&resource=,$LPAR,MVS_IMAGE)" }, "selectedVisualisationType": "table" } @@ -193,7 +187,155 @@ } } ], - "type": "ibm-rmf-panel" + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 7, + "w": 12, + "x": 0, + "y": 0 + }, + "id": 2, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", + "selectedQuery": "MVS_IMAGE.REPORT_BANNER.STORC{name=$LPAR}", + "selectedResource": { + "label": "BANNER(report=STORC&resource=,$LPAR,MVS_IMAGE)", + "value": "BANNER(report=STORC&resource=,$LPAR,MVS_IMAGE)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 7, + "w": 12, + "x": 12, + "y": 0 + }, + "id": 3, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "885ff52d-c1c1-4112-951f-acdec5c20116", + "selectedQuery": "MVS_IMAGE.REPORT_CAPTION.STORC{name=$LPAR}", + "selectedResource": { + "label": "CAPTION(report=STORC&resource=,$LPAR,MVS_IMAGE)", + "value": "CAPTION(report=STORC&resource=,$LPAR,MVS_IMAGE)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" } ], "refresh": "1m", @@ -222,7 +364,8 @@ "refresh": 1, "regex": "", "skipUrlSync": false, - "type": "datasource" + "type": "datasource", + "allowCustomValue": false }, { "datasource": { @@ -260,7 +403,8 @@ "regex": "", "skipUrlSync": false, "sort": 0, - "type": "query" + "type": "query", + "allowCustomValue": false } ] }, diff --git a/grafana/rmf-app/src/dashboards/dds/STORCR.json b/grafana/rmf-app/src/dashboards/dds/STORCR.json index 0eb0765f..ffaba2a0 100644 --- a/grafana/rmf-app/src/dashboards/dds/STORCR.json +++ b/grafana/rmf-app/src/dashboards/dds/STORCR.json @@ -13,12 +13,6 @@ "id": "ibm-rmf-datasource", "name": "IBM RMF for z/OS", "version": "%VERSION%" - }, - { - "type": "panel", - "id": "ibm-rmf-panel", - "name": "Report for IBM RMF for z/OS", - "version": "%VERSION%" } ], "annotations": { @@ -82,10 +76,10 @@ "overrides": [] }, "gridPos": { - "h": 22, + "h": 17, "w": 24, "x": 0, - "y": 0 + "y": 4 }, "id": 2, "targets": [ @@ -98,8 +92,8 @@ "rmfPanelGuid": "d6900151-5042-4f06-aaa7-cc8088cdbe4e", "selectedQuery": "MVS_IMAGE.REPORT.STORCR{name=$LPAR}", "selectedResource": { - "label": "report=STORCR&resource=,$LPAR,MVS_IMAGE", - "value": "report=STORCR&resource=,$LPAR,MVS_IMAGE" + "label": "TABLE(report=STORCR&resource=,$LPAR,MVS_IMAGE)", + "value": "TABLE(report=STORCR&resource=,$LPAR,MVS_IMAGE)" }, "selectedVisualisationType": "table" } @@ -131,7 +125,81 @@ } } ], - "type": "ibm-rmf-panel" + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 4, + "w": 24, + "x": 0, + "y": 0 + }, + "id": 2, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", + "selectedQuery": "MVS_IMAGE.REPORT_BANNER.STORCR{name=$LPAR}", + "selectedResource": { + "label": "BANNER(report=STORCR&resource=,$LPAR,MVS_IMAGE)", + "value": "BANNER(report=STORCR&resource=,$LPAR,MVS_IMAGE)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" } ], "refresh": "1m", @@ -160,7 +228,8 @@ "refresh": 1, "regex": "", "skipUrlSync": false, - "type": "datasource" + "type": "datasource", + "allowCustomValue": false }, { "datasource": { @@ -198,7 +267,8 @@ "regex": "", "skipUrlSync": false, "sort": 0, - "type": "query" + "type": "query", + "allowCustomValue": false } ] }, diff --git a/grafana/rmf-app/src/dashboards/dds/STORF.json b/grafana/rmf-app/src/dashboards/dds/STORF.json index 583c8a86..55e91b5e 100644 --- a/grafana/rmf-app/src/dashboards/dds/STORF.json +++ b/grafana/rmf-app/src/dashboards/dds/STORF.json @@ -13,12 +13,6 @@ "id": "ibm-rmf-datasource", "name": "IBM RMF for z/OS", "version": "%VERSION%" - }, - { - "type": "panel", - "id": "ibm-rmf-panel", - "name": "Report for IBM RMF for z/OS", - "version": "%VERSION%" } ], "annotations": { @@ -82,12 +76,12 @@ "overrides": [] }, "gridPos": { - "h": 22, + "h": 17, "w": 24, "x": 0, - "y": 0 + "y": 4 }, - "id": 2, + "id": 1, "targets": [ { "datasource": { @@ -98,8 +92,8 @@ "rmfPanelGuid": "a3b4e537-0ff9-4b37-b673-d2d27d82d1e6", "selectedQuery": "MVS_IMAGE.REPORT.STORF{name=$LPAR}", "selectedResource": { - "label": "report=STORF&resource=,$LPAR,MVS_IMAGE", - "value": "report=STORF&resource=,$LPAR,MVS_IMAGE" + "label": "TABLE(report=STORF&resource=,$LPAR,MVS_IMAGE)", + "value": "TABLE(report=STORF&resource=,$LPAR,MVS_IMAGE)" }, "selectedVisualisationType": "table" } @@ -140,7 +134,81 @@ } } ], - "type": "ibm-rmf-panel" + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 4, + "w": 24, + "x": 0, + "y": 0 + }, + "id": 2, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", + "selectedQuery": "MVS_IMAGE.REPORT_BANNER.STORF{name=$LPAR}", + "selectedResource": { + "label": "BANNER(report=STORF&resource=,$LPAR,MVS_IMAGE)", + "value": "BANNER(report=STORF&resource=,$LPAR,MVS_IMAGE)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" } ], "refresh": "1m", @@ -169,7 +237,8 @@ "refresh": 1, "regex": "", "skipUrlSync": false, - "type": "datasource" + "type": "datasource", + "allowCustomValue": false }, { "datasource": { @@ -207,7 +276,8 @@ "regex": "", "skipUrlSync": false, "sort": 0, - "type": "query" + "type": "query", + "allowCustomValue": false } ] }, diff --git a/grafana/rmf-app/src/dashboards/dds/STORM.json b/grafana/rmf-app/src/dashboards/dds/STORM.json index a1c65679..81a32f25 100644 --- a/grafana/rmf-app/src/dashboards/dds/STORM.json +++ b/grafana/rmf-app/src/dashboards/dds/STORM.json @@ -13,12 +13,6 @@ "id": "ibm-rmf-datasource", "name": "IBM RMF for z/OS", "version": "%VERSION%" - }, - { - "type": "panel", - "id": "ibm-rmf-panel", - "name": "Report for IBM RMF for z/OS", - "version": "%VERSION%" } ], "annotations": { @@ -82,12 +76,12 @@ "overrides": [] }, "gridPos": { - "h": 22, + "h": 14, "w": 24, "x": 0, - "y": 0 + "y": 7 }, - "id": 2, + "id": 1, "targets": [ { "datasource": { @@ -98,8 +92,8 @@ "rmfPanelGuid": "35036b16-3f54-4417-9905-c5644da37dd5", "selectedQuery": "MVS_IMAGE.REPORT.STORM{name=$LPAR}", "selectedResource": { - "label": "report=STORM&resource=,$LPAR,MVS_IMAGE", - "value": "report=STORM&resource=,$LPAR,MVS_IMAGE" + "label": "TABLE(report=STORM&resource=,$LPAR,MVS_IMAGE)", + "value": "TABLE(report=STORM&resource=,$LPAR,MVS_IMAGE)" }, "selectedVisualisationType": "table" } @@ -218,7 +212,155 @@ } } ], - "type": "ibm-rmf-panel" + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 7, + "w": 12, + "x": 0, + "y": 0 + }, + "id": 2, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", + "selectedQuery": "MVS_IMAGE.REPORT_BANNER.STORM{name=$LPAR}", + "selectedResource": { + "label": "BANNER(report=STORM&resource=,$LPAR,MVS_IMAGE)", + "value": "BANNER(report=STORM&resource=,$LPAR,MVS_IMAGE)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 7, + "w": 12, + "x": 12, + "y": 0 + }, + "id": 3, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "885ff52d-c1c1-4112-951f-acdec5c20116", + "selectedQuery": "MVS_IMAGE.REPORT_CAPTION.STORM{name=$LPAR}", + "selectedResource": { + "label": "CAPTION(report=STORM&resource=,$LPAR,MVS_IMAGE)", + "value": "CAPTION(report=STORM&resource=,$LPAR,MVS_IMAGE)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" } ], "refresh": "1m", @@ -247,7 +389,8 @@ "refresh": 1, "regex": "", "skipUrlSync": false, - "type": "datasource" + "type": "datasource", + "allowCustomValue": false }, { "datasource": { @@ -285,7 +428,8 @@ "regex": "", "skipUrlSync": false, "sort": 0, - "type": "query" + "type": "query", + "allowCustomValue": false } ] }, diff --git a/grafana/rmf-app/src/dashboards/dds/STORR.json b/grafana/rmf-app/src/dashboards/dds/STORR.json index dea5e2cb..db1f6fae 100644 --- a/grafana/rmf-app/src/dashboards/dds/STORR.json +++ b/grafana/rmf-app/src/dashboards/dds/STORR.json @@ -13,12 +13,6 @@ "id": "ibm-rmf-datasource", "name": "IBM RMF for z/OS", "version": "%VERSION%" - }, - { - "type": "panel", - "id": "ibm-rmf-panel", - "name": "Report for IBM RMF for z/OS", - "version": "%VERSION%" } ], "annotations": { @@ -82,12 +76,12 @@ "overrides": [] }, "gridPos": { - "h": 22, + "h": 14, "w": 24, "x": 0, - "y": 0 + "y": 7 }, - "id": 2, + "id": 1, "targets": [ { "datasource": { @@ -98,8 +92,8 @@ "rmfPanelGuid": "7eb3af2b-4fd9-4751-982a-05a7faa388b1", "selectedQuery": "MVS_IMAGE.REPORT.STORR{name=$LPAR}", "selectedResource": { - "label": "report=STORR&resource=,$LPAR,MVS_IMAGE", - "value": "report=STORR&resource=,$LPAR,MVS_IMAGE" + "label": "TABLE(report=STORR&resource=,$LPAR,MVS_IMAGE)", + "value": "TABLE(report=STORR&resource=,$LPAR,MVS_IMAGE)" }, "selectedVisualisationType": "table" } @@ -211,7 +205,155 @@ } } ], - "type": "ibm-rmf-panel" + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 7, + "w": 12, + "x": 0, + "y": 0 + }, + "id": 2, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", + "selectedQuery": "MVS_IMAGE.REPORT_BANNER.STORR{name=$LPAR}", + "selectedResource": { + "label": "BANNER(report=STORR&resource=,$LPAR,MVS_IMAGE)", + "value": "BANNER(report=STORR&resource=,$LPAR,MVS_IMAGE)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 7, + "w": 12, + "x": 12, + "y": 0 + }, + "id": 3, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "885ff52d-c1c1-4112-951f-acdec5c20116", + "selectedQuery": "MVS_IMAGE.REPORT_CAPTION.STORR{name=$LPAR}", + "selectedResource": { + "label": "CAPTION(report=STORR&resource=,$LPAR,MVS_IMAGE)", + "value": "CAPTION(report=STORR&resource=,$LPAR,MVS_IMAGE)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" } ], "refresh": "1m", @@ -240,7 +382,8 @@ "refresh": 1, "regex": "", "skipUrlSync": false, - "type": "datasource" + "type": "datasource", + "allowCustomValue": false }, { "datasource": { @@ -278,7 +421,8 @@ "regex": "", "skipUrlSync": false, "sort": 0, - "type": "query" + "type": "query", + "allowCustomValue": false } ] }, diff --git a/grafana/rmf-app/src/dashboards/dds/STORS.json b/grafana/rmf-app/src/dashboards/dds/STORS.json index ee0e2a1b..d6c85170 100644 --- a/grafana/rmf-app/src/dashboards/dds/STORS.json +++ b/grafana/rmf-app/src/dashboards/dds/STORS.json @@ -13,12 +13,6 @@ "id": "ibm-rmf-datasource", "name": "IBM RMF for z/OS", "version": "%VERSION%" - }, - { - "type": "panel", - "id": "ibm-rmf-panel", - "name": "Report for IBM RMF for z/OS", - "version": "%VERSION%" } ], "annotations": { @@ -82,12 +76,12 @@ "overrides": [] }, "gridPos": { - "h": 22, + "h": 14, "w": 24, "x": 0, - "y": 0 + "y": 7 }, - "id": 2, + "id": 1, "targets": [ { "datasource": { @@ -98,8 +92,8 @@ "rmfPanelGuid": "4289baf1-221c-4be3-b469-ad2ec1c31848", "selectedQuery": "MVS_IMAGE.REPORT.STORS{name=$LPAR}", "selectedResource": { - "label": "report=STORS&resource=,$LPAR,MVS_IMAGE", - "value": "report=STORS&resource=,$LPAR,MVS_IMAGE" + "label": "TABLE(report=STORS&resource=,$LPAR,MVS_IMAGE)", + "value": "TABLE(report=STORS&resource=,$LPAR,MVS_IMAGE)" }, "selectedVisualisationType": "table" } @@ -184,7 +178,155 @@ } } ], - "type": "ibm-rmf-panel" + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 7, + "w": 12, + "x": 0, + "y": 0 + }, + "id": 2, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", + "selectedQuery": "MVS_IMAGE.REPORT_BANNER.STORS{name=$LPAR}", + "selectedResource": { + "label": "BANNER(report=STORS&resource=,$LPAR,MVS_IMAGE)", + "value": "BANNER(report=STORS&resource=,$LPAR,MVS_IMAGE)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 7, + "w": 12, + "x": 12, + "y": 0 + }, + "id": 3, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "885ff52d-c1c1-4112-951f-acdec5c20116", + "selectedQuery": "MVS_IMAGE.REPORT_CAPTION.STORS{name=$LPAR}", + "selectedResource": { + "label": "CAPTION(report=STORS&resource=,$LPAR,MVS_IMAGE)", + "value": "CAPTION(report=STORS&resource=,$LPAR,MVS_IMAGE)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" } ], "refresh": "1m", @@ -213,7 +355,8 @@ "refresh": 1, "regex": "", "skipUrlSync": false, - "type": "datasource" + "type": "datasource", + "allowCustomValue": false }, { "datasource": { @@ -251,7 +394,8 @@ "regex": "", "skipUrlSync": false, "sort": 0, - "type": "query" + "type": "query", + "allowCustomValue": false } ] }, diff --git a/grafana/rmf-app/src/dashboards/dds/SYSINFO.json b/grafana/rmf-app/src/dashboards/dds/SYSINFO.json index 3647f720..2282c6b1 100644 --- a/grafana/rmf-app/src/dashboards/dds/SYSINFO.json +++ b/grafana/rmf-app/src/dashboards/dds/SYSINFO.json @@ -13,12 +13,6 @@ "id": "ibm-rmf-datasource", "name": "IBM RMF for z/OS", "version": "%VERSION%" - }, - { - "type": "panel", - "id": "ibm-rmf-panel", - "name": "Report for IBM RMF for z/OS", - "version": "%VERSION%" } ], "annotations": { @@ -82,12 +76,12 @@ "overrides": [] }, "gridPos": { - "h": 22, + "h": 14, "w": 24, "x": 0, - "y": 0 + "y": 7 }, - "id": 2, + "id": 1, "targets": [ { "datasource": { @@ -98,8 +92,8 @@ "rmfPanelGuid": "6a55cb0b-c2bc-4586-b79d-53c103b29550", "selectedQuery": "MVS_IMAGE.REPORT.SYSINFO{name=$LPAR}", "selectedResource": { - "label": "report=SYSINFO&resource=,$LPAR,MVS_IMAGE", - "value": "report=SYSINFO&resource=,$LPAR,MVS_IMAGE" + "label": "TABLE(report=SYSINFO&resource=,$LPAR,MVS_IMAGE)", + "value": "TABLE(report=SYSINFO&resource=,$LPAR,MVS_IMAGE)" }, "selectedVisualisationType": "table" } @@ -304,7 +298,155 @@ } } ], - "type": "ibm-rmf-panel" + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 7, + "w": 12, + "x": 0, + "y": 0 + }, + "id": 2, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", + "selectedQuery": "MVS_IMAGE.REPORT_BANNER.SYSINFO{name=$LPAR}", + "selectedResource": { + "label": "BANNER(report=SYSINFO&resource=,$LPAR,MVS_IMAGE)", + "value": "BANNER(report=SYSINFO&resource=,$LPAR,MVS_IMAGE)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 7, + "w": 12, + "x": 12, + "y": 0 + }, + "id": 3, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "885ff52d-c1c1-4112-951f-acdec5c20116", + "selectedQuery": "MVS_IMAGE.REPORT_CAPTION.SYSINFO{name=$LPAR}", + "selectedResource": { + "label": "CAPTION(report=SYSINFO&resource=,$LPAR,MVS_IMAGE)", + "value": "CAPTION(report=SYSINFO&resource=,$LPAR,MVS_IMAGE)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" } ], "refresh": "1m", @@ -333,7 +475,8 @@ "refresh": 1, "regex": "", "skipUrlSync": false, - "type": "datasource" + "type": "datasource", + "allowCustomValue": false }, { "datasource": { @@ -371,7 +514,8 @@ "regex": "", "skipUrlSync": false, "sort": 0, - "type": "query" + "type": "query", + "allowCustomValue": false } ] }, diff --git a/grafana/rmf-app/src/dashboards/dds/SYSRG.json b/grafana/rmf-app/src/dashboards/dds/SYSRG.json index 67845868..2ad775b5 100644 --- a/grafana/rmf-app/src/dashboards/dds/SYSRG.json +++ b/grafana/rmf-app/src/dashboards/dds/SYSRG.json @@ -13,12 +13,6 @@ "id": "ibm-rmf-datasource", "name": "IBM RMF for z/OS", "version": "%VERSION%" - }, - { - "type": "panel", - "id": "ibm-rmf-panel", - "name": "Report for IBM RMF for z/OS", - "version": "%VERSION%" } ], "annotations": { @@ -82,12 +76,12 @@ "overrides": [] }, "gridPos": { - "h": 22, + "h": 16, "w": 24, "x": 0, - "y": 0 + "y": 5 }, - "id": 2, + "id": 1, "interval": "1m", "maxDataPoints": 1, "targets": [ @@ -100,8 +94,8 @@ "rmfPanelGuid": "1ba9a8c4-b112-48ab-b8ff-d7979197efc4", "selectedQuery": "SYSPLEX.REPORT.SYSRG", "selectedResource": { - "label": "report=SYSRG&resource=,,SYSPLEX", - "value": "report=SYSRG&resource=,,SYSPLEX" + "label": "TABLE(report=SYSRG&resource=,,SYSPLEX)", + "value": "TABLE(report=SYSRG&resource=,,SYSPLEX)" }, "selectedVisualisationType": "table" } @@ -256,7 +250,81 @@ } } ], - "type": "ibm-rmf-panel" + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 5, + "w": 24, + "x": 0, + "y": 0 + }, + "id": 2, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", + "selectedQuery": "SYSPLEX.REPORT_BANNER.SYSRG", + "selectedResource": { + "label": "BANNER(report=SYSRG&resource=,,SYSPLEX)", + "value": "BANNER(report=SYSRG&resource=,,SYSPLEX)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" } ], "schemaVersion": 37, @@ -285,7 +353,8 @@ "refresh": 1, "regex": "", "skipUrlSync": false, - "type": "datasource" + "type": "datasource", + "allowCustomValue": false }, { "datasource": { diff --git a/grafana/rmf-app/src/dashboards/dds/SYSSUM.json b/grafana/rmf-app/src/dashboards/dds/SYSSUM.json index 89ae2d88..19537ed6 100644 --- a/grafana/rmf-app/src/dashboards/dds/SYSSUM.json +++ b/grafana/rmf-app/src/dashboards/dds/SYSSUM.json @@ -13,12 +13,6 @@ "id": "ibm-rmf-datasource", "name": "IBM RMF for z/OS", "version": "%VERSION%" - }, - { - "type": "panel", - "id": "ibm-rmf-panel", - "name": "Report for IBM RMF for z/OS", - "version": "%VERSION%" } ], "annotations": { @@ -82,12 +76,12 @@ "overrides": [] }, "gridPos": { - "h": 22, + "h": 14, "w": 24, "x": 0, - "y": 0 + "y": 7 }, - "id": 2, + "id": 1, "interval": "1m", "maxDataPoints": 1, "targets": [ @@ -100,8 +94,8 @@ "rmfPanelGuid": "48f2221c-2282-4937-85e0-b52a71e1d93e", "selectedQuery": "SYSPLEX.REPORT.SYSSUM", "selectedResource": { - "label": "report=SYSSUM&resource=,,SYSPLEX", - "value": "report=SYSSUM&resource=,,SYSPLEX" + "label": "TABLE(report=SYSSUM&resource=,,SYSPLEX)", + "value": "TABLE(report=SYSSUM&resource=,,SYSPLEX)" }, "selectedVisualisationType": "table" } @@ -284,7 +278,155 @@ } } ], - "type": "ibm-rmf-panel" + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 7, + "w": 12, + "x": 0, + "y": 0 + }, + "id": 2, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", + "selectedQuery": "SYSPLEX.REPORT_BANNER.SYSSUM", + "selectedResource": { + "label": "BANNER(report=SYSSUM&resource=,,SYSPLEX)", + "value": "BANNER(report=SYSSUM&resource=,,SYSPLEX)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 7, + "w": 12, + "x": 12, + "y": 0 + }, + "id": 3, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "885ff52d-c1c1-4112-951f-acdec5c20116", + "selectedQuery": "SYSPLEX.REPORT_CAPTION.SYSSUM", + "selectedResource": { + "label": "CAPTION(report=SYSSUM&resource=,,SYSPLEX)", + "value": "CAPTION(report=SYSSUM&resource=,,SYSPLEX)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" } ], "schemaVersion": 37, @@ -313,7 +455,8 @@ "refresh": 1, "regex": "", "skipUrlSync": false, - "type": "datasource" + "type": "datasource", + "allowCustomValue": false }, { "datasource": { diff --git a/grafana/rmf-app/src/dashboards/dds/USAGE.json b/grafana/rmf-app/src/dashboards/dds/USAGE.json index a66a405d..12b9fcc5 100644 --- a/grafana/rmf-app/src/dashboards/dds/USAGE.json +++ b/grafana/rmf-app/src/dashboards/dds/USAGE.json @@ -13,12 +13,6 @@ "id": "ibm-rmf-datasource", "name": "IBM RMF for z/OS", "version": "%VERSION%" - }, - { - "type": "panel", - "id": "ibm-rmf-panel", - "name": "Report for IBM RMF for z/OS", - "version": "%VERSION%" } ], "annotations": { @@ -82,12 +76,12 @@ "overrides": [] }, "gridPos": { - "h": 22, + "h": 17, "w": 24, "x": 0, - "y": 0 + "y": 4 }, - "id": 2, + "id": 1, "targets": [ { "datasource": { @@ -98,8 +92,8 @@ "rmfPanelGuid": "aa2f5d29-d19b-4e8f-b782-32468729ab3f", "selectedQuery": "MVS_IMAGE.REPORT.USAGE{name=$LPAR}", "selectedResource": { - "label": "report=USAGE&resource=,$LPAR,MVS_IMAGE", - "value": "report=USAGE&resource=,$LPAR,MVS_IMAGE" + "label": "TABLE(report=USAGE&resource=,$LPAR,MVS_IMAGE)", + "value": "TABLE(report=USAGE&resource=,$LPAR,MVS_IMAGE)" }, "selectedVisualisationType": "table" } @@ -178,7 +172,81 @@ } } ], - "type": "ibm-rmf-panel" + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 4, + "w": 24, + "x": 0, + "y": 0 + }, + "id": 2, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", + "selectedQuery": "MVS_IMAGE.REPORT_BANNER.USAGE{name=$LPAR}", + "selectedResource": { + "label": "BANNER(report=USAGE&resource=,$LPAR,MVS_IMAGE)", + "value": "BANNER(report=USAGE&resource=,$LPAR,MVS_IMAGE)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" } ], "refresh": "1m", @@ -207,7 +275,8 @@ "refresh": 1, "regex": "", "skipUrlSync": false, - "type": "datasource" + "type": "datasource", + "allowCustomValue": false }, { "datasource": { @@ -245,7 +314,8 @@ "regex": "", "skipUrlSync": false, "sort": 0, - "type": "query" + "type": "query", + "allowCustomValue": false } ] }, diff --git a/grafana/rmf-app/src/dashboards/dds/XCFGROUP.json b/grafana/rmf-app/src/dashboards/dds/XCFGROUP.json index ca506011..e6a9302f 100644 --- a/grafana/rmf-app/src/dashboards/dds/XCFGROUP.json +++ b/grafana/rmf-app/src/dashboards/dds/XCFGROUP.json @@ -13,12 +13,6 @@ "id": "ibm-rmf-datasource", "name": "IBM RMF for z/OS", "version": "%VERSION%" - }, - { - "type": "panel", - "id": "ibm-rmf-panel", - "name": "Report for IBM RMF for z/OS", - "version": "%VERSION%" } ], "annotations": { @@ -82,12 +76,12 @@ "overrides": [] }, "gridPos": { - "h": 22, + "h": 16, "w": 24, "x": 0, - "y": 0 + "y": 5 }, - "id": 2, + "id": 1, "interval": "1m", "maxDataPoints": 1, "targets": [ @@ -100,8 +94,8 @@ "rmfPanelGuid": "5e57a653-10c8-461d-8991-ada953c73ba8", "selectedQuery": "SYSPLEX.REPORT.XCFGROUP", "selectedResource": { - "label": "report=XCFGROUP&resource=,,SYSPLEX", - "value": "report=XCFGROUP&resource=,,SYSPLEX" + "label": "TABLE(report=XCFGROUP&resource=,,SYSPLEX)", + "value": "TABLE(report=XCFGROUP&resource=,,SYSPLEX)" }, "selectedVisualisationType": "table" } @@ -288,7 +282,81 @@ } } ], - "type": "ibm-rmf-panel" + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 5, + "w": 24, + "x": 0, + "y": 0 + }, + "id": 2, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", + "selectedQuery": "SYSPLEX.REPORT_BANNER.XCFGROUP", + "selectedResource": { + "label": "BANNER(report=XCFGROUP&resource=,,SYSPLEX)", + "value": "BANNER(report=XCFGROUP&resource=,,SYSPLEX)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" } ], "schemaVersion": 37, @@ -317,7 +385,8 @@ "refresh": 1, "regex": "", "skipUrlSync": false, - "type": "datasource" + "type": "datasource", + "allowCustomValue": false }, { "datasource": { diff --git a/grafana/rmf-app/src/dashboards/dds/XCFOVW.json b/grafana/rmf-app/src/dashboards/dds/XCFOVW.json index 712f5e6a..c2eb38d1 100644 --- a/grafana/rmf-app/src/dashboards/dds/XCFOVW.json +++ b/grafana/rmf-app/src/dashboards/dds/XCFOVW.json @@ -13,12 +13,6 @@ "id": "ibm-rmf-datasource", "name": "IBM RMF for z/OS", "version": "%VERSION%" - }, - { - "type": "panel", - "id": "ibm-rmf-panel", - "name": "Report for IBM RMF for z/OS", - "version": "%VERSION%" } ], "annotations": { @@ -82,12 +76,12 @@ "overrides": [] }, "gridPos": { - "h": 22, + "h": 16, "w": 24, "x": 0, - "y": 0 + "y": 5 }, - "id": 2, + "id": 1, "interval": "1m", "maxDataPoints": 1, "targets": [ @@ -100,8 +94,8 @@ "rmfPanelGuid": "aa73ed04-967c-469d-a5f8-9eb0d1c8b092", "selectedQuery": "SYSPLEX.REPORT.XCFOVW", "selectedResource": { - "label": "report=XCFOVW&resource=,,SYSPLEX", - "value": "report=XCFOVW&resource=,,SYSPLEX" + "label": "TABLE(report=XCFOVW&resource=,,SYSPLEX)", + "value": "TABLE(report=XCFOVW&resource=,,SYSPLEX)" }, "selectedVisualisationType": "table" } @@ -288,7 +282,81 @@ } } ], - "type": "ibm-rmf-panel" + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 5, + "w": 24, + "x": 0, + "y": 0 + }, + "id": 2, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", + "selectedQuery": "SYSPLEX.REPORT_BANNER.XCFOVW", + "selectedResource": { + "label": "BANNER(report=XCFOVW&resource=,,SYSPLEX)", + "value": "BANNER(report=XCFOVW&resource=,,SYSPLEX)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" } ], "schemaVersion": 37, @@ -317,7 +385,8 @@ "refresh": 1, "regex": "", "skipUrlSync": false, - "type": "datasource" + "type": "datasource", + "allowCustomValue": false }, { "datasource": { diff --git a/grafana/rmf-app/src/dashboards/dds/XCFPATH.json b/grafana/rmf-app/src/dashboards/dds/XCFPATH.json index f48b3f1e..feb758ae 100644 --- a/grafana/rmf-app/src/dashboards/dds/XCFPATH.json +++ b/grafana/rmf-app/src/dashboards/dds/XCFPATH.json @@ -13,12 +13,6 @@ "id": "ibm-rmf-datasource", "name": "IBM RMF for z/OS", "version": "%VERSION%" - }, - { - "type": "panel", - "id": "ibm-rmf-panel", - "name": "Report for IBM RMF for z/OS", - "version": "%VERSION%" } ], "annotations": { @@ -109,12 +103,12 @@ ] }, "gridPos": { - "h": 22, + "h": 16, "w": 24, "x": 0, - "y": 0 + "y": 5 }, - "id": 2, + "id": 1, "interval": "1m", "maxDataPoints": 1, "targets": [ @@ -127,8 +121,8 @@ "rmfPanelGuid": "3282dc77-1ad7-4380-9a9a-0f846ea8af6a", "selectedQuery": "SYSPLEX.REPORT.XCFPATH", "selectedResource": { - "label": "report=XCFPATH&resource=,,SYSPLEX", - "value": "report=XCFPATH&resource=,,SYSPLEX" + "label": "TABLE(report=XCFPATH&resource=,,SYSPLEX)", + "value": "TABLE(report=XCFPATH&resource=,,SYSPLEX)" }, "selectedVisualisationType": "table" } @@ -294,7 +288,81 @@ } } ], - "type": "ibm-rmf-panel" + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 5, + "w": 24, + "x": 0, + "y": 0 + }, + "id": 2, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", + "selectedQuery": "SYSPLEX.REPORT_BANNER.XCFPATH", + "selectedResource": { + "label": "BANNER(report=XCFPATH&resource=,,SYSPLEX)", + "value": "BANNER(report=XCFPATH&resource=,,SYSPLEX)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" } ], "schemaVersion": 37, @@ -323,7 +391,8 @@ "refresh": 1, "regex": "", "skipUrlSync": false, - "type": "datasource" + "type": "datasource", + "allowCustomValue": false }, { "datasource": { diff --git a/grafana/rmf-app/src/dashboards/dds/XCFSYS.json b/grafana/rmf-app/src/dashboards/dds/XCFSYS.json index e7c1d8e5..c5830a1d 100644 --- a/grafana/rmf-app/src/dashboards/dds/XCFSYS.json +++ b/grafana/rmf-app/src/dashboards/dds/XCFSYS.json @@ -13,12 +13,6 @@ "id": "ibm-rmf-datasource", "name": "IBM RMF for z/OS", "version": "%VERSION%" - }, - { - "type": "panel", - "id": "ibm-rmf-panel", - "name": "Report for IBM RMF for z/OS", - "version": "%VERSION%" } ], "annotations": { @@ -113,12 +107,12 @@ ] }, "gridPos": { - "h": 22, + "h": 16, "w": 24, "x": 0, - "y": 0 + "y": 5 }, - "id": 2, + "id": 1, "interval": "1m", "maxDataPoints": 1, "targets": [ @@ -131,8 +125,8 @@ "rmfPanelGuid": "056aa738-d1cf-46a4-aee4-2f7176b48b13", "selectedQuery": "SYSPLEX.REPORT.XCFSYS", "selectedResource": { - "label": "report=XCFSYS&resource=,,SYSPLEX", - "value": "report=XCFSYS&resource=,,SYSPLEX" + "label": "TABLE(report=XCFSYS&resource=,,SYSPLEX)", + "value": "TABLE(report=XCFSYS&resource=,,SYSPLEX)" }, "selectedVisualisationType": "table" } @@ -283,7 +277,81 @@ } } ], - "type": "ibm-rmf-panel" + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 5, + "w": 24, + "x": 0, + "y": 0 + }, + "id": 2, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", + "selectedQuery": "SYSPLEX.REPORT_BANNER.XCFSYS", + "selectedResource": { + "label": "BANNER(report=XCFSYS&resource=,,SYSPLEX)", + "value": "BANNER(report=XCFSYS&resource=,,SYSPLEX)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" } ], "schemaVersion": 37, @@ -312,7 +380,8 @@ "refresh": 1, "regex": "", "skipUrlSync": false, - "type": "datasource" + "type": "datasource", + "allowCustomValue": false }, { "datasource": { diff --git a/grafana/rmf-app/src/dashboards/dds/ZFSFS.json b/grafana/rmf-app/src/dashboards/dds/ZFSFS.json index 36cb0b46..8159eddf 100644 --- a/grafana/rmf-app/src/dashboards/dds/ZFSFS.json +++ b/grafana/rmf-app/src/dashboards/dds/ZFSFS.json @@ -13,12 +13,6 @@ "id": "ibm-rmf-datasource", "name": "IBM RMF for z/OS", "version": "%VERSION%" - }, - { - "type": "panel", - "id": "ibm-rmf-panel", - "name": "Report for IBM RMF for z/OS", - "version": "%VERSION%" } ], "annotations": { @@ -82,10 +76,10 @@ "overrides": [] }, "gridPos": { - "h": 22, + "h": 16, "w": 24, "x": 0, - "y": 0 + "y": 5 }, "id": 2, "interval": "1m", @@ -100,8 +94,8 @@ "rmfPanelGuid": "d4867b70-6f07-4a87-8390-5d947a775d05", "selectedQuery": "SYSPLEX.REPORT.ZFSFS", "selectedResource": { - "label": "report=ZFSFS&resource=,,SYSPLEX", - "value": "report=ZFSFS&resource=,,SYSPLEX" + "label": "TABLE(report=ZFSFS&resource=,,SYSPLEX)", + "value": "TABLE(report=ZFSFS&resource=,,SYSPLEX)" }, "selectedVisualisationType": "table" } @@ -304,7 +298,81 @@ } } ], - "type": "ibm-rmf-panel" + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 5, + "w": 24, + "x": 0, + "y": 0 + }, + "id": 2, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", + "selectedQuery": "SYSPLEX.REPORT_BANNER.ZFSFS", + "selectedResource": { + "label": "BANNER(report=ZFSFS&resource=,,SYSPLEX)", + "value": "BANNER(report=ZFSFS&resource=,,SYSPLEX)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" } ], "schemaVersion": 37, @@ -333,7 +401,8 @@ "refresh": 1, "regex": "", "skipUrlSync": false, - "type": "datasource" + "type": "datasource", + "allowCustomValue": false }, { "datasource": { diff --git a/grafana/rmf-app/src/dashboards/dds/ZFSKN.json b/grafana/rmf-app/src/dashboards/dds/ZFSKN.json index 3e5362eb..5825a2ca 100644 --- a/grafana/rmf-app/src/dashboards/dds/ZFSKN.json +++ b/grafana/rmf-app/src/dashboards/dds/ZFSKN.json @@ -13,12 +13,6 @@ "id": "ibm-rmf-datasource", "name": "IBM RMF for z/OS", "version": "%VERSION%" - }, - { - "type": "panel", - "id": "ibm-rmf-panel", - "name": "Report for IBM RMF for z/OS", - "version": "%VERSION%" } ], "annotations": { @@ -82,12 +76,12 @@ "overrides": [] }, "gridPos": { - "h": 22, + "h": 16, "w": 24, "x": 0, - "y": 0 + "y": 5 }, - "id": 2, + "id": 1, "interval": "1m", "maxDataPoints": 1, "targets": [ @@ -100,8 +94,8 @@ "rmfPanelGuid": "31e86a06-d0fb-46e5-970a-d86e4c098749", "selectedQuery": "SYSPLEX.REPORT.ZFSKN", "selectedResource": { - "label": "report=ZFSKN&resource=,,SYSPLEX", - "value": "report=ZFSKN&resource=,,SYSPLEX" + "label": "TABLE(report=ZFSKN&resource=,,SYSPLEX)", + "value": "TABLE(report=ZFSKN&resource=,,SYSPLEX)" }, "selectedVisualisationType": "table" } @@ -284,7 +278,81 @@ } } ], - "type": "ibm-rmf-panel" + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 5, + "w": 24, + "x": 0, + "y": 0 + }, + "id": 2, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", + "selectedQuery": "SYSPLEX.REPORT_BANNER.ZFSKN", + "selectedResource": { + "label": "BANNER(report=ZFSKN&resource=,,SYSPLEX)", + "value": "BANNER(report=ZFSKN&resource=,,SYSPLEX)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" } ], "schemaVersion": 37, @@ -313,7 +381,8 @@ "refresh": 1, "regex": "", "skipUrlSync": false, - "type": "datasource" + "type": "datasource", + "allowCustomValue": false }, { "datasource": { diff --git a/grafana/rmf-app/src/dashboards/dds/ZFSOVW.json b/grafana/rmf-app/src/dashboards/dds/ZFSOVW.json index 8009ae8c..bd0ac833 100644 --- a/grafana/rmf-app/src/dashboards/dds/ZFSOVW.json +++ b/grafana/rmf-app/src/dashboards/dds/ZFSOVW.json @@ -13,12 +13,6 @@ "id": "ibm-rmf-datasource", "name": "IBM RMF for z/OS", "version": "%VERSION%" - }, - { - "type": "panel", - "id": "ibm-rmf-panel", - "name": "Report for IBM RMF for z/OS", - "version": "%VERSION%" } ], "annotations": { @@ -82,10 +76,10 @@ "overrides": [] }, "gridPos": { - "h": 22, + "h": 16, "w": 24, "x": 0, - "y": 0 + "y": 5 }, "id": 2, "interval": "1m", @@ -100,8 +94,8 @@ "rmfPanelGuid": "56006a7e-0517-4de8-80c8-29db0310d5a6", "selectedQuery": "SYSPLEX.REPORT.ZFSOVW", "selectedResource": { - "label": "report=ZFSOVW&resource=,,SYSPLEX", - "value": "report=ZFSOVW&resource=,,SYSPLEX" + "label": "TABLE(report=ZFSOVW&resource=,,SYSPLEX)", + "value": "TABLE(report=ZFSOVW&resource=,,SYSPLEX)" }, "selectedVisualisationType": "table" } @@ -334,7 +328,81 @@ } } ], - "type": "ibm-rmf-panel" + "type": "table" + }, + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 5, + "w": 24, + "x": 0, + "y": 0 + }, + "id": 2, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": false + }, + "pluginVersion": "10.3.4", + "targets": [ + { + "datasource": { + "type": "ibm-rmf-datasource", + "uid": "${datasource}" + }, + "refId": "A", + "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", + "selectedQuery": "SYSPLEX.REPORT_BANNER.ZFSOVW", + "selectedResource": { + "label": "BANNER(report=ZFSOVW&resource=,,SYSPLEX)", + "value": "BANNER(report=ZFSOVW&resource=,,SYSPLEX)" + }, + "selectedVisualisationType": "bargauge" + } + ], + "transformations": [], + "type": "table" } ], "schemaVersion": 37, @@ -363,7 +431,8 @@ "refresh": 1, "regex": "", "skipUrlSync": false, - "type": "datasource" + "type": "datasource", + "allowCustomValue": false }, { "datasource": { diff --git a/grafana/rmf-app/src/datasource/parser/core/parser.ts b/grafana/rmf-app/src/datasource/parser/core/parser.ts index c062dcc3..003e1796 100644 --- a/grafana/rmf-app/src/datasource/parser/core/parser.ts +++ b/grafana/rmf-app/src/datasource/parser/core/parser.ts @@ -50,7 +50,9 @@ export class Parser { const tree = parser.query(); const resType = (tree.RES_TYPE()?.getText() || '').trim().toUpperCase(); - const isReport = tree.REPORT() !== null; + const isReportCaption = tree.REPORT_CAPTION() !== null; + const isReportBanner = tree.REPORT_BANNER() !== null; + const isReport = tree.REPORT() !== null || isReportCaption || isReportBanner; const identifier = (tree.identifier()?.getText() || '').trim(); let qualifierValues = { name: '', ulq: '', workscope: '' }; @@ -83,6 +85,13 @@ export class Parser { if (workscope) { query += `&workscope=${workscope}`; } + if (isReportCaption) { + query = "CAPTION(" + query + ")"; + } else if (isReportBanner) { + query = "BANNER(" + query + ")"; + } else if (isReport) { + query = "TABLE(" + query + ")"; + } parserGrammarResult.query = query; lexerGrammarResult = lexerCustomErrorListener.getResult(); From bc08146fad5ff991da7bfca5f5e676de1590cc0b Mon Sep 17 00:00:00 2001 From: dprizentsov Date: Mon, 24 Nov 2025 11:00:21 +0100 Subject: [PATCH 02/26] removing ibm-rmf-panel folder Signed-off-by: dprizentsov --- grafana/rmf-app/docker-compose.yaml | 2 +- .../banner-component/banner.component.css | 19 -- .../banner-component/banner.component.tsx | 35 --- .../captions-component/captions.component.css | 30 --- .../captions-component/captions.component.tsx | 38 --- grafana/rmf-app/src/panel/img/logo.svg | 1 - grafana/rmf-app/src/panel/main.component.tsx | 29 --- grafana/rmf-app/src/panel/module.test.ts | 22 -- grafana/rmf-app/src/panel/module.ts | 51 ---- grafana/rmf-app/src/panel/plugin.json | 30 --- .../panel/table-component/table.component.css | 45 ---- .../panel/table-component/table.component.tsx | 79 ------ .../src/panel/table-component/table.helper.ts | 225 ------------------ grafana/rmf-app/src/panel/types.ts | 56 ----- grafana/rmf-app/src/plugin.json | 5 - 15 files changed, 1 insertion(+), 666 deletions(-) delete mode 100644 grafana/rmf-app/src/panel/banner-component/banner.component.css delete mode 100644 grafana/rmf-app/src/panel/banner-component/banner.component.tsx delete mode 100644 grafana/rmf-app/src/panel/captions-component/captions.component.css delete mode 100644 grafana/rmf-app/src/panel/captions-component/captions.component.tsx delete mode 100644 grafana/rmf-app/src/panel/img/logo.svg delete mode 100644 grafana/rmf-app/src/panel/main.component.tsx delete mode 100644 grafana/rmf-app/src/panel/module.test.ts delete mode 100644 grafana/rmf-app/src/panel/module.ts delete mode 100644 grafana/rmf-app/src/panel/plugin.json delete mode 100644 grafana/rmf-app/src/panel/table-component/table.component.css delete mode 100644 grafana/rmf-app/src/panel/table-component/table.component.tsx delete mode 100644 grafana/rmf-app/src/panel/table-component/table.helper.ts delete mode 100644 grafana/rmf-app/src/panel/types.ts diff --git a/grafana/rmf-app/docker-compose.yaml b/grafana/rmf-app/docker-compose.yaml index 87b9f897..290342f2 100644 --- a/grafana/rmf-app/docker-compose.yaml +++ b/grafana/rmf-app/docker-compose.yaml @@ -23,4 +23,4 @@ services: GF_LOG_FILTERS: plugin.ibm-rmf-datasource:debug GF_LOG_LEVEL: info GF_DATAPROXY_LOGGING: 1 - GF_PLUGINS_ALLOW_LOADING_UNSIGNED_PLUGINS: ibm-rmf-app,ibm-rmf-datasource,ibm-rmf-panel + GF_PLUGINS_ALLOW_LOADING_UNSIGNED_PLUGINS: ibm-rmf-app,ibm-rmf-datasource diff --git a/grafana/rmf-app/src/panel/banner-component/banner.component.css b/grafana/rmf-app/src/panel/banner-component/banner.component.css deleted file mode 100644 index 2af4f196..00000000 --- a/grafana/rmf-app/src/panel/banner-component/banner.component.css +++ /dev/null @@ -1,19 +0,0 @@ -/** -* (C) Copyright IBM Corp. 2023. -* (C) Copyright Rocket Software, Inc. 2023. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ -.banner-item{ - font-weight: bold; -} diff --git a/grafana/rmf-app/src/panel/banner-component/banner.component.tsx b/grafana/rmf-app/src/panel/banner-component/banner.component.tsx deleted file mode 100644 index 008fd1cd..00000000 --- a/grafana/rmf-app/src/panel/banner-component/banner.component.tsx +++ /dev/null @@ -1,35 +0,0 @@ -/** - * (C) Copyright IBM Corp. 2023. - * (C) Copyright Rocket Software, Inc. 2023. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -import React from 'react'; -import { BANNER_PREFIX, FieldProps, V9CompatField } from '../types'; -require('./banner.component.css'); - -export const BannerComponent: React.FC = ({ fields }) => { - return ( - - {fields.map((field: V9CompatField) => { - const name = field.name.slice(BANNER_PREFIX.length); - const values = field.values.buffer || field.values || []; - return ( - - {name}: {values[0] ?? 'N/A'}     - - ); - })} - - ); -}; diff --git a/grafana/rmf-app/src/panel/captions-component/captions.component.css b/grafana/rmf-app/src/panel/captions-component/captions.component.css deleted file mode 100644 index e5694d0f..00000000 --- a/grafana/rmf-app/src/panel/captions-component/captions.component.css +++ /dev/null @@ -1,30 +0,0 @@ -/** -* (C) Copyright IBM Corp. 2023. -* (C) Copyright Rocket Software, Inc. 2023. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ -.captionitem{ - border-width: 1px; - padding: 5px; - /* border: ridge; */ - width: 30%; - display: inline-block; - font-weight: 600; - margin-left: 2px; - margin-bottom: 3px; -} - -.captionitemname{ - color: #33a2e5; -} diff --git a/grafana/rmf-app/src/panel/captions-component/captions.component.tsx b/grafana/rmf-app/src/panel/captions-component/captions.component.tsx deleted file mode 100644 index de805b5f..00000000 --- a/grafana/rmf-app/src/panel/captions-component/captions.component.tsx +++ /dev/null @@ -1,38 +0,0 @@ -/** - * (C) Copyright IBM Corp. 2023. - * (C) Copyright Rocket Software, Inc. 2023. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -import React from 'react'; -import { CAPTION_PREFIX, FieldProps } from '../types'; -require('./captions.component.css'); - - -export const CaptionsComponent: React.FC = ({ fields }) => { - return ( - - { - fields.map((field: any) => { - const name = field.name.slice(CAPTION_PREFIX.length) - const values = field.values.buffer || field.values || []; - return ( -
- { name } : { values[0] ?? 'N/A'} -
- ); - }) - } -
- ); -}; diff --git a/grafana/rmf-app/src/panel/img/logo.svg b/grafana/rmf-app/src/panel/img/logo.svg deleted file mode 100644 index d713bc3e..00000000 --- a/grafana/rmf-app/src/panel/img/logo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/grafana/rmf-app/src/panel/main.component.tsx b/grafana/rmf-app/src/panel/main.component.tsx deleted file mode 100644 index 6cfb657a..00000000 --- a/grafana/rmf-app/src/panel/main.component.tsx +++ /dev/null @@ -1,29 +0,0 @@ -/** - * (C) Copyright IBM Corp. 2023. - * (C) Copyright Rocket Software, Inc. 2023. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -import React from 'react'; -import { PanelProps } from '@grafana/data'; -import { TableComponent } from './table-component/table.component'; - -interface Props extends PanelProps<{}> {} - -export const MainComponent: React.FC = (props) => { - return ( -
- -
- ); -}; diff --git a/grafana/rmf-app/src/panel/module.test.ts b/grafana/rmf-app/src/panel/module.test.ts deleted file mode 100644 index 66e99edf..00000000 --- a/grafana/rmf-app/src/panel/module.test.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * (C) Copyright IBM Corp. 2023. - * (C) Copyright Rocket Software, Inc. 2023. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -// Just a stub test -describe('placeholder test', () => { - it('should return true', () => { - expect(true).toBeTruthy(); - }); -}); diff --git a/grafana/rmf-app/src/panel/module.ts b/grafana/rmf-app/src/panel/module.ts deleted file mode 100644 index 551b5870..00000000 --- a/grafana/rmf-app/src/panel/module.ts +++ /dev/null @@ -1,51 +0,0 @@ -/** - * (C) Copyright IBM Corp. 2023. - * (C) Copyright Rocket Software, Inc. 2023. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -import { PanelPlugin } from '@grafana/data'; -import { displayModes } from './types'; -import { MainComponent } from './main.component'; - -export const plugin = new PanelPlugin<{}>(MainComponent) - .setPanelOptions((builder) => { - return builder; - }) - .useFieldConfig({ - useCustomConfig: (builder) => { - return builder - .addSelect({ - path: 'cellOptions', - name: 'Cell Type', - description: 'Color text, background, show as gauge, etc', - settings: { - // @ts-ignore - options: displayModes - }, - defaultValue: 'Auto' - }) - .addBooleanSwitch({ - path: 'enablePagination', - name: 'Enable pagination', - description: '', - defaultValue: false, - }) - .addBooleanSwitch({ - path: 'filterable', - name: 'Column filter', - description: 'Enables/disables field filters in table', - defaultValue: false, - }); - }, - }); diff --git a/grafana/rmf-app/src/panel/plugin.json b/grafana/rmf-app/src/panel/plugin.json deleted file mode 100644 index e4cbf296..00000000 --- a/grafana/rmf-app/src/panel/plugin.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "$schema": "https://raw.githubusercontent.com/grafana/grafana/master/docs/sources/developers/plugins/plugin.schema.json", - "type": "panel", - "name": "Report for IBM RMF for z/OS", - "id": "ibm-rmf-panel", - - "info": { - "description": "Report for IBM RMF for z/OS", - "author": { - "name": "IBM" - }, - "keywords": ["panel", "template"], - "logos": { - "small": "img/logo.svg", - "large": "img/logo.svg" - }, - "links": [ - { "name": "Website", "url": "https://www.ibm.com/docs/en/zos/2.5.0?topic=zos-rmf" }, - { "name": "License", "url": "https://www.ibm.com/docs/en/zos/2.5.0?topic=zos-rmf" } - ], - "screenshots": [], - "version": "%VERSION%", - "updated": "%TODAY%" - }, - - "dependencies": { - "grafanaDependency": ">=10.0", - "plugins": [] - } -} diff --git a/grafana/rmf-app/src/panel/table-component/table.component.css b/grafana/rmf-app/src/panel/table-component/table.component.css deleted file mode 100644 index e2d21b1b..00000000 --- a/grafana/rmf-app/src/panel/table-component/table.component.css +++ /dev/null @@ -1,45 +0,0 @@ -/** -* (C) Copyright IBM Corp. 2023. -* (C) Copyright Rocket Software, Inc. 2023. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -/* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ -:root { - --rmf-table-width: 100px; -} - -.caption-section { - width: 100%; - max-height: 110px; - overflow: auto; -} - -.banner-section { - padding: 3px 10px 15px 10px; - width: 100%; -} - -.panel-content { - overflow: auto; -} - -.panel-table-container { - padding-top: 10px; - width: -webkit-fill-available; - height: -webkit-fill-available; - position: absolute; -} - -.nodata-label { - padding-left: 10px; -} diff --git a/grafana/rmf-app/src/panel/table-component/table.component.tsx b/grafana/rmf-app/src/panel/table-component/table.component.tsx deleted file mode 100644 index 8d91426a..00000000 --- a/grafana/rmf-app/src/panel/table-component/table.component.tsx +++ /dev/null @@ -1,79 +0,0 @@ -/** - * (C) Copyright IBM Corp. 2023, 2024. - * (C) Copyright Rocket Software, Inc. 2023-2024. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -import { Table } from '@grafana/ui'; -import React, { useRef } from 'react'; -import { BannerComponent } from '../banner-component/banner.component'; -import { CaptionsComponent } from '../captions-component/captions.component'; -import { - InitFrameData, - applySelectedDefaultsAndOverrides, - getPaginationFlagFromFieldConfig, -} from './table.helper'; -import {PanelProps} from "@grafana/data"; -require('./table.component.css'); - -interface Props extends PanelProps<{}> { } - -export const TableComponent: React.FC = ({ options, fieldConfig, data, width, height }) => { - let frameData = InitFrameData(data); - - const reportData = applySelectedDefaultsAndOverrides(options, fieldConfig, frameData); - const tableData = reportData.tableData - const captionData = reportData.captionFields - const enablePagination: boolean = getPaginationFlagFromFieldConfig(fieldConfig); - - // Setting the scroll properties - let divBannerRef = useRef(null); - let divCaptionRef = useRef(null); - let actTableHeight = height - (divBannerRef?.current?.offsetHeight ? divBannerRef?.current?.offsetHeight : 38); - if (captionData && captionData.length > 0 && captionData.length > 6) { - actTableHeight = actTableHeight - (divCaptionRef?.current?.offsetHeight ? divCaptionRef?.current?.offsetHeight : 110); - } else if (captionData && captionData.length > 0 && captionData.length > 3) { - actTableHeight = actTableHeight - (divCaptionRef?.current?.offsetHeight ? divCaptionRef?.current?.offsetHeight : 76); - } else { - actTableHeight = actTableHeight - (divCaptionRef?.current?.offsetHeight ? divCaptionRef?.current?.offsetHeight : 38); - } - - - return ( -
-
- -
- {reportData.captionFields.length > 0 ? ( -
- -
- ) : ( - '' - )} -
- {( tableData && tableData.length > 0 && tableData.fields && tableData.fields.length > 0) ? ( - - ) : ( -
No Data
- )} - - - ); -}; diff --git a/grafana/rmf-app/src/panel/table-component/table.helper.ts b/grafana/rmf-app/src/panel/table-component/table.helper.ts deleted file mode 100644 index f8e0c45f..00000000 --- a/grafana/rmf-app/src/panel/table-component/table.helper.ts +++ /dev/null @@ -1,225 +0,0 @@ -/** - * (C) Copyright IBM Corp. 2023, 2024. - * (C) Copyright Rocket Software, Inc. 2023-2024. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -import { - applyFieldOverrides, - applyRawFieldOverrides, - ConfigOverrideRule, - DataFrame, - Field, - FieldColor, - FieldConfigSource, - PanelData, - ThresholdsConfig, - ValueLinkConfig, - LinkModel, -} from '@grafana/data'; -import { config } from '@grafana/runtime'; -import { TableFieldOptions } from '@grafana/ui'; -import { defaultThresholds, CAPTION_PREFIX, BANNER_PREFIX, ReportData } from '../types'; - -export const InitFrameData = (data: PanelData): DataFrame[] => { - let frameData: DataFrame[] = [ - { - fields: [], - length: 0, - }, - ]; - - if ( - data !== undefined && - data.series !== undefined && - data.series.length > 0 && - data.series[0].fields !== undefined - ) { - frameData = [ - { - fields: data.series[0].fields, - length: data.series[0].fields[0].values.length, - } as DataFrame, - ] as DataFrame[]; - } - - return frameData; -}; -export const applyNearestPercentage = (field: Field, maxVal: number): Field => { - if (field.type === 'number') { - field.config.min = 0; - (field.state as any).range.min = 0; - field.config.max = maxVal; - (field.state as any).range.max = field.config.max; - } - return field; -}; - -export const applySelectedDefaultsAndOverrides = ( - options: any, - fieldConfig: FieldConfigSource, - data: DataFrame[] -): ReportData => { - // FIXME: send banner, captions and table data in different frames. - let result = applyRawFieldOverrides(data); - let bannerFields: Field[] = []; - let captionFields: Field[] = []; - let tableFields: Field[] = []; - - let targetArray: Field[]; - let sliceStart: number; - let sliceEnd: number | undefined; - - for (let i = 0; i < result[0].fields.length; i++) { - let field = result[0].fields[i]; - if (field.name.startsWith(BANNER_PREFIX)) { - targetArray = bannerFields; - sliceStart = 0; - sliceEnd = 1; - } else if (field.name.startsWith(CAPTION_PREFIX)) { - targetArray = captionFields; - sliceStart = 0; - sliceEnd = 1; - } else { - targetArray = tableFields; - sliceStart = 1; - sliceEnd = undefined; - } - field.values = field.values.slice(sliceStart, sliceEnd); - - let newField : Field = {...field}; - if (field.getLinks) { - newField.getLinks = (config: ValueLinkConfig): Array> => { - if (config.valueRowIndex) { - config.valueRowIndex += 1; - } else { - config.valueRowIndex = 1; - } - if (field.getLinks) { - return field.getLinks(config); - } - return {} as Array>; - }; - } - for (let k = 0; k < newField.values.length; k++) { - if (newField.values[k] === null) { - newField.values[k] = ""; - } - } - targetArray.push(newField); - } - let dataFrame : DataFrame = {} as DataFrame; - dataFrame.fields = tableFields; - dataFrame.length = result[0].length - 1; - - // First apply default settings - result[0].fields.map((field: Field) => { - if (fieldConfig.defaults.thresholds !== undefined) { - field.config.thresholds = fieldConfig.defaults.thresholds; - } - if (field.config.thresholds === undefined) { - field.config = { ...field.config, ...{ thresholds: defaultThresholds } }; - } - field.config.custom = { - align: 'auto', - filterable: fieldConfig.defaults.custom.filterable, - cellOptions: fieldConfig.defaults.custom.cellOptions.type - ? fieldConfig.defaults.custom.cellOptions - : { type: fieldConfig.defaults.custom.cellOptions }, - } as TableFieldOptions; - }); - - // Apply overrides - if (fieldConfig.overrides && fieldConfig.overrides.length > 0) { - fieldConfig.overrides.map((ovItem: ConfigOverrideRule) => { - if (ovItem.matcher.id === 'byName') { - ovItem.properties.map((ovrProp) => { - if (ovrProp.id === 'custom.cellOptions') { - result[0].fields.map((field: Field, index: number) => { - if (field.name === ovItem.matcher.options) { - field = applyNearestPercentage(field, 100); - field.config.custom = { - cellOptions: ovrProp.value.type ? ovrProp.value : { type: ovrProp.value }, - } as TableFieldOptions; - } - }); - } - if (ovrProp.id === 'custom.filterable') { - result[0].fields.map((field: Field, index: number) => { - if (field.name === ovItem.matcher.options) { - if (field.config.custom !== undefined && field.config.custom.cellOptions !== undefined) { - field.config.custom = { - cellOptions: field.config.custom.cellOptions, - filterable: ovrProp.value, - } as TableFieldOptions; - } else { - field.config.custom = { - filterable: ovrProp.value, - } as TableFieldOptions; - } - } - }); - } - if (ovrProp.id === 'color') { - result[0].fields.map((field: Field) => { - if (field.name === ovItem.matcher.options && ovrProp && ovrProp.value && ovrProp.value.mode) { - field.config.color = { - mode: ovrProp.value.mode, - fixedColor: ovrProp.value.fixedColor, - } as FieldColor; - } - }); - } - if (ovrProp.id === 'thresholds') { - result[0].fields.map((field: Field) => { - if (field.name === ovItem.matcher.options && ovrProp && ovrProp.value && ovrProp.value.mode) { - field.config.thresholds = { - mode: ovrProp.value.mode, - steps: ovrProp.value.steps, - } as ThresholdsConfig; - } - }); - } - }); - } - }); - } - return { bannerFields: bannerFields, captionFields: captionFields, tableData: dataFrame }; -}; - -export const applyFieldOverridesForBarGauge = (finalData: DataFrame[]): DataFrame[] => { - return applyFieldOverrides({ - data: finalData, - fieldConfig: { - overrides: [], - defaults: {}, - }, - replaceVariables: (value: string) => value, - theme: config.theme2 as any, - }); -}; - -export const getPaginationFlagFromFieldConfig = (fieldConfig: FieldConfigSource): boolean => { - let result: boolean; - if ( - fieldConfig !== undefined && - fieldConfig.defaults !== undefined && - fieldConfig.defaults.custom !== undefined && - fieldConfig.defaults.custom.enablePagination !== undefined - ) { - result = fieldConfig.defaults.custom.enablePagination; - } else { - result = false; - } - return result; -}; diff --git a/grafana/rmf-app/src/panel/types.ts b/grafana/rmf-app/src/panel/types.ts deleted file mode 100644 index 7b6752cf..00000000 --- a/grafana/rmf-app/src/panel/types.ts +++ /dev/null @@ -1,56 +0,0 @@ -/** - * (C) Copyright IBM Corp. 2023. - * (C) Copyright Rocket Software, Inc. 2023. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -import { SelectableValue, ThresholdsConfig, ThresholdsMode, Field, DataFrame } from '@grafana/data'; -import { TableCellDisplayMode } from '@grafana/ui'; - -export interface ReportData { - bannerFields: Field[]; - captionFields: Field[]; - tableData: DataFrame; -} - -export interface FieldProps { - fields: Field[]; -} - -export const BANNER_PREFIX = 'Banner::'; -export const CAPTION_PREFIX = 'Caption::'; - -export const displayModes: Array> = [ - { value: TableCellDisplayMode.Auto, label: 'Auto' }, - { value: TableCellDisplayMode.ColorText, label: 'Colored text' }, - { value: TableCellDisplayMode.ColorBackground, label: 'Colored background' }, - { value: TableCellDisplayMode.Gauge, label: 'Gauge' }, - { value: TableCellDisplayMode.JSONView, label: 'JSON View' }, - { value: TableCellDisplayMode.Image, label: 'Image' }, -]; - -export const defaultThresholds: ThresholdsConfig = { - steps: [ - { value: -Infinity, color: 'green', state: 'HighHigh' }, - { value: 70, color: 'orange', state: 'OK' }, - { value: 90, color: 'red', state: 'High' }, - ], - mode: ThresholdsMode.Absolute, -}; - -export interface TableBanner { - samples?: string; - systems?: string; - timeRange?: string; - range?: string; -} diff --git a/grafana/rmf-app/src/plugin.json b/grafana/rmf-app/src/plugin.json index 86df5903..42925972 100644 --- a/grafana/rmf-app/src/plugin.json +++ b/grafana/rmf-app/src/plugin.json @@ -10,11 +10,6 @@ "name": "IBM RMF for z/OS", "path": "datasource/plugin.json" }, - { - "type": "panel", - "name": "Report for IBM RMF for z/OS", - "path": "panel/plugin.json" - }, { "name": "Home", "path": "/a/ibm-rmf-app", From aa38df91c31dc5d7efa87b89015c38e476d4c834 Mon Sep 17 00:00:00 2001 From: dprizentsov Date: Mon, 24 Nov 2025 11:20:18 +0100 Subject: [PATCH 03/26] fix linter findings Signed-off-by: dprizentsov --- grafana/rmf-app/pkg/plugin/datasource.go | 6 +++--- grafana/rmf-app/pkg/plugin/query.go | 5 ++--- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/grafana/rmf-app/pkg/plugin/datasource.go b/grafana/rmf-app/pkg/plugin/datasource.go index 931891a3..67251a39 100644 --- a/grafana/rmf-app/pkg/plugin/datasource.go +++ b/grafana/rmf-app/pkg/plugin/datasource.go @@ -343,8 +343,8 @@ func (ds *RMFDatasource) QueryData(ctx context.Context, req *backend.QueryDataRe queryKind, query := ds.parseQuery(params.Resource.Value) r := dds.NewRequest(query, q.TimeRange.From.UTC(), q.TimeRange.To.UTC(), mintime) response = &backend.DataResponse{} - newFrame, err := ds.getCachedReportFrames(r) - if newFrame == nil || err != nil { + newFrame := ds.getCachedReportFrames(r) + if newFrame == nil { newFrame, err = ds.getFrame(r, false) } if err != nil { @@ -501,7 +501,7 @@ func (ds *RMFDatasource) getFrameTable(f *data.Frame) *data.Frame { for _, field := range f.Fields { if !strings.HasPrefix(field.Name, frame.CaptionPrefix) && !strings.HasPrefix(field.Name, frame.BannerPrefix) { - var newField *data.Field = copyReportField(field, field.Len()) + var newField = copyReportField(field, field.Len()) newField.Delete(0) newFrame.Fields = append(newFrame.Fields, newField) } diff --git a/grafana/rmf-app/pkg/plugin/query.go b/grafana/rmf-app/pkg/plugin/query.go index be74eb4b..5a27bb2a 100644 --- a/grafana/rmf-app/pkg/plugin/query.go +++ b/grafana/rmf-app/pkg/plugin/query.go @@ -91,9 +91,8 @@ func (ds *RMFDatasource) getCachedTSFrames(r *dds.Request, stop time.Time, step return f, jump, err } -func (ds *RMFDatasource) getCachedReportFrames(r *dds.Request) (*data.Frame, error) { - f := ds.frameCache.Get(r, true) - return f, nil +func (ds *RMFDatasource) getCachedReportFrames(r *dds.Request) *data.Frame { + return ds.frameCache.Get(r, true) } func (ds *RMFDatasource) setCachedReportFrames(f *data.Frame, r *dds.Request) { From 496b868dfebcfd7b0db8a8c2cf681b4cea53d52e Mon Sep 17 00:00:00 2001 From: dprizentsov Date: Mon, 8 Dec 2025 14:12:02 +0100 Subject: [PATCH 04/26] move functions, rearrange panels in dashboards, fix grammar Signed-off-by: dprizentsov --- grafana/rmf-app/grammar/RMFQuery.g4 | 2 +- grafana/rmf-app/pkg/plugin/datasource.go | 92 +-- grafana/rmf-app/pkg/plugin/frame/utils.go | 83 +++ .../rmf-app/src/dashboards/dds/CACHDET.json | 8 +- .../rmf-app/src/dashboards/dds/CACHSUM.json | 8 +- grafana/rmf-app/src/dashboards/dds/CFACT.json | 8 +- .../rmf-app/src/dashboards/dds/CFOVER.json | 8 +- grafana/rmf-app/src/dashboards/dds/CFSYS.json | 8 +- .../rmf-app/src/dashboards/dds/CHANNEL.json | 8 +- grafana/rmf-app/src/dashboards/dds/CPC.json | 111 +++- .../rmf-app/src/dashboards/dds/CRYOVW.json | 8 +- grafana/rmf-app/src/dashboards/dds/DELAY.json | 8 +- grafana/rmf-app/src/dashboards/dds/DEV.json | 8 +- grafana/rmf-app/src/dashboards/dds/DEVR.json | 8 +- grafana/rmf-app/src/dashboards/dds/DSND.json | 8 +- grafana/rmf-app/src/dashboards/dds/EADM.json | 24 +- .../rmf-app/src/dashboards/dds/ENCLAVE.json | 16 +- grafana/rmf-app/src/dashboards/dds/ENQ.json | 8 +- grafana/rmf-app/src/dashboards/dds/HSM.json | 8 +- grafana/rmf-app/src/dashboards/dds/IOQ.json | 8 +- grafana/rmf-app/src/dashboards/dds/JES.json | 8 +- .../rmf-app/src/dashboards/dds/LOCKSP.json | 8 +- .../rmf-app/src/dashboards/dds/LOCKSU.json | 8 +- grafana/rmf-app/src/dashboards/dds/OPD.json | 16 +- grafana/rmf-app/src/dashboards/dds/PCIE.json | 8 +- grafana/rmf-app/src/dashboards/dds/PROC.json | 8 +- grafana/rmf-app/src/dashboards/dds/PROCU.json | 8 +- .../rmf-app/src/dashboards/dds/SPACED.json | 8 +- .../rmf-app/src/dashboards/dds/SPACEG.json | 8 +- grafana/rmf-app/src/dashboards/dds/STOR.json | 8 +- grafana/rmf-app/src/dashboards/dds/STORC.json | 24 +- .../rmf-app/src/dashboards/dds/STORCR.json | 8 +- grafana/rmf-app/src/dashboards/dds/STORF.json | 8 +- grafana/rmf-app/src/dashboards/dds/STORM.json | 24 +- grafana/rmf-app/src/dashboards/dds/STORR.json | 24 +- grafana/rmf-app/src/dashboards/dds/STORS.json | 183 +++++- .../rmf-app/src/dashboards/dds/SYSINFO.json | 24 +- grafana/rmf-app/src/dashboards/dds/SYSRG.json | 8 +- .../rmf-app/src/dashboards/dds/SYSSUM.json | 16 +- grafana/rmf-app/src/dashboards/dds/USAGE.json | 8 +- .../rmf-app/src/dashboards/dds/XCFGROUP.json | 8 +- .../rmf-app/src/dashboards/dds/XCFOVW.json | 8 +- .../rmf-app/src/dashboards/dds/XCFPATH.json | 8 +- .../rmf-app/src/dashboards/dds/XCFSYS.json | 8 +- grafana/rmf-app/src/dashboards/dds/ZFSFS.json | 8 +- grafana/rmf-app/src/dashboards/dds/ZFSKN.json | 8 +- .../rmf-app/src/dashboards/dds/ZFSOVW.json | 8 +- .../datasource/parser/lib/RMFQueryLexer.ts | 616 +++++++++--------- .../datasource/parser/lib/RMFQueryParser.ts | 483 +++++++------- 49 files changed, 1204 insertions(+), 806 deletions(-) diff --git a/grafana/rmf-app/grammar/RMFQuery.g4 b/grafana/rmf-app/grammar/RMFQuery.g4 index d5406150..18481aa2 100644 --- a/grafana/rmf-app/grammar/RMFQuery.g4 +++ b/grafana/rmf-app/grammar/RMFQuery.g4 @@ -30,7 +30,7 @@ Examples: grammar RMFQuery; -query: WS* RES_TYPE (DOT REPORT)? (DOT REPORT_CAPTION)? (DOT REPORT_BANNER)? DOT identifier WS* qualifiers? WS* EOF; +query: WS* RES_TYPE ((DOT REPORT) | (DOT REPORT_CAPTION) | (DOT REPORT_BANNER))? DOT identifier WS* qualifiers? WS* EOF; // A workaround: some reports are also resource TYPES (e.g. CPC). // In general, the problem is that we define keywords that are not distiguashable for antlr from // string literals which we also support. diff --git a/grafana/rmf-app/pkg/plugin/datasource.go b/grafana/rmf-app/pkg/plugin/datasource.go index 67251a39..2d72d2f0 100644 --- a/grafana/rmf-app/pkg/plugin/datasource.go +++ b/grafana/rmf-app/pkg/plugin/datasource.go @@ -21,7 +21,6 @@ import ( "context" "encoding/json" "errors" - "fmt" "net/http" "regexp" "runtime/debug" @@ -360,11 +359,15 @@ func (ds *RMFDatasource) QueryData(ctx context.Context, req *backend.QueryDataRe ds.setCachedReportFrames(newFrame, r) switch queryKind { case "banner": - newFrame = ds.getFrameBanner(newFrame) + newFrame = frame.GetFrameBanner(newFrame) case "caption": - newFrame = ds.getFrameCaption(newFrame) + newFrame = frame.GetFrameCaption(newFrame) case "table": - newFrame = ds.getFrameTable(newFrame) + newFrame = frame.GetFrameTable(newFrame) + default: + if strings.Contains(query, "report=") { + newFrame = frame.GetFrameTable(newFrame) + } } response.Frames = append(response.Frames, newFrame) } @@ -476,84 +479,3 @@ func (d *RMFDatasource) parseQuery(resource string) (string, string) { } return "", resource } - -func copyReportField(field *data.Field, length int) *data.Field { - var newField *data.Field - t := field.Type() - switch t { - case data.FieldTypeNullableFloat64: - newField = data.NewField(field.Name, field.Labels, []*float64{}) - case data.FieldTypeNullableString: - newField = data.NewField(field.Name, field.Labels, []*string{}) - default: - newField = data.NewField(field.Name, field.Labels, []string{}) - } - newField.SetConfig(field.Config) - length = slices.Min([]int{length, field.Len()}) - for i := 0; i < length; i++ { - newField.Append(field.At(i)) - } - return newField -} - -func (ds *RMFDatasource) getFrameTable(f *data.Frame) *data.Frame { - var newFrame data.Frame - for _, field := range f.Fields { - if !strings.HasPrefix(field.Name, frame.CaptionPrefix) && - !strings.HasPrefix(field.Name, frame.BannerPrefix) { - var newField = copyReportField(field, field.Len()) - newField.Delete(0) - newFrame.Fields = append(newFrame.Fields, newField) - } - } - return &newFrame -} - -func (ds *RMFDatasource) getFrameCaption(f *data.Frame) *data.Frame { - var newFrame data.Frame - newFrame.Fields = append(newFrame.Fields, data.NewField("Key", nil, []string{})) - newFrame.Fields = append(newFrame.Fields, data.NewField("Value", nil, []string{})) - for _, field := range f.Fields { - if strings.HasPrefix(field.Name, frame.CaptionPrefix) { - key := strings.TrimPrefix(field.Name, frame.CaptionPrefix) - value := getStringAt(field, 0) - newFrame.Fields[0].Append(key) - newFrame.Fields[1].Append(value) - } - } - return &newFrame -} - -func (ds *RMFDatasource) getFrameBanner(f *data.Frame) *data.Frame { - var newFrame data.Frame - newFrame.Fields = append(newFrame.Fields, data.NewField("Key", nil, []string{})) - newFrame.Fields = append(newFrame.Fields, data.NewField("Value", nil, []string{})) - for _, field := range f.Fields { - if strings.HasPrefix(field.Name, frame.BannerPrefix) { - key := strings.TrimPrefix(field.Name, frame.BannerPrefix) - value := getStringAt(field, 0) - newFrame.Fields[0].Append(key) - newFrame.Fields[1].Append(value) - } - } - return &newFrame -} - -func getStringAt(field *data.Field, index int) string { - value := "" - if field.Len() > index { - v := field.At(index) - if v != nil { - if s, ok := v.(string); ok { - value = s - } else if s, ok := v.(*string); ok { - if s != nil { - value = *s - } - } else if f, ok := v.(float64); ok { - value = fmt.Sprintf("%f", f) - } - } - } - return value -} diff --git a/grafana/rmf-app/pkg/plugin/frame/utils.go b/grafana/rmf-app/pkg/plugin/frame/utils.go index 1e0a14fd..a24ab9b5 100644 --- a/grafana/rmf-app/pkg/plugin/frame/utils.go +++ b/grafana/rmf-app/pkg/plugin/frame/utils.go @@ -19,6 +19,8 @@ package frame import ( "errors" + "fmt" + "slices" "strings" "time" @@ -117,3 +119,84 @@ func MergeInto(dst *data.Frame, src *data.Frame) (*data.Frame, error) { } return dst, nil } + +func CopyReportField(field *data.Field, length int) *data.Field { + var newField *data.Field + t := field.Type() + switch t { + case data.FieldTypeNullableFloat64: + newField = data.NewField(field.Name, field.Labels, []*float64{}) + case data.FieldTypeNullableString: + newField = data.NewField(field.Name, field.Labels, []*string{}) + default: + newField = data.NewField(field.Name, field.Labels, []string{}) + } + newField.SetConfig(field.Config) + length = slices.Min([]int{length, field.Len()}) + for i := 0; i < length; i++ { + newField.Append(field.At(i)) + } + return newField +} + +func GetFrameTable(f *data.Frame) *data.Frame { + var newFrame data.Frame + for _, field := range f.Fields { + if !strings.HasPrefix(field.Name, CaptionPrefix) && + !strings.HasPrefix(field.Name, BannerPrefix) { + var newField = CopyReportField(field, field.Len()) + newField.Delete(0) + newFrame.Fields = append(newFrame.Fields, newField) + } + } + return &newFrame +} + +func GetFrameCaption(f *data.Frame) *data.Frame { + var newFrame data.Frame + newFrame.Fields = append(newFrame.Fields, data.NewField("Key", nil, []string{})) + newFrame.Fields = append(newFrame.Fields, data.NewField("Value", nil, []string{})) + for _, field := range f.Fields { + if strings.HasPrefix(field.Name, CaptionPrefix) { + key := strings.TrimPrefix(field.Name, CaptionPrefix) + value := getStringAt(field, 0) + newFrame.Fields[0].Append(key) + newFrame.Fields[1].Append(value) + } + } + return &newFrame +} + +func GetFrameBanner(f *data.Frame) *data.Frame { + var newFrame data.Frame + newFrame.Fields = append(newFrame.Fields, data.NewField("Key", nil, []string{})) + newFrame.Fields = append(newFrame.Fields, data.NewField("Value", nil, []string{})) + for _, field := range f.Fields { + if strings.HasPrefix(field.Name, BannerPrefix) { + key := strings.TrimPrefix(field.Name, BannerPrefix) + value := getStringAt(field, 0) + newFrame.Fields[0].Append(key) + newFrame.Fields[1].Append(value) + } + } + return &newFrame +} + +func getStringAt(field *data.Field, index int) string { + value := "" + if field.Len() > index { + v := field.At(index) + if v != nil { + if s, ok := v.(string); ok { + value = s + } else if s, ok := v.(*string); ok { + if s != nil { + value = *s + } + } else if f, ok := v.(float64); ok { + value = fmt.Sprintf("%f", f) + } + } + } + return value +} diff --git a/grafana/rmf-app/src/dashboards/dds/CACHDET.json b/grafana/rmf-app/src/dashboards/dds/CACHDET.json index 375ed78b..4c656ca2 100644 --- a/grafana/rmf-app/src/dashboards/dds/CACHDET.json +++ b/grafana/rmf-app/src/dashboards/dds/CACHDET.json @@ -55,9 +55,11 @@ "mode": "thresholds" }, "custom": { - "displayMode": "Auto", - "enablePagination": false, - "filterable": false + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false }, "mappings": [], "thresholds": { diff --git a/grafana/rmf-app/src/dashboards/dds/CACHSUM.json b/grafana/rmf-app/src/dashboards/dds/CACHSUM.json index 915841d7..48d762d5 100644 --- a/grafana/rmf-app/src/dashboards/dds/CACHSUM.json +++ b/grafana/rmf-app/src/dashboards/dds/CACHSUM.json @@ -54,9 +54,11 @@ "mode": "thresholds" }, "custom": { - "displayMode": "auto", - "enablePagination": false, - "filterable": false + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false }, "mappings": [], "min": -1, diff --git a/grafana/rmf-app/src/dashboards/dds/CFACT.json b/grafana/rmf-app/src/dashboards/dds/CFACT.json index d94cd2af..1c00598d 100644 --- a/grafana/rmf-app/src/dashboards/dds/CFACT.json +++ b/grafana/rmf-app/src/dashboards/dds/CFACT.json @@ -54,9 +54,11 @@ "mode": "thresholds" }, "custom": { - "displayMode": "Auto", - "enablePagination": false, - "filterable": false + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false }, "mappings": [], "thresholds": { diff --git a/grafana/rmf-app/src/dashboards/dds/CFOVER.json b/grafana/rmf-app/src/dashboards/dds/CFOVER.json index 80d85827..5a61de35 100644 --- a/grafana/rmf-app/src/dashboards/dds/CFOVER.json +++ b/grafana/rmf-app/src/dashboards/dds/CFOVER.json @@ -54,9 +54,11 @@ "mode": "thresholds" }, "custom": { - "displayMode": "Auto", - "enablePagination": false, - "filterable": false + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false }, "mappings": [], "thresholds": { diff --git a/grafana/rmf-app/src/dashboards/dds/CFSYS.json b/grafana/rmf-app/src/dashboards/dds/CFSYS.json index 42598f73..43fe272d 100644 --- a/grafana/rmf-app/src/dashboards/dds/CFSYS.json +++ b/grafana/rmf-app/src/dashboards/dds/CFSYS.json @@ -54,9 +54,11 @@ "mode": "thresholds" }, "custom": { - "displayMode": "Auto", - "enablePagination": false, - "filterable": false + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false }, "mappings": [], "thresholds": { diff --git a/grafana/rmf-app/src/dashboards/dds/CHANNEL.json b/grafana/rmf-app/src/dashboards/dds/CHANNEL.json index ccb9959f..28d51fb3 100644 --- a/grafana/rmf-app/src/dashboards/dds/CHANNEL.json +++ b/grafana/rmf-app/src/dashboards/dds/CHANNEL.json @@ -54,9 +54,11 @@ "mode": "thresholds" }, "custom": { - "displayMode": "Auto", - "enablePagination": false, - "filterable": false + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false }, "mappings": [], "thresholds": { diff --git a/grafana/rmf-app/src/dashboards/dds/CPC.json b/grafana/rmf-app/src/dashboards/dds/CPC.json index de5c6038..3ec6a8f7 100644 --- a/grafana/rmf-app/src/dashboards/dds/CPC.json +++ b/grafana/rmf-app/src/dashboards/dds/CPC.json @@ -54,9 +54,11 @@ "mode": "thresholds" }, "custom": { - "displayMode": "Auto", - "enablePagination": false, - "filterable": false + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false }, "mappings": [], "thresholds": { @@ -73,13 +75,98 @@ ] } }, - "overrides": [] + "overrides": [ + { + "matcher": { + "id": "byName", + "options": "LPAR Name" + }, + "properties": [ + { + "id": "custom.width", + "value": 103 + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "Defined MSU/h" + }, + "properties": [ + { + "id": "custom.width", + "value": 124 + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "Capping Option" + }, + "properties": [ + { + "id": "custom.width", + "value": 129 + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "LPAR Mgmt %" + }, + "properties": [ + { + "id": "custom.width", + "value": 119 + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "Logical Total %" + }, + "properties": [ + { + "id": "custom.width", + "value": 125 + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "Physical Total %" + }, + "properties": [ + { + "id": "custom.width", + "value": 127 + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "Actual MSU/h" + }, + "properties": [ + { + "id": "custom.width", + "value": 112 + } + ] + } + ] }, "gridPos": { - "h": 14, - "w": 24, + "h": 17, + "w": 19, "x": 0, - "y": 7 + "y": 4 }, "id": 1, "targets": [ @@ -323,8 +410,8 @@ "overrides": [] }, "gridPos": { - "h": 7, - "w": 12, + "h": 4, + "w": 19, "x": 0, "y": 0 }, @@ -397,9 +484,9 @@ "overrides": [] }, "gridPos": { - "h": 7, - "w": 12, - "x": 12, + "h": 21, + "w": 5, + "x": 19, "y": 0 }, "id": 3, diff --git a/grafana/rmf-app/src/dashboards/dds/CRYOVW.json b/grafana/rmf-app/src/dashboards/dds/CRYOVW.json index 59fa26cd..8413e683 100644 --- a/grafana/rmf-app/src/dashboards/dds/CRYOVW.json +++ b/grafana/rmf-app/src/dashboards/dds/CRYOVW.json @@ -54,9 +54,11 @@ "mode": "thresholds" }, "custom": { - "displayMode": "Auto", - "enablePagination": false, - "filterable": false + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false }, "mappings": [], "thresholds": { diff --git a/grafana/rmf-app/src/dashboards/dds/DELAY.json b/grafana/rmf-app/src/dashboards/dds/DELAY.json index f0d2c3fd..77c1e9f0 100644 --- a/grafana/rmf-app/src/dashboards/dds/DELAY.json +++ b/grafana/rmf-app/src/dashboards/dds/DELAY.json @@ -54,9 +54,11 @@ "mode": "thresholds" }, "custom": { - "displayMode": "Auto", - "enablePagination": false, - "filterable": false + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false }, "mappings": [], "thresholds": { diff --git a/grafana/rmf-app/src/dashboards/dds/DEV.json b/grafana/rmf-app/src/dashboards/dds/DEV.json index 642ce418..8808140a 100644 --- a/grafana/rmf-app/src/dashboards/dds/DEV.json +++ b/grafana/rmf-app/src/dashboards/dds/DEV.json @@ -54,9 +54,11 @@ "mode": "thresholds" }, "custom": { - "displayMode": "Auto", - "enablePagination": false, - "filterable": false + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false }, "mappings": [], "thresholds": { diff --git a/grafana/rmf-app/src/dashboards/dds/DEVR.json b/grafana/rmf-app/src/dashboards/dds/DEVR.json index 5b830852..1c16174f 100644 --- a/grafana/rmf-app/src/dashboards/dds/DEVR.json +++ b/grafana/rmf-app/src/dashboards/dds/DEVR.json @@ -54,9 +54,11 @@ "mode": "thresholds" }, "custom": { - "displayMode": "Auto", - "enablePagination": false, - "filterable": false + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false }, "mappings": [], "thresholds": { diff --git a/grafana/rmf-app/src/dashboards/dds/DSND.json b/grafana/rmf-app/src/dashboards/dds/DSND.json index cbada604..361c1353 100644 --- a/grafana/rmf-app/src/dashboards/dds/DSND.json +++ b/grafana/rmf-app/src/dashboards/dds/DSND.json @@ -54,9 +54,11 @@ "mode": "thresholds" }, "custom": { - "displayMode": "Auto", - "enablePagination": false, - "filterable": false + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false }, "mappings": [], "thresholds": { diff --git a/grafana/rmf-app/src/dashboards/dds/EADM.json b/grafana/rmf-app/src/dashboards/dds/EADM.json index 7dba9323..e9740f09 100644 --- a/grafana/rmf-app/src/dashboards/dds/EADM.json +++ b/grafana/rmf-app/src/dashboards/dds/EADM.json @@ -54,9 +54,11 @@ "mode": "thresholds" }, "custom": { - "displayMode": "Auto", - "enablePagination": false, - "filterable": false + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false }, "mappings": [], "thresholds": { @@ -76,10 +78,10 @@ "overrides": [] }, "gridPos": { - "h": 14, - "w": 24, + "h": 17, + "w": 18, "x": 0, - "y": 7 + "y": 4 }, "id": 1, "targets": [ @@ -175,8 +177,8 @@ "overrides": [] }, "gridPos": { - "h": 7, - "w": 12, + "h": 4, + "w": 18, "x": 0, "y": 0 }, @@ -249,9 +251,9 @@ "overrides": [] }, "gridPos": { - "h": 7, - "w": 12, - "x": 12, + "h": 21, + "w": 6, + "x": 18, "y": 0 }, "id": 3, diff --git a/grafana/rmf-app/src/dashboards/dds/ENCLAVE.json b/grafana/rmf-app/src/dashboards/dds/ENCLAVE.json index 89d0b613..1965b6b8 100644 --- a/grafana/rmf-app/src/dashboards/dds/ENCLAVE.json +++ b/grafana/rmf-app/src/dashboards/dds/ENCLAVE.json @@ -54,9 +54,11 @@ "mode": "thresholds" }, "custom": { - "displayMode": "Auto", - "enablePagination": false, - "filterable": false + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false }, "mappings": [], "thresholds": { @@ -76,10 +78,10 @@ "overrides": [] }, "gridPos": { - "h": 14, + "h": 16, "w": 24, "x": 0, - "y": 7 + "y": 5 }, "id": 1, "targets": [ @@ -324,7 +326,7 @@ "overrides": [] }, "gridPos": { - "h": 7, + "h": 5, "w": 12, "x": 0, "y": 0 @@ -398,7 +400,7 @@ "overrides": [] }, "gridPos": { - "h": 7, + "h": 5, "w": 12, "x": 12, "y": 0 diff --git a/grafana/rmf-app/src/dashboards/dds/ENQ.json b/grafana/rmf-app/src/dashboards/dds/ENQ.json index 60370831..9c892e5b 100644 --- a/grafana/rmf-app/src/dashboards/dds/ENQ.json +++ b/grafana/rmf-app/src/dashboards/dds/ENQ.json @@ -54,9 +54,11 @@ "mode": "thresholds" }, "custom": { - "displayMode": "Auto", - "enablePagination": false, - "filterable": false + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false }, "mappings": [], "thresholds": { diff --git a/grafana/rmf-app/src/dashboards/dds/HSM.json b/grafana/rmf-app/src/dashboards/dds/HSM.json index 3994f68b..7e6d4765 100644 --- a/grafana/rmf-app/src/dashboards/dds/HSM.json +++ b/grafana/rmf-app/src/dashboards/dds/HSM.json @@ -54,9 +54,11 @@ "mode": "thresholds" }, "custom": { - "displayMode": "Auto", - "enablePagination": false, - "filterable": false + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false }, "mappings": [], "thresholds": { diff --git a/grafana/rmf-app/src/dashboards/dds/IOQ.json b/grafana/rmf-app/src/dashboards/dds/IOQ.json index 6079a4fd..57eb7285 100644 --- a/grafana/rmf-app/src/dashboards/dds/IOQ.json +++ b/grafana/rmf-app/src/dashboards/dds/IOQ.json @@ -54,9 +54,11 @@ "mode": "thresholds" }, "custom": { - "displayMode": "Auto", - "enablePagination": false, - "filterable": false + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false }, "mappings": [], "thresholds": { diff --git a/grafana/rmf-app/src/dashboards/dds/JES.json b/grafana/rmf-app/src/dashboards/dds/JES.json index bd504c79..adea7c72 100644 --- a/grafana/rmf-app/src/dashboards/dds/JES.json +++ b/grafana/rmf-app/src/dashboards/dds/JES.json @@ -54,9 +54,11 @@ "mode": "thresholds" }, "custom": { - "displayMode": "Auto", - "enablePagination": false, - "filterable": false + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false }, "mappings": [], "thresholds": { diff --git a/grafana/rmf-app/src/dashboards/dds/LOCKSP.json b/grafana/rmf-app/src/dashboards/dds/LOCKSP.json index 020b4e2b..4ed5dab8 100644 --- a/grafana/rmf-app/src/dashboards/dds/LOCKSP.json +++ b/grafana/rmf-app/src/dashboards/dds/LOCKSP.json @@ -54,9 +54,11 @@ "mode": "thresholds" }, "custom": { - "displayMode": "Auto", - "enablePagination": false, - "filterable": false + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false }, "mappings": [], "thresholds": { diff --git a/grafana/rmf-app/src/dashboards/dds/LOCKSU.json b/grafana/rmf-app/src/dashboards/dds/LOCKSU.json index b28b2732..7d24c221 100644 --- a/grafana/rmf-app/src/dashboards/dds/LOCKSU.json +++ b/grafana/rmf-app/src/dashboards/dds/LOCKSU.json @@ -54,9 +54,11 @@ "mode": "thresholds" }, "custom": { - "displayMode": "Auto", - "enablePagination": false, - "filterable": false + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false }, "mappings": [], "thresholds": { diff --git a/grafana/rmf-app/src/dashboards/dds/OPD.json b/grafana/rmf-app/src/dashboards/dds/OPD.json index ade42ed9..c57a85f9 100644 --- a/grafana/rmf-app/src/dashboards/dds/OPD.json +++ b/grafana/rmf-app/src/dashboards/dds/OPD.json @@ -54,9 +54,11 @@ "mode": "thresholds" }, "custom": { - "displayMode": "Auto", - "enablePagination": false, - "filterable": false + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false }, "mappings": [], "thresholds": { @@ -76,10 +78,10 @@ "overrides": [] }, "gridPos": { - "h": 14, + "h": 15, "w": 24, "x": 0, - "y": 7 + "y": 6 }, "id": 2, "targets": [ @@ -170,7 +172,7 @@ "overrides": [] }, "gridPos": { - "h": 7, + "h": 6, "w": 12, "x": 0, "y": 0 @@ -244,7 +246,7 @@ "overrides": [] }, "gridPos": { - "h": 7, + "h": 6, "w": 12, "x": 12, "y": 0 diff --git a/grafana/rmf-app/src/dashboards/dds/PCIE.json b/grafana/rmf-app/src/dashboards/dds/PCIE.json index 10875e46..2bd40d20 100644 --- a/grafana/rmf-app/src/dashboards/dds/PCIE.json +++ b/grafana/rmf-app/src/dashboards/dds/PCIE.json @@ -54,9 +54,11 @@ "mode": "thresholds" }, "custom": { - "displayMode": "Auto", - "enablePagination": false, - "filterable": false + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false }, "mappings": [], "thresholds": { diff --git a/grafana/rmf-app/src/dashboards/dds/PROC.json b/grafana/rmf-app/src/dashboards/dds/PROC.json index a0be10a0..944f1f63 100644 --- a/grafana/rmf-app/src/dashboards/dds/PROC.json +++ b/grafana/rmf-app/src/dashboards/dds/PROC.json @@ -54,9 +54,11 @@ "mode": "thresholds" }, "custom": { - "displayMode": "Auto", - "enablePagination": false, - "filterable": false + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false }, "mappings": [], "thresholds": { diff --git a/grafana/rmf-app/src/dashboards/dds/PROCU.json b/grafana/rmf-app/src/dashboards/dds/PROCU.json index d6ed44bf..c8364f7d 100644 --- a/grafana/rmf-app/src/dashboards/dds/PROCU.json +++ b/grafana/rmf-app/src/dashboards/dds/PROCU.json @@ -54,9 +54,11 @@ "mode": "thresholds" }, "custom": { - "displayMode": "Auto", - "enablePagination": false, - "filterable": false + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false }, "mappings": [], "thresholds": { diff --git a/grafana/rmf-app/src/dashboards/dds/SPACED.json b/grafana/rmf-app/src/dashboards/dds/SPACED.json index c7762115..d565f41a 100644 --- a/grafana/rmf-app/src/dashboards/dds/SPACED.json +++ b/grafana/rmf-app/src/dashboards/dds/SPACED.json @@ -54,9 +54,11 @@ "mode": "thresholds" }, "custom": { - "displayMode": "Auto", - "enablePagination": false, - "filterable": false + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false }, "mappings": [], "thresholds": { diff --git a/grafana/rmf-app/src/dashboards/dds/SPACEG.json b/grafana/rmf-app/src/dashboards/dds/SPACEG.json index 684adeaf..ee923f26 100644 --- a/grafana/rmf-app/src/dashboards/dds/SPACEG.json +++ b/grafana/rmf-app/src/dashboards/dds/SPACEG.json @@ -54,9 +54,11 @@ "mode": "thresholds" }, "custom": { - "displayMode": "Auto", - "enablePagination": false, - "filterable": false + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false }, "mappings": [], "thresholds": { diff --git a/grafana/rmf-app/src/dashboards/dds/STOR.json b/grafana/rmf-app/src/dashboards/dds/STOR.json index fee996f8..83b46107 100644 --- a/grafana/rmf-app/src/dashboards/dds/STOR.json +++ b/grafana/rmf-app/src/dashboards/dds/STOR.json @@ -54,9 +54,11 @@ "mode": "thresholds" }, "custom": { - "displayMode": "Auto", - "enablePagination": false, - "filterable": false + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false }, "mappings": [], "thresholds": { diff --git a/grafana/rmf-app/src/dashboards/dds/STORC.json b/grafana/rmf-app/src/dashboards/dds/STORC.json index b6cae645..73a416ac 100644 --- a/grafana/rmf-app/src/dashboards/dds/STORC.json +++ b/grafana/rmf-app/src/dashboards/dds/STORC.json @@ -54,9 +54,11 @@ "mode": "thresholds" }, "custom": { - "displayMode": "Auto", - "enablePagination": false, - "filterable": false + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false }, "mappings": [], "thresholds": { @@ -76,10 +78,10 @@ "overrides": [] }, "gridPos": { - "h": 14, - "w": 24, + "h": 17, + "w": 18, "x": 0, - "y": 7 + "y": 4 }, "id": 1, "targets": [ @@ -225,8 +227,8 @@ "overrides": [] }, "gridPos": { - "h": 7, - "w": 12, + "h": 4, + "w": 18, "x": 0, "y": 0 }, @@ -299,9 +301,9 @@ "overrides": [] }, "gridPos": { - "h": 7, - "w": 12, - "x": 12, + "h": 21, + "w": 6, + "x": 18, "y": 0 }, "id": 3, diff --git a/grafana/rmf-app/src/dashboards/dds/STORCR.json b/grafana/rmf-app/src/dashboards/dds/STORCR.json index ffaba2a0..9e625455 100644 --- a/grafana/rmf-app/src/dashboards/dds/STORCR.json +++ b/grafana/rmf-app/src/dashboards/dds/STORCR.json @@ -54,9 +54,11 @@ "mode": "thresholds" }, "custom": { - "displayMode": "Auto", - "enablePagination": false, - "filterable": false + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false }, "mappings": [], "thresholds": { diff --git a/grafana/rmf-app/src/dashboards/dds/STORF.json b/grafana/rmf-app/src/dashboards/dds/STORF.json index 55e91b5e..7016f8ab 100644 --- a/grafana/rmf-app/src/dashboards/dds/STORF.json +++ b/grafana/rmf-app/src/dashboards/dds/STORF.json @@ -54,9 +54,11 @@ "mode": "thresholds" }, "custom": { - "displayMode": "Auto", - "enablePagination": false, - "filterable": false + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false }, "mappings": [], "thresholds": { diff --git a/grafana/rmf-app/src/dashboards/dds/STORM.json b/grafana/rmf-app/src/dashboards/dds/STORM.json index 81a32f25..fd6605eb 100644 --- a/grafana/rmf-app/src/dashboards/dds/STORM.json +++ b/grafana/rmf-app/src/dashboards/dds/STORM.json @@ -54,9 +54,11 @@ "mode": "thresholds" }, "custom": { - "displayMode": "Auto", - "enablePagination": false, - "filterable": false + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false }, "mappings": [], "thresholds": { @@ -76,10 +78,10 @@ "overrides": [] }, "gridPos": { - "h": 14, - "w": 24, + "h": 17, + "w": 18, "x": 0, - "y": 7 + "y": 4 }, "id": 1, "targets": [ @@ -250,8 +252,8 @@ "overrides": [] }, "gridPos": { - "h": 7, - "w": 12, + "h": 4, + "w": 18, "x": 0, "y": 0 }, @@ -324,9 +326,9 @@ "overrides": [] }, "gridPos": { - "h": 7, - "w": 12, - "x": 12, + "h": 21, + "w": 6, + "x": 18, "y": 0 }, "id": 3, diff --git a/grafana/rmf-app/src/dashboards/dds/STORR.json b/grafana/rmf-app/src/dashboards/dds/STORR.json index db1f6fae..fb3766d8 100644 --- a/grafana/rmf-app/src/dashboards/dds/STORR.json +++ b/grafana/rmf-app/src/dashboards/dds/STORR.json @@ -54,9 +54,11 @@ "mode": "thresholds" }, "custom": { - "displayMode": "Auto", - "enablePagination": false, - "filterable": false + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false }, "mappings": [], "thresholds": { @@ -76,10 +78,10 @@ "overrides": [] }, "gridPos": { - "h": 14, - "w": 24, + "h": 17, + "w": 17, "x": 0, - "y": 7 + "y": 4 }, "id": 1, "targets": [ @@ -243,8 +245,8 @@ "overrides": [] }, "gridPos": { - "h": 7, - "w": 12, + "h": 4, + "w": 17, "x": 0, "y": 0 }, @@ -317,9 +319,9 @@ "overrides": [] }, "gridPos": { - "h": 7, - "w": 12, - "x": 12, + "h": 21, + "w": 7, + "x": 17, "y": 0 }, "id": 3, diff --git a/grafana/rmf-app/src/dashboards/dds/STORS.json b/grafana/rmf-app/src/dashboards/dds/STORS.json index d6c85170..4ef3b85e 100644 --- a/grafana/rmf-app/src/dashboards/dds/STORS.json +++ b/grafana/rmf-app/src/dashboards/dds/STORS.json @@ -54,9 +54,11 @@ "mode": "thresholds" }, "custom": { - "displayMode": "Auto", - "enablePagination": false, - "filterable": false + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false }, "mappings": [], "thresholds": { @@ -73,13 +75,170 @@ ] } }, - "overrides": [] + "overrides": [ + { + "matcher": { + "id": "byName", + "options": "Group Type" + }, + "properties": [ + { + "id": "custom.width", + "value": 94 + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "Total Users" + }, + "properties": [ + { + "id": "custom.width", + "value": 93 + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "Active Users" + }, + "properties": [ + { + "id": "custom.width", + "value": 101 + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "Delay % ANY" + }, + "properties": [ + { + "id": "custom.width", + "value": 102 + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "Delay % COMM" + }, + "properties": [ + { + "id": "custom.width", + "value": 119 + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "Delay % LOCL" + }, + "properties": [ + { + "id": "custom.width", + "value": 111 + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "Delay % SWAP" + }, + "properties": [ + { + "id": "custom.width", + "value": 116 + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "Delay % OUTR" + }, + "properties": [ + { + "id": "custom.width", + "value": 114 + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "ACTV Frames" + }, + "properties": [ + { + "id": "custom.width", + "value": 108 + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "Delay % OTHER" + }, + "properties": [ + { + "id": "custom.width", + "value": 121 + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "IDLE Frames" + }, + "properties": [ + { + "id": "custom.width", + "value": 100 + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "FIXED Frames" + }, + "properties": [ + { + "id": "custom.width", + "value": 113 + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "Group Name" + }, + "properties": [ + { + "id": "custom.width", + "value": 101 + } + ] + } + ] }, "gridPos": { - "h": 14, - "w": 24, + "h": 17, + "w": 18, "x": 0, - "y": 7 + "y": 4 }, "id": 1, "targets": [ @@ -216,8 +375,8 @@ "overrides": [] }, "gridPos": { - "h": 7, - "w": 12, + "h": 4, + "w": 18, "x": 0, "y": 0 }, @@ -290,9 +449,9 @@ "overrides": [] }, "gridPos": { - "h": 7, - "w": 12, - "x": 12, + "h": 21, + "w": 6, + "x": 18, "y": 0 }, "id": 3, diff --git a/grafana/rmf-app/src/dashboards/dds/SYSINFO.json b/grafana/rmf-app/src/dashboards/dds/SYSINFO.json index 2282c6b1..e61bf0b9 100644 --- a/grafana/rmf-app/src/dashboards/dds/SYSINFO.json +++ b/grafana/rmf-app/src/dashboards/dds/SYSINFO.json @@ -54,9 +54,11 @@ "mode": "thresholds" }, "custom": { - "displayMode": "Auto", - "enablePagination": false, - "filterable": false + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false }, "mappings": [], "thresholds": { @@ -76,10 +78,10 @@ "overrides": [] }, "gridPos": { - "h": 14, - "w": 24, + "h": 17, + "w": 19, "x": 0, - "y": 7 + "y": 4 }, "id": 1, "targets": [ @@ -336,8 +338,8 @@ "overrides": [] }, "gridPos": { - "h": 7, - "w": 12, + "h": 4, + "w": 19, "x": 0, "y": 0 }, @@ -410,9 +412,9 @@ "overrides": [] }, "gridPos": { - "h": 7, - "w": 12, - "x": 12, + "h": 21, + "w": 5, + "x": 19, "y": 0 }, "id": 3, diff --git a/grafana/rmf-app/src/dashboards/dds/SYSRG.json b/grafana/rmf-app/src/dashboards/dds/SYSRG.json index 2ad775b5..aef76771 100644 --- a/grafana/rmf-app/src/dashboards/dds/SYSRG.json +++ b/grafana/rmf-app/src/dashboards/dds/SYSRG.json @@ -54,9 +54,11 @@ "mode": "thresholds" }, "custom": { - "displayMode": "Auto", - "enablePagination": false, - "filterable": false + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false }, "mappings": [], "thresholds": { diff --git a/grafana/rmf-app/src/dashboards/dds/SYSSUM.json b/grafana/rmf-app/src/dashboards/dds/SYSSUM.json index 19537ed6..20794382 100644 --- a/grafana/rmf-app/src/dashboards/dds/SYSSUM.json +++ b/grafana/rmf-app/src/dashboards/dds/SYSSUM.json @@ -54,9 +54,11 @@ "mode": "thresholds" }, "custom": { - "displayMode": "Auto", - "enablePagination": false, - "filterable": false + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false }, "mappings": [], "thresholds": { @@ -76,10 +78,10 @@ "overrides": [] }, "gridPos": { - "h": 14, + "h": 16, "w": 24, "x": 0, - "y": 7 + "y": 5 }, "id": 1, "interval": "1m", @@ -316,7 +318,7 @@ "overrides": [] }, "gridPos": { - "h": 7, + "h": 5, "w": 12, "x": 0, "y": 0 @@ -390,7 +392,7 @@ "overrides": [] }, "gridPos": { - "h": 7, + "h": 5, "w": 12, "x": 12, "y": 0 diff --git a/grafana/rmf-app/src/dashboards/dds/USAGE.json b/grafana/rmf-app/src/dashboards/dds/USAGE.json index 12b9fcc5..ca86c921 100644 --- a/grafana/rmf-app/src/dashboards/dds/USAGE.json +++ b/grafana/rmf-app/src/dashboards/dds/USAGE.json @@ -54,9 +54,11 @@ "mode": "thresholds" }, "custom": { - "displayMode": "Auto", - "enablePagination": false, - "filterable": false + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false }, "mappings": [], "thresholds": { diff --git a/grafana/rmf-app/src/dashboards/dds/XCFGROUP.json b/grafana/rmf-app/src/dashboards/dds/XCFGROUP.json index e6a9302f..aa18a222 100644 --- a/grafana/rmf-app/src/dashboards/dds/XCFGROUP.json +++ b/grafana/rmf-app/src/dashboards/dds/XCFGROUP.json @@ -54,9 +54,11 @@ "mode": "thresholds" }, "custom": { - "displayMode": "Auto", - "enablePagination": false, - "filterable": false + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false }, "mappings": [], "thresholds": { diff --git a/grafana/rmf-app/src/dashboards/dds/XCFOVW.json b/grafana/rmf-app/src/dashboards/dds/XCFOVW.json index c2eb38d1..4e7a999b 100644 --- a/grafana/rmf-app/src/dashboards/dds/XCFOVW.json +++ b/grafana/rmf-app/src/dashboards/dds/XCFOVW.json @@ -54,9 +54,11 @@ "mode": "thresholds" }, "custom": { - "displayMode": "Auto", - "enablePagination": false, - "filterable": false + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false }, "mappings": [], "thresholds": { diff --git a/grafana/rmf-app/src/dashboards/dds/XCFPATH.json b/grafana/rmf-app/src/dashboards/dds/XCFPATH.json index feb758ae..061de34f 100644 --- a/grafana/rmf-app/src/dashboards/dds/XCFPATH.json +++ b/grafana/rmf-app/src/dashboards/dds/XCFPATH.json @@ -54,9 +54,11 @@ "mode": "thresholds" }, "custom": { - "displayMode": "Auto", - "enablePagination": false, - "filterable": false + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false }, "mappings": [], "thresholds": { diff --git a/grafana/rmf-app/src/dashboards/dds/XCFSYS.json b/grafana/rmf-app/src/dashboards/dds/XCFSYS.json index c5830a1d..970b69ce 100644 --- a/grafana/rmf-app/src/dashboards/dds/XCFSYS.json +++ b/grafana/rmf-app/src/dashboards/dds/XCFSYS.json @@ -54,9 +54,11 @@ "mode": "thresholds" }, "custom": { - "displayMode": "Auto", - "enablePagination": false, - "filterable": false + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false }, "mappings": [], "thresholds": { diff --git a/grafana/rmf-app/src/dashboards/dds/ZFSFS.json b/grafana/rmf-app/src/dashboards/dds/ZFSFS.json index 8159eddf..5ff81ffe 100644 --- a/grafana/rmf-app/src/dashboards/dds/ZFSFS.json +++ b/grafana/rmf-app/src/dashboards/dds/ZFSFS.json @@ -54,9 +54,11 @@ "mode": "thresholds" }, "custom": { - "displayMode": "Auto", - "enablePagination": false, - "filterable": false + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false }, "mappings": [], "thresholds": { diff --git a/grafana/rmf-app/src/dashboards/dds/ZFSKN.json b/grafana/rmf-app/src/dashboards/dds/ZFSKN.json index 5825a2ca..cc750ded 100644 --- a/grafana/rmf-app/src/dashboards/dds/ZFSKN.json +++ b/grafana/rmf-app/src/dashboards/dds/ZFSKN.json @@ -54,9 +54,11 @@ "mode": "thresholds" }, "custom": { - "displayMode": "Auto", - "enablePagination": false, - "filterable": false + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false }, "mappings": [], "thresholds": { diff --git a/grafana/rmf-app/src/dashboards/dds/ZFSOVW.json b/grafana/rmf-app/src/dashboards/dds/ZFSOVW.json index bd0ac833..0361e41d 100644 --- a/grafana/rmf-app/src/dashboards/dds/ZFSOVW.json +++ b/grafana/rmf-app/src/dashboards/dds/ZFSOVW.json @@ -54,9 +54,11 @@ "mode": "thresholds" }, "custom": { - "displayMode": "Auto", - "enablePagination": false, - "filterable": false + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false }, "mappings": [], "thresholds": { diff --git a/grafana/rmf-app/src/datasource/parser/lib/RMFQueryLexer.ts b/grafana/rmf-app/src/datasource/parser/lib/RMFQueryLexer.ts index a5bace75..578a7606 100644 --- a/grafana/rmf-app/src/datasource/parser/lib/RMFQueryLexer.ts +++ b/grafana/rmf-app/src/datasource/parser/lib/RMFQueryLexer.ts @@ -13,32 +13,34 @@ import { } from "antlr4"; export default class RMFQueryLexer extends Lexer { public static readonly REPORT = 1; - public static readonly WORKSCOPE = 2; - public static readonly RANGE = 3; - public static readonly ULQ = 4; - public static readonly NAME = 5; - public static readonly FILTER = 6; - public static readonly PAT = 7; - public static readonly LB = 8; - public static readonly UB = 9; - public static readonly HI = 10; - public static readonly LO = 11; - public static readonly ORD = 12; - public static readonly ORD_OPTION = 13; - public static readonly RES_TYPE = 14; - public static readonly WORKSCOPE_TYPE = 15; - public static readonly INTEGER = 16; - public static readonly DECIMAL = 17; - public static readonly IDENTIFIER = 18; - public static readonly STRING_UNQUOTED = 19; - public static readonly STRING_QUOTED = 20; - public static readonly DOT = 21; - public static readonly SEMI = 22; - public static readonly COMMA = 23; - public static readonly LBRACE = 24; - public static readonly RBRACE = 25; - public static readonly EQUAL = 26; - public static readonly WS = 27; + public static readonly REPORT_CAPTION = 2; + public static readonly REPORT_BANNER = 3; + public static readonly WORKSCOPE = 4; + public static readonly RANGE = 5; + public static readonly ULQ = 6; + public static readonly NAME = 7; + public static readonly FILTER = 8; + public static readonly PAT = 9; + public static readonly LB = 10; + public static readonly UB = 11; + public static readonly HI = 12; + public static readonly LO = 13; + public static readonly ORD = 14; + public static readonly ORD_OPTION = 15; + public static readonly RES_TYPE = 16; + public static readonly WORKSCOPE_TYPE = 17; + public static readonly INTEGER = 18; + public static readonly DECIMAL = 19; + public static readonly IDENTIFIER = 20; + public static readonly STRING_UNQUOTED = 21; + public static readonly STRING_QUOTED = 22; + public static readonly DOT = 23; + public static readonly SEMI = 24; + public static readonly COMMA = 25; + public static readonly LBRACE = 26; + public static readonly RBRACE = 27; + public static readonly EQUAL = 28; + public static readonly WS = 29; public static readonly EOF = Token.EOF; public static readonly channelNames: string[] = [ "DEFAULT_TOKEN_CHANNEL", "HIDDEN" ]; @@ -52,11 +54,14 @@ export default class RMFQueryLexer extends Lexer { null, null, null, null, null, null, + null, null, null, "'.'", "';'", "','", "'{'", "'}'", "'='" ]; public static readonly symbolicNames: (string | null)[] = [ null, "REPORT", + "REPORT_CAPTION", + "REPORT_BANNER", "WORKSCOPE", "RANGE", "ULQ", "NAME", "FILTER", @@ -78,11 +83,12 @@ export default class RMFQueryLexer extends Lexer { public static readonly modeNames: string[] = [ "DEFAULT_MODE", ]; public static readonly ruleNames: string[] = [ - "REPORT", "WORKSCOPE", "RANGE", "ULQ", "NAME", "FILTER", "PAT", "LB", - "UB", "HI", "LO", "ORD", "ORD_OPTION", "RES_TYPE", "WORKSCOPE_TYPE", "INTEGER", - "DECIMAL", "IDENTIFIER", "STRING_UNQUOTED", "STRING_QUOTED", "DOT", "SEMI", - "COMMA", "LBRACE", "RBRACE", "EQUAL", "WS", "SINGLE_QUOTE", "DOUBLE_QOUTE", - "STRING_ITEM_NO_QUOTE", "STRING_ITEM_SINGLE_QUOTE", "STRING_ITEM_DOUBLE_QUOTE", + "REPORT", "REPORT_CAPTION", "REPORT_BANNER", "WORKSCOPE", "RANGE", "ULQ", + "NAME", "FILTER", "PAT", "LB", "UB", "HI", "LO", "ORD", "ORD_OPTION", + "RES_TYPE", "WORKSCOPE_TYPE", "INTEGER", "DECIMAL", "IDENTIFIER", "STRING_UNQUOTED", + "STRING_QUOTED", "DOT", "SEMI", "COMMA", "LBRACE", "RBRACE", "EQUAL", + "WS", "SINGLE_QUOTE", "DOUBLE_QOUTE", "UNDERSCORE", "STRING_ITEM_NO_QUOTE", + "STRING_ITEM_SINGLE_QUOTE", "STRING_ITEM_DOUBLE_QUOTE", "STRING_ITEM_UNDERSCORE", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", ]; @@ -105,7 +111,7 @@ export default class RMFQueryLexer extends Lexer { public get modeNames(): string[] { return RMFQueryLexer.modeNames; } - public static readonly _serializedATN: number[] = [4,0,27,850,6,-1,2,0, + public static readonly _serializedATN: number[] = [4,0,29,891,6,-1,2,0, 7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6,7,6,2,7,7,7,2,8,7,8,2,9, 7,9,2,10,7,10,2,11,7,11,2,12,7,12,2,13,7,13,2,14,7,14,2,15,7,15,2,16,7, 16,2,17,7,17,2,18,7,18,2,19,7,19,2,20,7,20,2,21,7,21,2,22,7,22,2,23,7,23, @@ -113,282 +119,296 @@ export default class RMFQueryLexer extends Lexer { 31,7,31,2,32,7,32,2,33,7,33,2,34,7,34,2,35,7,35,2,36,7,36,2,37,7,37,2,38, 7,38,2,39,7,39,2,40,7,40,2,41,7,41,2,42,7,42,2,43,7,43,2,44,7,44,2,45,7, 45,2,46,7,46,2,47,7,47,2,48,7,48,2,49,7,49,2,50,7,50,2,51,7,51,2,52,7,52, - 2,53,7,53,2,54,7,54,2,55,7,55,2,56,7,56,2,57,7,57,1,0,1,0,1,0,1,0,1,0,1, - 0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,2,1,2,1,2,1,2,1, - 3,1,3,1,3,1,3,1,4,1,4,1,4,1,4,1,4,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,6,1,6,1, - 6,1,6,1,7,1,7,1,7,1,8,1,8,1,8,1,9,1,9,1,9,1,10,1,10,1,10,1,11,1,11,1,11, - 1,11,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1, - 12,1,12,3,12,192,8,12,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13, - 1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1, - 13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13, - 1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1, - 13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13, - 1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1, - 13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13, - 1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1, - 13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13, - 1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1, - 13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13, - 1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1, - 13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13, - 1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1, - 13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13, - 1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1, - 13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13, - 1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1, - 13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13, - 1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1, - 13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13, - 1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1, - 13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13, - 1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1, - 13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13, - 1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1, - 13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13, - 1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1, - 13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13, - 1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1, - 13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13, - 1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1, - 13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13, - 1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1, - 13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13, - 1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1, - 13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,3,13,723,8,13, - 1,14,1,14,1,14,1,14,1,14,1,14,3,14,731,8,14,1,15,4,15,734,8,15,11,15,12, - 15,735,1,16,1,16,1,16,1,16,1,17,4,17,743,8,17,11,17,12,17,744,1,18,4,18, - 748,8,18,11,18,12,18,749,1,19,1,19,5,19,754,8,19,10,19,12,19,757,9,19,1, - 19,1,19,1,19,1,19,5,19,763,8,19,10,19,12,19,766,9,19,1,19,1,19,3,19,770, - 8,19,1,20,1,20,1,21,1,21,1,22,1,22,1,23,1,23,1,24,1,24,1,25,1,25,1,26,4, - 26,785,8,26,11,26,12,26,786,1,27,1,27,1,28,1,28,1,29,1,29,1,30,1,30,1,31, - 1,31,1,32,1,32,1,33,1,33,1,34,1,34,1,35,1,35,1,36,1,36,1,37,1,37,1,38,1, - 38,1,39,1,39,1,40,1,40,1,41,1,41,1,42,1,42,1,43,1,43,1,44,1,44,1,45,1,45, - 1,46,1,46,1,47,1,47,1,48,1,48,1,49,1,49,1,50,1,50,1,51,1,51,1,52,1,52,1, - 53,1,53,1,54,1,54,1,55,1,55,1,56,1,56,1,57,1,57,0,0,58,1,1,3,2,5,3,7,4, - 9,5,11,6,13,7,15,8,17,9,19,10,21,11,23,12,25,13,27,14,29,15,31,16,33,17, - 35,18,37,19,39,20,41,21,43,22,45,23,47,24,49,25,51,26,53,27,55,0,57,0,59, - 0,61,0,63,0,65,0,67,0,69,0,71,0,73,0,75,0,77,0,79,0,81,0,83,0,85,0,87,0, - 89,0,91,0,93,0,95,0,97,0,99,0,101,0,103,0,105,0,107,0,109,0,111,0,113,0, - 115,0,1,0,32,1,0,48,57,2,0,65,90,97,122,3,0,9,10,13,13,32,32,7,0,32,32, - 44,44,46,46,59,59,61,61,123,123,125,125,1,0,39,39,1,0,34,34,2,0,65,65,97, + 2,53,7,53,2,54,7,54,2,55,7,55,2,56,7,56,2,57,7,57,2,58,7,58,2,59,7,59,2, + 60,7,60,2,61,7,61,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, + 2,1,2,1,2,1,2,1,2,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,4,1,4,1,4,1, + 4,1,4,1,4,1,5,1,5,1,5,1,5,1,6,1,6,1,6,1,6,1,6,1,7,1,7,1,7,1,7,1,7,1,7,1, + 7,1,8,1,8,1,8,1,8,1,9,1,9,1,9,1,10,1,10,1,10,1,11,1,11,1,11,1,12,1,12,1, + 12,1,13,1,13,1,13,1,13,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14, + 1,14,1,14,1,14,1,14,1,14,3,14,229,8,14,1,15,1,15,1,15,1,15,1,15,1,15,1, + 15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15, + 1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1, + 15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15, + 1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1, + 15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15, + 1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1, + 15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15, + 1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1, + 15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15, + 1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1, + 15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15, + 1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1, + 15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15, + 1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1, + 15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15, + 1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1, + 15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15, + 1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1, + 15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15, + 1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1, + 15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15, + 1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1, + 15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15, + 1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1, + 15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15, + 1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1, + 15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15, + 1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1, + 15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15, + 1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1, + 15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15, + 1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1, + 15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15, + 1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1, + 15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15, + 1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1, + 15,3,15,760,8,15,1,16,1,16,1,16,1,16,1,16,1,16,3,16,768,8,16,1,17,4,17, + 771,8,17,11,17,12,17,772,1,18,1,18,1,18,1,18,1,19,4,19,780,8,19,11,19,12, + 19,781,1,20,4,20,785,8,20,11,20,12,20,786,1,21,1,21,5,21,791,8,21,10,21, + 12,21,794,9,21,1,21,1,21,1,21,1,21,5,21,800,8,21,10,21,12,21,803,9,21,1, + 21,1,21,3,21,807,8,21,1,22,1,22,1,23,1,23,1,24,1,24,1,25,1,25,1,26,1,26, + 1,27,1,27,1,28,4,28,822,8,28,11,28,12,28,823,1,29,1,29,1,30,1,30,1,31,1, + 31,1,32,1,32,1,33,1,33,1,34,1,34,1,35,1,35,1,36,1,36,1,37,1,37,1,38,1,38, + 1,39,1,39,1,40,1,40,1,41,1,41,1,42,1,42,1,43,1,43,1,44,1,44,1,45,1,45,1, + 46,1,46,1,47,1,47,1,48,1,48,1,49,1,49,1,50,1,50,1,51,1,51,1,52,1,52,1,53, + 1,53,1,54,1,54,1,55,1,55,1,56,1,56,1,57,1,57,1,58,1,58,1,59,1,59,1,60,1, + 60,1,61,1,61,0,0,62,1,1,3,2,5,3,7,4,9,5,11,6,13,7,15,8,17,9,19,10,21,11, + 23,12,25,13,27,14,29,15,31,16,33,17,35,18,37,19,39,20,41,21,43,22,45,23, + 47,24,49,25,51,26,53,27,55,28,57,29,59,0,61,0,63,0,65,0,67,0,69,0,71,0, + 73,0,75,0,77,0,79,0,81,0,83,0,85,0,87,0,89,0,91,0,93,0,95,0,97,0,99,0,101, + 0,103,0,105,0,107,0,109,0,111,0,113,0,115,0,117,0,119,0,121,0,123,0,1,0, + 33,1,0,48,57,2,0,65,90,97,122,3,0,9,10,13,13,32,32,7,0,32,32,44,44,46,46, + 59,59,61,61,123,123,125,125,1,0,39,39,1,0,34,34,1,0,95,95,2,0,65,65,97, 97,2,0,66,66,98,98,2,0,67,67,99,99,2,0,68,68,100,100,2,0,69,69,101,101, 2,0,70,70,102,102,2,0,71,71,103,103,2,0,72,72,104,104,2,0,73,73,105,105, 2,0,74,74,106,106,2,0,75,75,107,107,2,0,76,76,108,108,2,0,77,77,109,109, 2,0,78,78,110,110,2,0,79,79,111,111,2,0,80,80,112,112,2,0,81,81,113,113, 2,0,82,82,114,114,2,0,83,83,115,115,2,0,84,84,116,116,2,0,85,85,117,117, 2,0,86,86,118,118,2,0,87,87,119,119,2,0,88,88,120,120,2,0,89,89,121,121, - 2,0,90,90,122,122,881,0,1,1,0,0,0,0,3,1,0,0,0,0,5,1,0,0,0,0,7,1,0,0,0,0, + 2,0,90,90,122,122,920,0,1,1,0,0,0,0,3,1,0,0,0,0,5,1,0,0,0,0,7,1,0,0,0,0, 9,1,0,0,0,0,11,1,0,0,0,0,13,1,0,0,0,0,15,1,0,0,0,0,17,1,0,0,0,0,19,1,0, 0,0,0,21,1,0,0,0,0,23,1,0,0,0,0,25,1,0,0,0,0,27,1,0,0,0,0,29,1,0,0,0,0, 31,1,0,0,0,0,33,1,0,0,0,0,35,1,0,0,0,0,37,1,0,0,0,0,39,1,0,0,0,0,41,1,0, 0,0,0,43,1,0,0,0,0,45,1,0,0,0,0,47,1,0,0,0,0,49,1,0,0,0,0,51,1,0,0,0,0, - 53,1,0,0,0,1,117,1,0,0,0,3,124,1,0,0,0,5,134,1,0,0,0,7,140,1,0,0,0,9,144, - 1,0,0,0,11,149,1,0,0,0,13,156,1,0,0,0,15,160,1,0,0,0,17,163,1,0,0,0,19, - 166,1,0,0,0,21,169,1,0,0,0,23,172,1,0,0,0,25,191,1,0,0,0,27,722,1,0,0,0, - 29,730,1,0,0,0,31,733,1,0,0,0,33,737,1,0,0,0,35,742,1,0,0,0,37,747,1,0, - 0,0,39,769,1,0,0,0,41,771,1,0,0,0,43,773,1,0,0,0,45,775,1,0,0,0,47,777, - 1,0,0,0,49,779,1,0,0,0,51,781,1,0,0,0,53,784,1,0,0,0,55,788,1,0,0,0,57, - 790,1,0,0,0,59,792,1,0,0,0,61,794,1,0,0,0,63,796,1,0,0,0,65,798,1,0,0,0, - 67,800,1,0,0,0,69,802,1,0,0,0,71,804,1,0,0,0,73,806,1,0,0,0,75,808,1,0, - 0,0,77,810,1,0,0,0,79,812,1,0,0,0,81,814,1,0,0,0,83,816,1,0,0,0,85,818, - 1,0,0,0,87,820,1,0,0,0,89,822,1,0,0,0,91,824,1,0,0,0,93,826,1,0,0,0,95, - 828,1,0,0,0,97,830,1,0,0,0,99,832,1,0,0,0,101,834,1,0,0,0,103,836,1,0,0, - 0,105,838,1,0,0,0,107,840,1,0,0,0,109,842,1,0,0,0,111,844,1,0,0,0,113,846, - 1,0,0,0,115,848,1,0,0,0,117,118,3,99,49,0,118,119,3,73,36,0,119,120,3,95, - 47,0,120,121,3,93,46,0,121,122,3,99,49,0,122,123,3,103,51,0,123,2,1,0,0, - 0,124,125,3,109,54,0,125,126,3,93,46,0,126,127,3,99,49,0,127,128,3,85,42, - 0,128,129,3,101,50,0,129,130,3,69,34,0,130,131,3,93,46,0,131,132,3,95,47, - 0,132,133,3,73,36,0,133,4,1,0,0,0,134,135,3,99,49,0,135,136,3,65,32,0,136, - 137,3,91,45,0,137,138,3,77,38,0,138,139,3,73,36,0,139,6,1,0,0,0,140,141, - 3,105,52,0,141,142,3,87,43,0,142,143,3,97,48,0,143,8,1,0,0,0,144,145,3, - 91,45,0,145,146,3,65,32,0,146,147,3,89,44,0,147,148,3,73,36,0,148,10,1, - 0,0,0,149,150,3,75,37,0,150,151,3,81,40,0,151,152,3,87,43,0,152,153,3,103, - 51,0,153,154,3,73,36,0,154,155,3,99,49,0,155,12,1,0,0,0,156,157,3,95,47, - 0,157,158,3,65,32,0,158,159,3,103,51,0,159,14,1,0,0,0,160,161,3,87,43,0, - 161,162,3,67,33,0,162,16,1,0,0,0,163,164,3,105,52,0,164,165,3,67,33,0,165, - 18,1,0,0,0,166,167,3,79,39,0,167,168,3,81,40,0,168,20,1,0,0,0,169,170,3, - 87,43,0,170,171,3,93,46,0,171,22,1,0,0,0,172,173,3,93,46,0,173,174,3,99, - 49,0,174,175,3,71,35,0,175,24,1,0,0,0,176,177,3,91,45,0,177,178,3,65,32, - 0,178,192,1,0,0,0,179,180,3,91,45,0,180,181,3,71,35,0,181,192,1,0,0,0,182, - 183,3,107,53,0,183,184,3,65,32,0,184,192,1,0,0,0,185,186,3,107,53,0,186, - 187,3,71,35,0,187,192,1,0,0,0,188,189,3,91,45,0,189,190,3,91,45,0,190,192, - 1,0,0,0,191,176,1,0,0,0,191,179,1,0,0,0,191,182,1,0,0,0,191,185,1,0,0,0, - 191,188,1,0,0,0,192,26,1,0,0,0,193,194,3,101,50,0,194,195,3,113,56,0,195, - 196,3,101,50,0,196,197,3,95,47,0,197,198,3,87,43,0,198,199,3,73,36,0,199, - 200,3,111,55,0,200,723,1,0,0,0,201,202,3,89,44,0,202,203,3,107,53,0,203, - 204,3,101,50,0,204,205,5,95,0,0,205,206,3,81,40,0,206,207,3,89,44,0,207, - 208,3,65,32,0,208,209,3,77,38,0,209,210,3,73,36,0,210,723,1,0,0,0,211,212, - 3,81,40,0,212,213,5,47,0,0,213,214,3,93,46,0,214,215,5,95,0,0,215,216,3, - 101,50,0,216,217,3,105,52,0,217,218,3,67,33,0,218,219,3,101,50,0,219,220, - 3,113,56,0,220,221,3,101,50,0,221,222,3,103,51,0,222,223,3,73,36,0,223, - 224,3,89,44,0,224,723,1,0,0,0,225,226,3,65,32,0,226,227,3,87,43,0,227,228, - 3,87,43,0,228,229,5,95,0,0,229,230,3,101,50,0,230,231,3,101,50,0,231,232, - 3,81,40,0,232,233,3,71,35,0,233,234,3,101,50,0,234,723,1,0,0,0,235,236, - 3,65,32,0,236,237,3,87,43,0,237,238,3,87,43,0,238,239,5,95,0,0,239,240, - 3,87,43,0,240,241,3,69,34,0,241,242,3,105,52,0,242,243,3,101,50,0,243,723, - 1,0,0,0,244,245,3,65,32,0,245,246,3,87,43,0,246,247,3,87,43,0,247,248,5, - 95,0,0,248,249,3,69,34,0,249,250,3,79,39,0,250,251,3,65,32,0,251,252,3, - 91,45,0,252,253,3,91,45,0,253,254,3,73,36,0,254,255,3,87,43,0,255,256,3, - 101,50,0,256,723,1,0,0,0,257,258,3,65,32,0,258,259,3,87,43,0,259,260,3, - 87,43,0,260,261,5,95,0,0,261,262,3,107,53,0,262,263,3,93,46,0,263,264,3, - 87,43,0,264,265,3,105,52,0,265,266,3,89,44,0,266,267,3,73,36,0,267,268, - 3,101,50,0,268,723,1,0,0,0,269,270,3,69,34,0,270,271,3,99,49,0,271,272, - 3,113,56,0,272,273,3,95,47,0,273,274,3,103,51,0,274,275,3,93,46,0,275,723, - 1,0,0,0,276,277,3,95,47,0,277,278,3,69,34,0,278,279,3,81,40,0,279,280,3, - 73,36,0,280,723,1,0,0,0,281,282,3,101,50,0,282,283,3,69,34,0,283,284,3, - 89,44,0,284,723,1,0,0,0,285,286,3,115,57,0,286,287,3,75,37,0,287,288,3, - 101,50,0,288,723,1,0,0,0,289,290,3,65,32,0,290,291,3,77,38,0,291,292,3, - 77,38,0,292,293,3,99,49,0,293,294,3,73,36,0,294,295,3,77,38,0,295,296,3, - 65,32,0,296,297,3,103,51,0,297,298,3,73,36,0,298,723,1,0,0,0,299,300,3, - 95,47,0,300,301,3,99,49,0,301,302,3,93,46,0,302,303,3,69,34,0,303,304,3, - 73,36,0,304,305,3,101,50,0,305,306,3,101,50,0,306,307,3,93,46,0,307,308, - 3,99,49,0,308,723,1,0,0,0,309,310,3,101,50,0,310,311,3,103,51,0,311,312, - 3,93,46,0,312,313,3,99,49,0,313,314,3,65,32,0,314,315,3,77,38,0,315,316, - 3,73,36,0,316,723,1,0,0,0,317,318,3,65,32,0,318,319,3,105,52,0,319,320, - 3,111,55,0,320,321,3,81,40,0,321,322,3,87,43,0,322,323,3,81,40,0,323,324, - 3,65,32,0,324,325,3,99,49,0,325,326,3,113,56,0,326,327,5,95,0,0,327,328, - 3,101,50,0,328,329,3,103,51,0,329,330,3,93,46,0,330,331,3,99,49,0,331,332, - 3,65,32,0,332,333,3,77,38,0,333,334,3,73,36,0,334,723,1,0,0,0,335,336,3, - 69,34,0,336,337,3,73,36,0,337,338,3,91,45,0,338,339,3,103,51,0,339,340, - 3,99,49,0,340,341,3,65,32,0,341,342,3,87,43,0,342,343,5,95,0,0,343,344, - 3,101,50,0,344,345,3,103,51,0,345,346,3,93,46,0,346,347,3,99,49,0,347,348, - 3,65,32,0,348,349,3,77,38,0,349,350,3,73,36,0,350,723,1,0,0,0,351,352,3, - 69,34,0,352,353,3,101,50,0,353,354,3,65,32,0,354,723,1,0,0,0,355,356,3, - 101,50,0,356,357,3,97,48,0,357,358,3,65,32,0,358,723,1,0,0,0,359,360,3, - 73,36,0,360,361,3,69,34,0,361,362,3,101,50,0,362,363,3,65,32,0,363,723, - 1,0,0,0,364,365,3,73,36,0,365,366,3,91,45,0,366,367,3,97,48,0,367,368,3, - 105,52,0,368,369,3,73,36,0,369,370,3,105,52,0,370,371,3,73,36,0,371,723, - 1,0,0,0,372,373,3,93,46,0,373,374,3,95,47,0,374,375,3,73,36,0,375,376,3, - 99,49,0,376,377,3,65,32,0,377,378,3,103,51,0,378,379,3,93,46,0,379,380, - 3,99,49,0,380,723,1,0,0,0,381,382,3,101,50,0,382,383,3,109,54,0,383,384, - 5,95,0,0,384,385,3,101,50,0,385,386,3,105,52,0,386,387,3,67,33,0,387,388, - 3,101,50,0,388,389,3,113,56,0,389,390,3,101,50,0,390,391,3,103,51,0,391, - 392,3,73,36,0,392,393,3,89,44,0,393,394,3,101,50,0,394,723,1,0,0,0,395, - 396,3,83,41,0,396,397,3,73,36,0,397,398,3,101,50,0,398,723,1,0,0,0,399, - 400,3,111,55,0,400,401,3,69,34,0,401,402,3,75,37,0,402,723,1,0,0,0,403, - 404,3,79,39,0,404,405,3,101,50,0,405,406,3,89,44,0,406,723,1,0,0,0,407, - 408,3,69,34,0,408,409,3,95,47,0,409,410,3,69,34,0,410,723,1,0,0,0,411,412, - 3,87,43,0,412,413,3,95,47,0,413,414,3,65,32,0,414,415,3,99,49,0,415,723, - 1,0,0,0,416,417,3,69,34,0,417,418,3,93,46,0,418,419,3,105,52,0,419,420, - 3,95,47,0,420,421,3,87,43,0,421,422,3,81,40,0,422,423,3,91,45,0,423,424, - 3,77,38,0,424,425,5,95,0,0,425,426,3,75,37,0,426,427,3,65,32,0,427,428, - 3,69,34,0,428,429,3,81,40,0,429,430,3,87,43,0,430,431,3,81,40,0,431,432, - 3,103,51,0,432,433,3,113,56,0,433,723,1,0,0,0,434,435,3,69,34,0,435,436, - 3,75,37,0,436,437,5,95,0,0,437,438,3,101,50,0,438,439,3,103,51,0,439,440, - 3,99,49,0,440,441,3,105,52,0,441,442,3,69,34,0,442,443,3,103,51,0,443,444, - 3,105,52,0,444,445,3,99,49,0,445,446,3,73,36,0,446,723,1,0,0,0,447,448, - 3,109,54,0,448,449,3,87,43,0,449,450,3,89,44,0,450,451,5,95,0,0,451,452, - 3,65,32,0,452,453,3,69,34,0,453,454,3,103,51,0,454,455,3,81,40,0,455,456, - 3,107,53,0,456,457,3,73,36,0,457,458,5,95,0,0,458,459,3,95,47,0,459,460, - 3,93,46,0,460,461,3,87,43,0,461,462,3,81,40,0,462,463,3,69,34,0,463,464, - 3,113,56,0,464,723,1,0,0,0,465,466,3,65,32,0,466,467,3,87,43,0,467,468, - 3,87,43,0,468,469,5,95,0,0,469,470,3,109,54,0,470,471,3,87,43,0,471,472, - 3,89,44,0,472,473,5,95,0,0,473,474,3,109,54,0,474,475,3,93,46,0,475,476, - 3,99,49,0,476,477,3,85,42,0,477,478,3,87,43,0,478,479,3,93,46,0,479,480, - 3,65,32,0,480,481,3,71,35,0,481,482,3,101,50,0,482,723,1,0,0,0,483,484, - 3,109,54,0,484,485,3,87,43,0,485,486,3,89,44,0,486,487,5,95,0,0,487,488, - 3,109,54,0,488,489,3,93,46,0,489,490,3,99,49,0,490,491,3,85,42,0,491,492, - 3,87,43,0,492,493,3,93,46,0,493,494,3,65,32,0,494,495,3,71,35,0,495,723, - 1,0,0,0,496,497,3,109,54,0,497,498,3,87,43,0,498,499,3,89,44,0,499,500, - 5,95,0,0,500,501,3,101,50,0,501,502,3,73,36,0,502,503,3,99,49,0,503,504, - 3,107,53,0,504,505,3,81,40,0,505,506,3,69,34,0,506,507,3,73,36,0,507,508, - 5,95,0,0,508,509,3,69,34,0,509,510,3,87,43,0,510,511,3,65,32,0,511,512, - 3,101,50,0,512,513,3,101,50,0,513,723,1,0,0,0,514,515,3,109,54,0,515,516, - 3,87,43,0,516,517,3,89,44,0,517,518,5,95,0,0,518,519,3,101,50,0,519,520, - 3,69,34,0,520,521,5,95,0,0,521,522,3,95,47,0,522,523,3,73,36,0,523,524, - 3,99,49,0,524,525,3,81,40,0,525,526,3,93,46,0,526,527,3,71,35,0,527,723, - 1,0,0,0,528,529,3,65,32,0,529,530,3,87,43,0,530,531,3,87,43,0,531,532,5, - 95,0,0,532,533,3,109,54,0,533,534,3,87,43,0,534,535,3,89,44,0,535,536,5, - 95,0,0,536,537,3,99,49,0,537,538,3,73,36,0,538,539,3,95,47,0,539,540,3, - 93,46,0,540,541,3,99,49,0,541,542,3,103,51,0,542,543,5,95,0,0,543,544,3, - 69,34,0,544,545,3,87,43,0,545,546,3,65,32,0,546,547,3,101,50,0,547,548, - 3,101,50,0,548,549,3,73,36,0,549,550,3,101,50,0,550,723,1,0,0,0,551,552, - 3,109,54,0,552,553,3,87,43,0,553,554,3,89,44,0,554,555,5,95,0,0,555,556, - 3,99,49,0,556,557,3,73,36,0,557,558,3,95,47,0,558,559,3,93,46,0,559,560, - 3,99,49,0,560,561,3,103,51,0,561,562,5,95,0,0,562,563,3,69,34,0,563,564, - 3,87,43,0,564,565,3,65,32,0,565,566,3,101,50,0,566,567,3,101,50,0,567,723, - 1,0,0,0,568,569,3,109,54,0,569,570,3,87,43,0,570,571,3,89,44,0,571,572, - 5,95,0,0,572,573,3,99,49,0,573,574,3,69,34,0,574,575,5,95,0,0,575,576,3, - 95,47,0,576,577,3,73,36,0,577,578,3,99,49,0,578,579,3,81,40,0,579,580,3, - 93,46,0,580,581,3,71,35,0,581,723,1,0,0,0,582,583,3,65,32,0,583,584,3,87, - 43,0,584,585,3,87,43,0,585,586,5,95,0,0,586,587,3,109,54,0,587,588,3,87, - 43,0,588,589,3,89,44,0,589,590,5,95,0,0,590,591,3,99,49,0,591,592,3,73, - 36,0,592,593,3,101,50,0,593,594,3,93,46,0,594,595,3,105,52,0,595,596,3, - 99,49,0,596,597,3,69,34,0,597,598,3,73,36,0,598,599,5,95,0,0,599,600,3, - 77,38,0,600,601,3,99,49,0,601,602,3,93,46,0,602,603,3,105,52,0,603,604, - 3,95,47,0,604,605,3,101,50,0,605,723,1,0,0,0,606,607,3,109,54,0,607,608, - 3,87,43,0,608,609,3,89,44,0,609,610,5,95,0,0,610,611,3,99,49,0,611,612, - 3,73,36,0,612,613,3,101,50,0,613,614,3,93,46,0,614,615,3,105,52,0,615,616, - 3,99,49,0,616,617,3,69,34,0,617,618,3,73,36,0,618,619,5,95,0,0,619,620, - 3,77,38,0,620,621,3,99,49,0,621,622,3,93,46,0,622,623,3,105,52,0,623,624, - 3,95,47,0,624,723,1,0,0,0,625,626,3,69,34,0,626,627,3,79,39,0,627,628,3, - 65,32,0,628,629,3,91,45,0,629,630,3,91,45,0,630,631,3,73,36,0,631,632,3, - 87,43,0,632,633,5,95,0,0,633,634,3,95,47,0,634,635,3,65,32,0,635,636,3, - 103,51,0,636,637,3,79,39,0,637,723,1,0,0,0,638,639,3,87,43,0,639,640,3, - 93,46,0,640,641,3,77,38,0,641,642,3,81,40,0,642,643,3,69,34,0,643,644,3, - 65,32,0,644,645,3,87,43,0,645,646,5,95,0,0,646,647,3,69,34,0,647,648,3, - 93,46,0,648,649,3,91,45,0,649,650,3,103,51,0,650,651,3,99,49,0,651,652, - 3,93,46,0,652,653,3,87,43,0,653,654,5,95,0,0,654,655,3,105,52,0,655,656, - 3,91,45,0,656,657,3,81,40,0,657,658,3,103,51,0,658,723,1,0,0,0,659,660, - 3,101,50,0,660,661,3,101,50,0,661,662,3,81,40,0,662,663,3,71,35,0,663,723, - 1,0,0,0,664,665,3,107,53,0,665,666,3,93,46,0,666,667,3,87,43,0,667,668, - 3,105,52,0,668,669,3,89,44,0,669,670,3,73,36,0,670,723,1,0,0,0,671,672, - 3,69,34,0,672,673,3,99,49,0,673,674,3,113,56,0,674,675,3,95,47,0,675,676, - 3,103,51,0,676,677,3,93,46,0,677,678,5,95,0,0,678,679,3,69,34,0,679,680, - 3,65,32,0,680,681,3,99,49,0,681,682,3,71,35,0,682,723,1,0,0,0,683,684,3, - 95,47,0,684,685,3,69,34,0,685,686,3,81,40,0,686,687,3,73,36,0,687,688,5, - 95,0,0,688,689,3,75,37,0,689,690,3,105,52,0,690,691,3,91,45,0,691,692,3, - 69,34,0,692,693,3,103,51,0,693,694,3,81,40,0,694,695,3,93,46,0,695,696, - 3,91,45,0,696,723,1,0,0,0,697,698,3,101,50,0,698,699,3,69,34,0,699,700, - 3,89,44,0,700,701,5,95,0,0,701,702,3,69,34,0,702,703,3,65,32,0,703,704, - 3,99,49,0,704,705,3,71,35,0,705,723,1,0,0,0,706,707,3,73,36,0,707,708,3, - 101,50,0,708,709,3,97,48,0,709,710,3,65,32,0,710,723,1,0,0,0,711,712,3, - 75,37,0,712,713,3,81,40,0,713,714,3,87,43,0,714,715,3,73,36,0,715,716,3, - 101,50,0,716,717,3,113,56,0,717,718,3,101,50,0,718,719,3,103,51,0,719,720, - 3,73,36,0,720,721,3,89,44,0,721,723,1,0,0,0,722,193,1,0,0,0,722,201,1,0, - 0,0,722,211,1,0,0,0,722,225,1,0,0,0,722,235,1,0,0,0,722,244,1,0,0,0,722, - 257,1,0,0,0,722,269,1,0,0,0,722,276,1,0,0,0,722,281,1,0,0,0,722,285,1,0, - 0,0,722,289,1,0,0,0,722,299,1,0,0,0,722,309,1,0,0,0,722,317,1,0,0,0,722, - 335,1,0,0,0,722,351,1,0,0,0,722,355,1,0,0,0,722,359,1,0,0,0,722,364,1,0, - 0,0,722,372,1,0,0,0,722,381,1,0,0,0,722,395,1,0,0,0,722,399,1,0,0,0,722, - 403,1,0,0,0,722,407,1,0,0,0,722,411,1,0,0,0,722,416,1,0,0,0,722,434,1,0, - 0,0,722,447,1,0,0,0,722,465,1,0,0,0,722,483,1,0,0,0,722,496,1,0,0,0,722, - 514,1,0,0,0,722,528,1,0,0,0,722,551,1,0,0,0,722,568,1,0,0,0,722,582,1,0, - 0,0,722,606,1,0,0,0,722,625,1,0,0,0,722,638,1,0,0,0,722,659,1,0,0,0,722, - 664,1,0,0,0,722,671,1,0,0,0,722,683,1,0,0,0,722,697,1,0,0,0,722,706,1,0, - 0,0,722,711,1,0,0,0,723,28,1,0,0,0,724,731,3,77,38,0,725,731,3,109,54,0, - 726,731,3,101,50,0,727,731,3,95,47,0,728,731,3,99,49,0,729,731,3,83,41, - 0,730,724,1,0,0,0,730,725,1,0,0,0,730,726,1,0,0,0,730,727,1,0,0,0,730,728, - 1,0,0,0,730,729,1,0,0,0,731,30,1,0,0,0,732,734,7,0,0,0,733,732,1,0,0,0, - 734,735,1,0,0,0,735,733,1,0,0,0,735,736,1,0,0,0,736,32,1,0,0,0,737,738, - 3,31,15,0,738,739,3,41,20,0,739,740,3,31,15,0,740,34,1,0,0,0,741,743,7, - 1,0,0,742,741,1,0,0,0,743,744,1,0,0,0,744,742,1,0,0,0,744,745,1,0,0,0,745, - 36,1,0,0,0,746,748,3,59,29,0,747,746,1,0,0,0,748,749,1,0,0,0,749,747,1, - 0,0,0,749,750,1,0,0,0,750,38,1,0,0,0,751,755,3,55,27,0,752,754,3,61,30, - 0,753,752,1,0,0,0,754,757,1,0,0,0,755,753,1,0,0,0,755,756,1,0,0,0,756,758, - 1,0,0,0,757,755,1,0,0,0,758,759,3,55,27,0,759,770,1,0,0,0,760,764,3,57, - 28,0,761,763,3,63,31,0,762,761,1,0,0,0,763,766,1,0,0,0,764,762,1,0,0,0, - 764,765,1,0,0,0,765,767,1,0,0,0,766,764,1,0,0,0,767,768,3,57,28,0,768,770, - 1,0,0,0,769,751,1,0,0,0,769,760,1,0,0,0,770,40,1,0,0,0,771,772,5,46,0,0, - 772,42,1,0,0,0,773,774,5,59,0,0,774,44,1,0,0,0,775,776,5,44,0,0,776,46, - 1,0,0,0,777,778,5,123,0,0,778,48,1,0,0,0,779,780,5,125,0,0,780,50,1,0,0, - 0,781,782,5,61,0,0,782,52,1,0,0,0,783,785,7,2,0,0,784,783,1,0,0,0,785,786, - 1,0,0,0,786,784,1,0,0,0,786,787,1,0,0,0,787,54,1,0,0,0,788,789,5,39,0,0, - 789,56,1,0,0,0,790,791,5,34,0,0,791,58,1,0,0,0,792,793,8,3,0,0,793,60,1, - 0,0,0,794,795,8,4,0,0,795,62,1,0,0,0,796,797,8,5,0,0,797,64,1,0,0,0,798, - 799,7,6,0,0,799,66,1,0,0,0,800,801,7,7,0,0,801,68,1,0,0,0,802,803,7,8,0, - 0,803,70,1,0,0,0,804,805,7,9,0,0,805,72,1,0,0,0,806,807,7,10,0,0,807,74, - 1,0,0,0,808,809,7,11,0,0,809,76,1,0,0,0,810,811,7,12,0,0,811,78,1,0,0,0, - 812,813,7,13,0,0,813,80,1,0,0,0,814,815,7,14,0,0,815,82,1,0,0,0,816,817, - 7,15,0,0,817,84,1,0,0,0,818,819,7,16,0,0,819,86,1,0,0,0,820,821,7,17,0, - 0,821,88,1,0,0,0,822,823,7,18,0,0,823,90,1,0,0,0,824,825,7,19,0,0,825,92, - 1,0,0,0,826,827,7,20,0,0,827,94,1,0,0,0,828,829,7,21,0,0,829,96,1,0,0,0, - 830,831,7,22,0,0,831,98,1,0,0,0,832,833,7,23,0,0,833,100,1,0,0,0,834,835, - 7,24,0,0,835,102,1,0,0,0,836,837,7,25,0,0,837,104,1,0,0,0,838,839,7,26, - 0,0,839,106,1,0,0,0,840,841,7,27,0,0,841,108,1,0,0,0,842,843,7,28,0,0,843, - 110,1,0,0,0,844,845,7,29,0,0,845,112,1,0,0,0,846,847,7,30,0,0,847,114,1, - 0,0,0,848,849,7,31,0,0,849,116,1,0,0,0,11,0,191,722,730,735,744,749,755, - 764,769,786,0]; + 53,1,0,0,0,0,55,1,0,0,0,0,57,1,0,0,0,1,125,1,0,0,0,3,132,1,0,0,0,5,147, + 1,0,0,0,7,161,1,0,0,0,9,171,1,0,0,0,11,177,1,0,0,0,13,181,1,0,0,0,15,186, + 1,0,0,0,17,193,1,0,0,0,19,197,1,0,0,0,21,200,1,0,0,0,23,203,1,0,0,0,25, + 206,1,0,0,0,27,209,1,0,0,0,29,228,1,0,0,0,31,759,1,0,0,0,33,767,1,0,0,0, + 35,770,1,0,0,0,37,774,1,0,0,0,39,779,1,0,0,0,41,784,1,0,0,0,43,806,1,0, + 0,0,45,808,1,0,0,0,47,810,1,0,0,0,49,812,1,0,0,0,51,814,1,0,0,0,53,816, + 1,0,0,0,55,818,1,0,0,0,57,821,1,0,0,0,59,825,1,0,0,0,61,827,1,0,0,0,63, + 829,1,0,0,0,65,831,1,0,0,0,67,833,1,0,0,0,69,835,1,0,0,0,71,837,1,0,0,0, + 73,839,1,0,0,0,75,841,1,0,0,0,77,843,1,0,0,0,79,845,1,0,0,0,81,847,1,0, + 0,0,83,849,1,0,0,0,85,851,1,0,0,0,87,853,1,0,0,0,89,855,1,0,0,0,91,857, + 1,0,0,0,93,859,1,0,0,0,95,861,1,0,0,0,97,863,1,0,0,0,99,865,1,0,0,0,101, + 867,1,0,0,0,103,869,1,0,0,0,105,871,1,0,0,0,107,873,1,0,0,0,109,875,1,0, + 0,0,111,877,1,0,0,0,113,879,1,0,0,0,115,881,1,0,0,0,117,883,1,0,0,0,119, + 885,1,0,0,0,121,887,1,0,0,0,123,889,1,0,0,0,125,126,3,107,53,0,126,127, + 3,81,40,0,127,128,3,103,51,0,128,129,3,101,50,0,129,130,3,107,53,0,130, + 131,3,111,55,0,131,2,1,0,0,0,132,133,3,107,53,0,133,134,3,81,40,0,134,135, + 3,103,51,0,135,136,3,101,50,0,136,137,3,107,53,0,137,138,3,111,55,0,138, + 139,3,63,31,0,139,140,3,77,38,0,140,141,3,73,36,0,141,142,3,103,51,0,142, + 143,3,111,55,0,143,144,3,89,44,0,144,145,3,101,50,0,145,146,3,99,49,0,146, + 4,1,0,0,0,147,148,3,107,53,0,148,149,3,81,40,0,149,150,3,103,51,0,150,151, + 3,101,50,0,151,152,3,107,53,0,152,153,3,111,55,0,153,154,3,63,31,0,154, + 155,3,75,37,0,155,156,3,73,36,0,156,157,3,99,49,0,157,158,3,99,49,0,158, + 159,3,81,40,0,159,160,3,107,53,0,160,6,1,0,0,0,161,162,3,117,58,0,162,163, + 3,101,50,0,163,164,3,107,53,0,164,165,3,93,46,0,165,166,3,109,54,0,166, + 167,3,77,38,0,167,168,3,101,50,0,168,169,3,103,51,0,169,170,3,81,40,0,170, + 8,1,0,0,0,171,172,3,107,53,0,172,173,3,73,36,0,173,174,3,99,49,0,174,175, + 3,85,42,0,175,176,3,81,40,0,176,10,1,0,0,0,177,178,3,113,56,0,178,179,3, + 95,47,0,179,180,3,105,52,0,180,12,1,0,0,0,181,182,3,99,49,0,182,183,3,73, + 36,0,183,184,3,97,48,0,184,185,3,81,40,0,185,14,1,0,0,0,186,187,3,83,41, + 0,187,188,3,89,44,0,188,189,3,95,47,0,189,190,3,111,55,0,190,191,3,81,40, + 0,191,192,3,107,53,0,192,16,1,0,0,0,193,194,3,103,51,0,194,195,3,73,36, + 0,195,196,3,111,55,0,196,18,1,0,0,0,197,198,3,95,47,0,198,199,3,75,37,0, + 199,20,1,0,0,0,200,201,3,113,56,0,201,202,3,75,37,0,202,22,1,0,0,0,203, + 204,3,87,43,0,204,205,3,89,44,0,205,24,1,0,0,0,206,207,3,95,47,0,207,208, + 3,101,50,0,208,26,1,0,0,0,209,210,3,101,50,0,210,211,3,107,53,0,211,212, + 3,79,39,0,212,28,1,0,0,0,213,214,3,99,49,0,214,215,3,73,36,0,215,229,1, + 0,0,0,216,217,3,99,49,0,217,218,3,79,39,0,218,229,1,0,0,0,219,220,3,115, + 57,0,220,221,3,73,36,0,221,229,1,0,0,0,222,223,3,115,57,0,223,224,3,79, + 39,0,224,229,1,0,0,0,225,226,3,99,49,0,226,227,3,99,49,0,227,229,1,0,0, + 0,228,213,1,0,0,0,228,216,1,0,0,0,228,219,1,0,0,0,228,222,1,0,0,0,228,225, + 1,0,0,0,229,30,1,0,0,0,230,231,3,109,54,0,231,232,3,121,60,0,232,233,3, + 109,54,0,233,234,3,103,51,0,234,235,3,95,47,0,235,236,3,81,40,0,236,237, + 3,119,59,0,237,760,1,0,0,0,238,239,3,97,48,0,239,240,3,115,57,0,240,241, + 3,109,54,0,241,242,5,95,0,0,242,243,3,89,44,0,243,244,3,97,48,0,244,245, + 3,73,36,0,245,246,3,85,42,0,246,247,3,81,40,0,247,760,1,0,0,0,248,249,3, + 89,44,0,249,250,5,47,0,0,250,251,3,101,50,0,251,252,5,95,0,0,252,253,3, + 109,54,0,253,254,3,113,56,0,254,255,3,75,37,0,255,256,3,109,54,0,256,257, + 3,121,60,0,257,258,3,109,54,0,258,259,3,111,55,0,259,260,3,81,40,0,260, + 261,3,97,48,0,261,760,1,0,0,0,262,263,3,73,36,0,263,264,3,95,47,0,264,265, + 3,95,47,0,265,266,5,95,0,0,266,267,3,109,54,0,267,268,3,109,54,0,268,269, + 3,89,44,0,269,270,3,79,39,0,270,271,3,109,54,0,271,760,1,0,0,0,272,273, + 3,73,36,0,273,274,3,95,47,0,274,275,3,95,47,0,275,276,5,95,0,0,276,277, + 3,95,47,0,277,278,3,77,38,0,278,279,3,113,56,0,279,280,3,109,54,0,280,760, + 1,0,0,0,281,282,3,73,36,0,282,283,3,95,47,0,283,284,3,95,47,0,284,285,5, + 95,0,0,285,286,3,77,38,0,286,287,3,87,43,0,287,288,3,73,36,0,288,289,3, + 99,49,0,289,290,3,99,49,0,290,291,3,81,40,0,291,292,3,95,47,0,292,293,3, + 109,54,0,293,760,1,0,0,0,294,295,3,73,36,0,295,296,3,95,47,0,296,297,3, + 95,47,0,297,298,5,95,0,0,298,299,3,115,57,0,299,300,3,101,50,0,300,301, + 3,95,47,0,301,302,3,113,56,0,302,303,3,97,48,0,303,304,3,81,40,0,304,305, + 3,109,54,0,305,760,1,0,0,0,306,307,3,77,38,0,307,308,3,107,53,0,308,309, + 3,121,60,0,309,310,3,103,51,0,310,311,3,111,55,0,311,312,3,101,50,0,312, + 760,1,0,0,0,313,314,3,103,51,0,314,315,3,77,38,0,315,316,3,89,44,0,316, + 317,3,81,40,0,317,760,1,0,0,0,318,319,3,109,54,0,319,320,3,77,38,0,320, + 321,3,97,48,0,321,760,1,0,0,0,322,323,3,123,61,0,323,324,3,83,41,0,324, + 325,3,109,54,0,325,760,1,0,0,0,326,327,3,73,36,0,327,328,3,85,42,0,328, + 329,3,85,42,0,329,330,3,107,53,0,330,331,3,81,40,0,331,332,3,85,42,0,332, + 333,3,73,36,0,333,334,3,111,55,0,334,335,3,81,40,0,335,760,1,0,0,0,336, + 337,3,103,51,0,337,338,3,107,53,0,338,339,3,101,50,0,339,340,3,77,38,0, + 340,341,3,81,40,0,341,342,3,109,54,0,342,343,3,109,54,0,343,344,3,101,50, + 0,344,345,3,107,53,0,345,760,1,0,0,0,346,347,3,109,54,0,347,348,3,111,55, + 0,348,349,3,101,50,0,349,350,3,107,53,0,350,351,3,73,36,0,351,352,3,85, + 42,0,352,353,3,81,40,0,353,760,1,0,0,0,354,355,3,73,36,0,355,356,3,113, + 56,0,356,357,3,119,59,0,357,358,3,89,44,0,358,359,3,95,47,0,359,360,3,89, + 44,0,360,361,3,73,36,0,361,362,3,107,53,0,362,363,3,121,60,0,363,364,5, + 95,0,0,364,365,3,109,54,0,365,366,3,111,55,0,366,367,3,101,50,0,367,368, + 3,107,53,0,368,369,3,73,36,0,369,370,3,85,42,0,370,371,3,81,40,0,371,760, + 1,0,0,0,372,373,3,77,38,0,373,374,3,81,40,0,374,375,3,99,49,0,375,376,3, + 111,55,0,376,377,3,107,53,0,377,378,3,73,36,0,378,379,3,95,47,0,379,380, + 5,95,0,0,380,381,3,109,54,0,381,382,3,111,55,0,382,383,3,101,50,0,383,384, + 3,107,53,0,384,385,3,73,36,0,385,386,3,85,42,0,386,387,3,81,40,0,387,760, + 1,0,0,0,388,389,3,77,38,0,389,390,3,109,54,0,390,391,3,73,36,0,391,760, + 1,0,0,0,392,393,3,109,54,0,393,394,3,105,52,0,394,395,3,73,36,0,395,760, + 1,0,0,0,396,397,3,81,40,0,397,398,3,77,38,0,398,399,3,109,54,0,399,400, + 3,73,36,0,400,760,1,0,0,0,401,402,3,81,40,0,402,403,3,99,49,0,403,404,3, + 105,52,0,404,405,3,113,56,0,405,406,3,81,40,0,406,407,3,113,56,0,407,408, + 3,81,40,0,408,760,1,0,0,0,409,410,3,101,50,0,410,411,3,103,51,0,411,412, + 3,81,40,0,412,413,3,107,53,0,413,414,3,73,36,0,414,415,3,111,55,0,415,416, + 3,101,50,0,416,417,3,107,53,0,417,760,1,0,0,0,418,419,3,109,54,0,419,420, + 3,117,58,0,420,421,5,95,0,0,421,422,3,109,54,0,422,423,3,113,56,0,423,424, + 3,75,37,0,424,425,3,109,54,0,425,426,3,121,60,0,426,427,3,109,54,0,427, + 428,3,111,55,0,428,429,3,81,40,0,429,430,3,97,48,0,430,431,3,109,54,0,431, + 760,1,0,0,0,432,433,3,91,45,0,433,434,3,81,40,0,434,435,3,109,54,0,435, + 760,1,0,0,0,436,437,3,119,59,0,437,438,3,77,38,0,438,439,3,83,41,0,439, + 760,1,0,0,0,440,441,3,87,43,0,441,442,3,109,54,0,442,443,3,97,48,0,443, + 760,1,0,0,0,444,445,3,77,38,0,445,446,3,103,51,0,446,447,3,77,38,0,447, + 760,1,0,0,0,448,449,3,95,47,0,449,450,3,103,51,0,450,451,3,73,36,0,451, + 452,3,107,53,0,452,760,1,0,0,0,453,454,3,77,38,0,454,455,3,101,50,0,455, + 456,3,113,56,0,456,457,3,103,51,0,457,458,3,95,47,0,458,459,3,89,44,0,459, + 460,3,99,49,0,460,461,3,85,42,0,461,462,5,95,0,0,462,463,3,83,41,0,463, + 464,3,73,36,0,464,465,3,77,38,0,465,466,3,89,44,0,466,467,3,95,47,0,467, + 468,3,89,44,0,468,469,3,111,55,0,469,470,3,121,60,0,470,760,1,0,0,0,471, + 472,3,77,38,0,472,473,3,83,41,0,473,474,5,95,0,0,474,475,3,109,54,0,475, + 476,3,111,55,0,476,477,3,107,53,0,477,478,3,113,56,0,478,479,3,77,38,0, + 479,480,3,111,55,0,480,481,3,113,56,0,481,482,3,107,53,0,482,483,3,81,40, + 0,483,760,1,0,0,0,484,485,3,117,58,0,485,486,3,95,47,0,486,487,3,97,48, + 0,487,488,5,95,0,0,488,489,3,73,36,0,489,490,3,77,38,0,490,491,3,111,55, + 0,491,492,3,89,44,0,492,493,3,115,57,0,493,494,3,81,40,0,494,495,5,95,0, + 0,495,496,3,103,51,0,496,497,3,101,50,0,497,498,3,95,47,0,498,499,3,89, + 44,0,499,500,3,77,38,0,500,501,3,121,60,0,501,760,1,0,0,0,502,503,3,73, + 36,0,503,504,3,95,47,0,504,505,3,95,47,0,505,506,5,95,0,0,506,507,3,117, + 58,0,507,508,3,95,47,0,508,509,3,97,48,0,509,510,5,95,0,0,510,511,3,117, + 58,0,511,512,3,101,50,0,512,513,3,107,53,0,513,514,3,93,46,0,514,515,3, + 95,47,0,515,516,3,101,50,0,516,517,3,73,36,0,517,518,3,79,39,0,518,519, + 3,109,54,0,519,760,1,0,0,0,520,521,3,117,58,0,521,522,3,95,47,0,522,523, + 3,97,48,0,523,524,5,95,0,0,524,525,3,117,58,0,525,526,3,101,50,0,526,527, + 3,107,53,0,527,528,3,93,46,0,528,529,3,95,47,0,529,530,3,101,50,0,530,531, + 3,73,36,0,531,532,3,79,39,0,532,760,1,0,0,0,533,534,3,117,58,0,534,535, + 3,95,47,0,535,536,3,97,48,0,536,537,5,95,0,0,537,538,3,109,54,0,538,539, + 3,81,40,0,539,540,3,107,53,0,540,541,3,115,57,0,541,542,3,89,44,0,542,543, + 3,77,38,0,543,544,3,81,40,0,544,545,5,95,0,0,545,546,3,77,38,0,546,547, + 3,95,47,0,547,548,3,73,36,0,548,549,3,109,54,0,549,550,3,109,54,0,550,760, + 1,0,0,0,551,552,3,117,58,0,552,553,3,95,47,0,553,554,3,97,48,0,554,555, + 5,95,0,0,555,556,3,109,54,0,556,557,3,77,38,0,557,558,5,95,0,0,558,559, + 3,103,51,0,559,560,3,81,40,0,560,561,3,107,53,0,561,562,3,89,44,0,562,563, + 3,101,50,0,563,564,3,79,39,0,564,760,1,0,0,0,565,566,3,73,36,0,566,567, + 3,95,47,0,567,568,3,95,47,0,568,569,5,95,0,0,569,570,3,117,58,0,570,571, + 3,95,47,0,571,572,3,97,48,0,572,573,5,95,0,0,573,574,3,107,53,0,574,575, + 3,81,40,0,575,576,3,103,51,0,576,577,3,101,50,0,577,578,3,107,53,0,578, + 579,3,111,55,0,579,580,5,95,0,0,580,581,3,77,38,0,581,582,3,95,47,0,582, + 583,3,73,36,0,583,584,3,109,54,0,584,585,3,109,54,0,585,586,3,81,40,0,586, + 587,3,109,54,0,587,760,1,0,0,0,588,589,3,117,58,0,589,590,3,95,47,0,590, + 591,3,97,48,0,591,592,5,95,0,0,592,593,3,107,53,0,593,594,3,81,40,0,594, + 595,3,103,51,0,595,596,3,101,50,0,596,597,3,107,53,0,597,598,3,111,55,0, + 598,599,5,95,0,0,599,600,3,77,38,0,600,601,3,95,47,0,601,602,3,73,36,0, + 602,603,3,109,54,0,603,604,3,109,54,0,604,760,1,0,0,0,605,606,3,117,58, + 0,606,607,3,95,47,0,607,608,3,97,48,0,608,609,5,95,0,0,609,610,3,107,53, + 0,610,611,3,77,38,0,611,612,5,95,0,0,612,613,3,103,51,0,613,614,3,81,40, + 0,614,615,3,107,53,0,615,616,3,89,44,0,616,617,3,101,50,0,617,618,3,79, + 39,0,618,760,1,0,0,0,619,620,3,73,36,0,620,621,3,95,47,0,621,622,3,95,47, + 0,622,623,5,95,0,0,623,624,3,117,58,0,624,625,3,95,47,0,625,626,3,97,48, + 0,626,627,5,95,0,0,627,628,3,107,53,0,628,629,3,81,40,0,629,630,3,109,54, + 0,630,631,3,101,50,0,631,632,3,113,56,0,632,633,3,107,53,0,633,634,3,77, + 38,0,634,635,3,81,40,0,635,636,5,95,0,0,636,637,3,85,42,0,637,638,3,107, + 53,0,638,639,3,101,50,0,639,640,3,113,56,0,640,641,3,103,51,0,641,642,3, + 109,54,0,642,760,1,0,0,0,643,644,3,117,58,0,644,645,3,95,47,0,645,646,3, + 97,48,0,646,647,5,95,0,0,647,648,3,107,53,0,648,649,3,81,40,0,649,650,3, + 109,54,0,650,651,3,101,50,0,651,652,3,113,56,0,652,653,3,107,53,0,653,654, + 3,77,38,0,654,655,3,81,40,0,655,656,5,95,0,0,656,657,3,85,42,0,657,658, + 3,107,53,0,658,659,3,101,50,0,659,660,3,113,56,0,660,661,3,103,51,0,661, + 760,1,0,0,0,662,663,3,77,38,0,663,664,3,87,43,0,664,665,3,73,36,0,665,666, + 3,99,49,0,666,667,3,99,49,0,667,668,3,81,40,0,668,669,3,95,47,0,669,670, + 5,95,0,0,670,671,3,103,51,0,671,672,3,73,36,0,672,673,3,111,55,0,673,674, + 3,87,43,0,674,760,1,0,0,0,675,676,3,95,47,0,676,677,3,101,50,0,677,678, + 3,85,42,0,678,679,3,89,44,0,679,680,3,77,38,0,680,681,3,73,36,0,681,682, + 3,95,47,0,682,683,5,95,0,0,683,684,3,77,38,0,684,685,3,101,50,0,685,686, + 3,99,49,0,686,687,3,111,55,0,687,688,3,107,53,0,688,689,3,101,50,0,689, + 690,3,95,47,0,690,691,5,95,0,0,691,692,3,113,56,0,692,693,3,99,49,0,693, + 694,3,89,44,0,694,695,3,111,55,0,695,760,1,0,0,0,696,697,3,109,54,0,697, + 698,3,109,54,0,698,699,3,89,44,0,699,700,3,79,39,0,700,760,1,0,0,0,701, + 702,3,115,57,0,702,703,3,101,50,0,703,704,3,95,47,0,704,705,3,113,56,0, + 705,706,3,97,48,0,706,707,3,81,40,0,707,760,1,0,0,0,708,709,3,77,38,0,709, + 710,3,107,53,0,710,711,3,121,60,0,711,712,3,103,51,0,712,713,3,111,55,0, + 713,714,3,101,50,0,714,715,5,95,0,0,715,716,3,77,38,0,716,717,3,73,36,0, + 717,718,3,107,53,0,718,719,3,79,39,0,719,760,1,0,0,0,720,721,3,103,51,0, + 721,722,3,77,38,0,722,723,3,89,44,0,723,724,3,81,40,0,724,725,5,95,0,0, + 725,726,3,83,41,0,726,727,3,113,56,0,727,728,3,99,49,0,728,729,3,77,38, + 0,729,730,3,111,55,0,730,731,3,89,44,0,731,732,3,101,50,0,732,733,3,99, + 49,0,733,760,1,0,0,0,734,735,3,109,54,0,735,736,3,77,38,0,736,737,3,97, + 48,0,737,738,5,95,0,0,738,739,3,77,38,0,739,740,3,73,36,0,740,741,3,107, + 53,0,741,742,3,79,39,0,742,760,1,0,0,0,743,744,3,81,40,0,744,745,3,109, + 54,0,745,746,3,105,52,0,746,747,3,73,36,0,747,760,1,0,0,0,748,749,3,83, + 41,0,749,750,3,89,44,0,750,751,3,95,47,0,751,752,3,81,40,0,752,753,3,109, + 54,0,753,754,3,121,60,0,754,755,3,109,54,0,755,756,3,111,55,0,756,757,3, + 81,40,0,757,758,3,97,48,0,758,760,1,0,0,0,759,230,1,0,0,0,759,238,1,0,0, + 0,759,248,1,0,0,0,759,262,1,0,0,0,759,272,1,0,0,0,759,281,1,0,0,0,759,294, + 1,0,0,0,759,306,1,0,0,0,759,313,1,0,0,0,759,318,1,0,0,0,759,322,1,0,0,0, + 759,326,1,0,0,0,759,336,1,0,0,0,759,346,1,0,0,0,759,354,1,0,0,0,759,372, + 1,0,0,0,759,388,1,0,0,0,759,392,1,0,0,0,759,396,1,0,0,0,759,401,1,0,0,0, + 759,409,1,0,0,0,759,418,1,0,0,0,759,432,1,0,0,0,759,436,1,0,0,0,759,440, + 1,0,0,0,759,444,1,0,0,0,759,448,1,0,0,0,759,453,1,0,0,0,759,471,1,0,0,0, + 759,484,1,0,0,0,759,502,1,0,0,0,759,520,1,0,0,0,759,533,1,0,0,0,759,551, + 1,0,0,0,759,565,1,0,0,0,759,588,1,0,0,0,759,605,1,0,0,0,759,619,1,0,0,0, + 759,643,1,0,0,0,759,662,1,0,0,0,759,675,1,0,0,0,759,696,1,0,0,0,759,701, + 1,0,0,0,759,708,1,0,0,0,759,720,1,0,0,0,759,734,1,0,0,0,759,743,1,0,0,0, + 759,748,1,0,0,0,760,32,1,0,0,0,761,768,3,85,42,0,762,768,3,117,58,0,763, + 768,3,109,54,0,764,768,3,103,51,0,765,768,3,107,53,0,766,768,3,91,45,0, + 767,761,1,0,0,0,767,762,1,0,0,0,767,763,1,0,0,0,767,764,1,0,0,0,767,765, + 1,0,0,0,767,766,1,0,0,0,768,34,1,0,0,0,769,771,7,0,0,0,770,769,1,0,0,0, + 771,772,1,0,0,0,772,770,1,0,0,0,772,773,1,0,0,0,773,36,1,0,0,0,774,775, + 3,35,17,0,775,776,3,45,22,0,776,777,3,35,17,0,777,38,1,0,0,0,778,780,7, + 1,0,0,779,778,1,0,0,0,780,781,1,0,0,0,781,779,1,0,0,0,781,782,1,0,0,0,782, + 40,1,0,0,0,783,785,3,65,32,0,784,783,1,0,0,0,785,786,1,0,0,0,786,784,1, + 0,0,0,786,787,1,0,0,0,787,42,1,0,0,0,788,792,3,59,29,0,789,791,3,67,33, + 0,790,789,1,0,0,0,791,794,1,0,0,0,792,790,1,0,0,0,792,793,1,0,0,0,793,795, + 1,0,0,0,794,792,1,0,0,0,795,796,3,59,29,0,796,807,1,0,0,0,797,801,3,61, + 30,0,798,800,3,69,34,0,799,798,1,0,0,0,800,803,1,0,0,0,801,799,1,0,0,0, + 801,802,1,0,0,0,802,804,1,0,0,0,803,801,1,0,0,0,804,805,3,61,30,0,805,807, + 1,0,0,0,806,788,1,0,0,0,806,797,1,0,0,0,807,44,1,0,0,0,808,809,5,46,0,0, + 809,46,1,0,0,0,810,811,5,59,0,0,811,48,1,0,0,0,812,813,5,44,0,0,813,50, + 1,0,0,0,814,815,5,123,0,0,815,52,1,0,0,0,816,817,5,125,0,0,817,54,1,0,0, + 0,818,819,5,61,0,0,819,56,1,0,0,0,820,822,7,2,0,0,821,820,1,0,0,0,822,823, + 1,0,0,0,823,821,1,0,0,0,823,824,1,0,0,0,824,58,1,0,0,0,825,826,5,39,0,0, + 826,60,1,0,0,0,827,828,5,34,0,0,828,62,1,0,0,0,829,830,5,95,0,0,830,64, + 1,0,0,0,831,832,8,3,0,0,832,66,1,0,0,0,833,834,8,4,0,0,834,68,1,0,0,0,835, + 836,8,5,0,0,836,70,1,0,0,0,837,838,8,6,0,0,838,72,1,0,0,0,839,840,7,7,0, + 0,840,74,1,0,0,0,841,842,7,8,0,0,842,76,1,0,0,0,843,844,7,9,0,0,844,78, + 1,0,0,0,845,846,7,10,0,0,846,80,1,0,0,0,847,848,7,11,0,0,848,82,1,0,0,0, + 849,850,7,12,0,0,850,84,1,0,0,0,851,852,7,13,0,0,852,86,1,0,0,0,853,854, + 7,14,0,0,854,88,1,0,0,0,855,856,7,15,0,0,856,90,1,0,0,0,857,858,7,16,0, + 0,858,92,1,0,0,0,859,860,7,17,0,0,860,94,1,0,0,0,861,862,7,18,0,0,862,96, + 1,0,0,0,863,864,7,19,0,0,864,98,1,0,0,0,865,866,7,20,0,0,866,100,1,0,0, + 0,867,868,7,21,0,0,868,102,1,0,0,0,869,870,7,22,0,0,870,104,1,0,0,0,871, + 872,7,23,0,0,872,106,1,0,0,0,873,874,7,24,0,0,874,108,1,0,0,0,875,876,7, + 25,0,0,876,110,1,0,0,0,877,878,7,26,0,0,878,112,1,0,0,0,879,880,7,27,0, + 0,880,114,1,0,0,0,881,882,7,28,0,0,882,116,1,0,0,0,883,884,7,29,0,0,884, + 118,1,0,0,0,885,886,7,30,0,0,886,120,1,0,0,0,887,888,7,31,0,0,888,122,1, + 0,0,0,889,890,7,32,0,0,890,124,1,0,0,0,11,0,228,759,767,772,781,786,792, + 801,806,823,0]; private static __ATN: ATN; public static get _ATN(): ATN { diff --git a/grafana/rmf-app/src/datasource/parser/lib/RMFQueryParser.ts b/grafana/rmf-app/src/datasource/parser/lib/RMFQueryParser.ts index 553bebf8..e52d50c0 100644 --- a/grafana/rmf-app/src/datasource/parser/lib/RMFQueryParser.ts +++ b/grafana/rmf-app/src/datasource/parser/lib/RMFQueryParser.ts @@ -18,32 +18,34 @@ type int = number; export default class RMFQueryParser extends Parser { public static readonly REPORT = 1; - public static readonly WORKSCOPE = 2; - public static readonly RANGE = 3; - public static readonly ULQ = 4; - public static readonly NAME = 5; - public static readonly FILTER = 6; - public static readonly PAT = 7; - public static readonly LB = 8; - public static readonly UB = 9; - public static readonly HI = 10; - public static readonly LO = 11; - public static readonly ORD = 12; - public static readonly ORD_OPTION = 13; - public static readonly RES_TYPE = 14; - public static readonly WORKSCOPE_TYPE = 15; - public static readonly INTEGER = 16; - public static readonly DECIMAL = 17; - public static readonly IDENTIFIER = 18; - public static readonly STRING_UNQUOTED = 19; - public static readonly STRING_QUOTED = 20; - public static readonly DOT = 21; - public static readonly SEMI = 22; - public static readonly COMMA = 23; - public static readonly LBRACE = 24; - public static readonly RBRACE = 25; - public static readonly EQUAL = 26; - public static readonly WS = 27; + public static readonly REPORT_CAPTION = 2; + public static readonly REPORT_BANNER = 3; + public static readonly WORKSCOPE = 4; + public static readonly RANGE = 5; + public static readonly ULQ = 6; + public static readonly NAME = 7; + public static readonly FILTER = 8; + public static readonly PAT = 9; + public static readonly LB = 10; + public static readonly UB = 11; + public static readonly HI = 12; + public static readonly LO = 13; + public static readonly ORD = 14; + public static readonly ORD_OPTION = 15; + public static readonly RES_TYPE = 16; + public static readonly WORKSCOPE_TYPE = 17; + public static readonly INTEGER = 18; + public static readonly DECIMAL = 19; + public static readonly IDENTIFIER = 20; + public static readonly STRING_UNQUOTED = 21; + public static readonly STRING_QUOTED = 22; + public static readonly DOT = 23; + public static readonly SEMI = 24; + public static readonly COMMA = 25; + public static readonly LBRACE = 26; + public static readonly RBRACE = 27; + public static readonly EQUAL = 28; + public static readonly WS = 29; public static override readonly EOF = Token.EOF; public static readonly RULE_query = 0; public static readonly RULE_identifier = 1; @@ -77,11 +79,14 @@ export default class RMFQueryParser extends Parser { null, null, null, null, null, null, + null, null, null, "'.'", "';'", "','", "'{'", "'}'", "'='" ]; public static readonly symbolicNames: (string | null)[] = [ null, "REPORT", + "REPORT_CAPTION", + "REPORT_BANNER", "WORKSCOPE", "RANGE", "ULQ", "NAME", "FILTER", @@ -133,7 +138,7 @@ export default class RMFQueryParser extends Parser { this.state = 47; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===27) { + while (_la===29) { { { this.state = 44; @@ -146,63 +151,85 @@ export default class RMFQueryParser extends Parser { } this.state = 50; this.match(RMFQueryParser.RES_TYPE); - this.state = 53; + this.state = 57; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 1, this._ctx) ) { case 1: + { { this.state = 51; this.match(RMFQueryParser.DOT); this.state = 52; this.match(RMFQueryParser.REPORT); } + } + break; + case 2: + { + { + this.state = 53; + this.match(RMFQueryParser.DOT); + this.state = 54; + this.match(RMFQueryParser.REPORT_CAPTION); + } + } + break; + case 3: + { + { + this.state = 55; + this.match(RMFQueryParser.DOT); + this.state = 56; + this.match(RMFQueryParser.REPORT_BANNER); + } + } break; } - this.state = 55; + this.state = 59; this.match(RMFQueryParser.DOT); - this.state = 56; - this.identifier(); this.state = 60; + this.identifier(); + this.state = 64; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 2, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { { { - this.state = 57; + this.state = 61; this.match(RMFQueryParser.WS); } } } - this.state = 62; + this.state = 66; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 2, this._ctx); } - this.state = 64; + this.state = 68; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===24) { + if (_la===26) { { - this.state = 63; + this.state = 67; this.qualifiers(); } } - this.state = 69; + this.state = 73; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===27) { + while (_la===29) { { { - this.state = 66; + this.state = 70; this.match(RMFQueryParser.WS); } } - this.state = 71; + this.state = 75; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 72; + this.state = 76; this.match(RMFQueryParser.EOF); } } @@ -227,7 +254,7 @@ export default class RMFQueryParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 74; + this.state = 78; this.stringSpaced(); } } @@ -253,83 +280,83 @@ export default class RMFQueryParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 76; - this.match(RMFQueryParser.LBRACE); this.state = 80; + this.match(RMFQueryParser.LBRACE); + this.state = 84; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===27) { + while (_la===29) { { { - this.state = 77; + this.state = 81; this.match(RMFQueryParser.WS); } } - this.state = 82; + this.state = 86; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 83; - this.qualifier(); this.state = 87; + this.qualifier(); + this.state = 91; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===27) { + while (_la===29) { { { - this.state = 84; + this.state = 88; this.match(RMFQueryParser.WS); } } - this.state = 89; + this.state = 93; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 106; + this.state = 110; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===23) { + while (_la===25) { { { - this.state = 90; - this.match(RMFQueryParser.COMMA); this.state = 94; + this.match(RMFQueryParser.COMMA); + this.state = 98; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===27) { + while (_la===29) { { { - this.state = 91; + this.state = 95; this.match(RMFQueryParser.WS); } } - this.state = 96; + this.state = 100; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 97; - this.qualifier(); this.state = 101; + this.qualifier(); + this.state = 105; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===27) { + while (_la===29) { { { - this.state = 98; + this.state = 102; this.match(RMFQueryParser.WS); } } - this.state = 103; + this.state = 107; this._errHandler.sync(this); _la = this._input.LA(1); } } } - this.state = 108; + this.state = 112; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 109; + this.state = 113; this.match(RMFQueryParser.RBRACE); } } @@ -352,34 +379,34 @@ export default class RMFQueryParser extends Parser { let localctx: QualifierContext = new QualifierContext(this, this._ctx, this.state); this.enterRule(localctx, 6, RMFQueryParser.RULE_qualifier); try { - this.state = 115; + this.state = 119; this._errHandler.sync(this); switch (this._input.LA(1)) { - case 4: + case 6: this.enterOuterAlt(localctx, 1); { - this.state = 111; + this.state = 115; this.ulq(); } break; - case 5: + case 7: this.enterOuterAlt(localctx, 2); { - this.state = 112; + this.state = 116; this.name(); } break; - case 6: + case 8: this.enterOuterAlt(localctx, 3); { - this.state = 113; + this.state = 117; this.filter(); } break; - case 2: + case 4: this.enterOuterAlt(localctx, 4); { - this.state = 114; + this.state = 118; this.workscope(); } break; @@ -408,11 +435,11 @@ export default class RMFQueryParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 117; + this.state = 121; this.match(RMFQueryParser.ULQ); - this.state = 118; + this.state = 122; this.match(RMFQueryParser.EQUAL); - this.state = 119; + this.state = 123; this.string_(); } } @@ -437,11 +464,11 @@ export default class RMFQueryParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 121; + this.state = 125; this.match(RMFQueryParser.NAME); - this.state = 122; + this.state = 126; this.match(RMFQueryParser.EQUAL); - this.state = 123; + this.state = 127; this.string_(); } } @@ -466,11 +493,11 @@ export default class RMFQueryParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 125; + this.state = 129; this.match(RMFQueryParser.FILTER); - this.state = 126; + this.state = 130; this.match(RMFQueryParser.EQUAL); - this.state = 127; + this.state = 131; this.filterValue(); } } @@ -496,21 +523,21 @@ export default class RMFQueryParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 129; + this.state = 133; this.filterItem(); - this.state = 134; + this.state = 138; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===22) { + while (_la===24) { { { - this.state = 130; + this.state = 134; this.match(RMFQueryParser.SEMI); - this.state = 131; + this.state = 135; this.filterItem(); } } - this.state = 136; + this.state = 140; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -535,48 +562,48 @@ export default class RMFQueryParser extends Parser { let localctx: FilterItemContext = new FilterItemContext(this, this._ctx, this.state); this.enterRule(localctx, 16, RMFQueryParser.RULE_filterItem); try { - this.state = 143; + this.state = 147; this._errHandler.sync(this); switch (this._input.LA(1)) { - case 7: + case 9: this.enterOuterAlt(localctx, 1); { - this.state = 137; + this.state = 141; this.pat(); } break; - case 8: + case 10: this.enterOuterAlt(localctx, 2); { - this.state = 138; + this.state = 142; this.lb(); } break; - case 9: + case 11: this.enterOuterAlt(localctx, 3); { - this.state = 139; + this.state = 143; this.ub(); } break; - case 10: + case 12: this.enterOuterAlt(localctx, 4); { - this.state = 140; + this.state = 144; this.hi(); } break; - case 11: + case 13: this.enterOuterAlt(localctx, 5); { - this.state = 141; + this.state = 145; this.lo(); } break; - case 12: + case 14: this.enterOuterAlt(localctx, 6); { - this.state = 142; + this.state = 146; this.ord(); } break; @@ -605,11 +632,11 @@ export default class RMFQueryParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 145; + this.state = 149; this.match(RMFQueryParser.PAT); - this.state = 146; + this.state = 150; this.match(RMFQueryParser.EQUAL); - this.state = 147; + this.state = 151; this.string_(); } } @@ -634,11 +661,11 @@ export default class RMFQueryParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 149; + this.state = 153; this.match(RMFQueryParser.LB); - this.state = 150; + this.state = 154; this.match(RMFQueryParser.EQUAL); - this.state = 151; + this.state = 155; this.number_(); } } @@ -663,11 +690,11 @@ export default class RMFQueryParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 153; + this.state = 157; this.match(RMFQueryParser.UB); - this.state = 154; + this.state = 158; this.match(RMFQueryParser.EQUAL); - this.state = 155; + this.state = 159; this.number_(); } } @@ -692,11 +719,11 @@ export default class RMFQueryParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 157; + this.state = 161; this.match(RMFQueryParser.HI); - this.state = 158; + this.state = 162; this.match(RMFQueryParser.EQUAL); - this.state = 159; + this.state = 163; this.match(RMFQueryParser.INTEGER); } } @@ -721,11 +748,11 @@ export default class RMFQueryParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 161; + this.state = 165; this.match(RMFQueryParser.LO); - this.state = 162; + this.state = 166; this.match(RMFQueryParser.EQUAL); - this.state = 163; + this.state = 167; this.match(RMFQueryParser.INTEGER); } } @@ -750,11 +777,11 @@ export default class RMFQueryParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 165; + this.state = 169; this.match(RMFQueryParser.ORD); - this.state = 166; + this.state = 170; this.match(RMFQueryParser.EQUAL); - this.state = 167; + this.state = 171; this.match(RMFQueryParser.ORD_OPTION); } } @@ -779,11 +806,11 @@ export default class RMFQueryParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 169; + this.state = 173; this.match(RMFQueryParser.WORKSCOPE); - this.state = 170; + this.state = 174; this.match(RMFQueryParser.EQUAL); - this.state = 171; + this.state = 175; this.workscopeValue(); } } @@ -809,31 +836,31 @@ export default class RMFQueryParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 174; + this.state = 178; this._errHandler.sync(this); _la = this._input.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1933310) !== 0)) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 7733246) !== 0)) { { - this.state = 173; + this.state = 177; this.string_(); } } - this.state = 176; + this.state = 180; this.match(RMFQueryParser.COMMA); - this.state = 178; + this.state = 182; this._errHandler.sync(this); _la = this._input.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1933310) !== 0)) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 7733246) !== 0)) { { - this.state = 177; + this.state = 181; this.string_(); } } - this.state = 180; + this.state = 184; this.match(RMFQueryParser.COMMA); - this.state = 181; + this.state = 185; this.match(RMFQueryParser.WORKSCOPE_TYPE); } } @@ -859,9 +886,9 @@ export default class RMFQueryParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 183; + this.state = 187; _la = this._input.LA(1); - if(!(_la===16 || _la===17)) { + if(!(_la===18 || _la===19)) { this._errHandler.recoverInline(this); } else { @@ -892,9 +919,9 @@ export default class RMFQueryParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 185; + this.state = 189; _la = this._input.LA(1); - if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 884734) !== 0))) { + if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 3538942) !== 0))) { this._errHandler.recoverInline(this); } else { @@ -926,35 +953,35 @@ export default class RMFQueryParser extends Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 187; + this.state = 191; this.stringUnquoted(); - this.state = 196; + this.state = 200; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 16, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { { { - this.state = 189; + this.state = 193; this._errHandler.sync(this); _la = this._input.LA(1); do { { { - this.state = 188; + this.state = 192; this.match(RMFQueryParser.WS); } } - this.state = 191; + this.state = 195; this._errHandler.sync(this); _la = this._input.LA(1); - } while (_la===27); - this.state = 193; + } while (_la===29); + this.state = 197; this.stringUnquoted(); } } } - this.state = 198; + this.state = 202; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 16, this._ctx); } @@ -982,21 +1009,21 @@ export default class RMFQueryParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 199; + this.state = 203; this.stringUnquoted(); - this.state = 204; + this.state = 208; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===21) { + while (_la===23) { { { - this.state = 200; + this.state = 204; this.match(RMFQueryParser.DOT); - this.state = 201; + this.state = 205; this.stringUnquoted(); } } - this.state = 206; + this.state = 210; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -1021,7 +1048,7 @@ export default class RMFQueryParser extends Parser { let localctx: StringContext = new StringContext(this, this._ctx, this.state); this.enterRule(localctx, 42, RMFQueryParser.RULE_string); try { - this.state = 209; + this.state = 213; this._errHandler.sync(this); switch (this._input.LA(1)) { case 1: @@ -1038,19 +1065,21 @@ export default class RMFQueryParser extends Parser { case 12: case 13: case 14: + case 15: case 16: case 18: - case 19: + case 20: + case 21: this.enterOuterAlt(localctx, 1); { - this.state = 207; + this.state = 211; this.stringDotted(); } break; - case 20: + case 22: this.enterOuterAlt(localctx, 2); { - this.state = 208; + this.state = 212; this.match(RMFQueryParser.STRING_QUOTED); } break; @@ -1073,71 +1102,73 @@ export default class RMFQueryParser extends Parser { return localctx; } - public static readonly _serializedATN: number[] = [4,1,27,212,2,0,7,0,2, + public static readonly _serializedATN: number[] = [4,1,29,216,2,0,7,0,2, 1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6,7,6,2,7,7,7,2,8,7,8,2,9,7,9,2, 10,7,10,2,11,7,11,2,12,7,12,2,13,7,13,2,14,7,14,2,15,7,15,2,16,7,16,2,17, 7,17,2,18,7,18,2,19,7,19,2,20,7,20,2,21,7,21,1,0,5,0,46,8,0,10,0,12,0,49, - 9,0,1,0,1,0,1,0,3,0,54,8,0,1,0,1,0,1,0,5,0,59,8,0,10,0,12,0,62,9,0,1,0, - 3,0,65,8,0,1,0,5,0,68,8,0,10,0,12,0,71,9,0,1,0,1,0,1,1,1,1,1,2,1,2,5,2, - 79,8,2,10,2,12,2,82,9,2,1,2,1,2,5,2,86,8,2,10,2,12,2,89,9,2,1,2,1,2,5,2, - 93,8,2,10,2,12,2,96,9,2,1,2,1,2,5,2,100,8,2,10,2,12,2,103,9,2,5,2,105,8, - 2,10,2,12,2,108,9,2,1,2,1,2,1,3,1,3,1,3,1,3,3,3,116,8,3,1,4,1,4,1,4,1,4, - 1,5,1,5,1,5,1,5,1,6,1,6,1,6,1,6,1,7,1,7,1,7,5,7,133,8,7,10,7,12,7,136,9, - 7,1,8,1,8,1,8,1,8,1,8,1,8,3,8,144,8,8,1,9,1,9,1,9,1,9,1,10,1,10,1,10,1, - 10,1,11,1,11,1,11,1,11,1,12,1,12,1,12,1,12,1,13,1,13,1,13,1,13,1,14,1,14, - 1,14,1,14,1,15,1,15,1,15,1,15,1,16,3,16,175,8,16,1,16,1,16,3,16,179,8,16, - 1,16,1,16,1,16,1,17,1,17,1,18,1,18,1,19,1,19,4,19,190,8,19,11,19,12,19, - 191,1,19,5,19,195,8,19,10,19,12,19,198,9,19,1,20,1,20,1,20,5,20,203,8,20, - 10,20,12,20,206,9,20,1,21,1,21,3,21,210,8,21,1,21,0,0,22,0,2,4,6,8,10,12, - 14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,0,2,1,0,16,17,3,0,1,14,16, - 16,18,19,214,0,47,1,0,0,0,2,74,1,0,0,0,4,76,1,0,0,0,6,115,1,0,0,0,8,117, - 1,0,0,0,10,121,1,0,0,0,12,125,1,0,0,0,14,129,1,0,0,0,16,143,1,0,0,0,18, - 145,1,0,0,0,20,149,1,0,0,0,22,153,1,0,0,0,24,157,1,0,0,0,26,161,1,0,0,0, - 28,165,1,0,0,0,30,169,1,0,0,0,32,174,1,0,0,0,34,183,1,0,0,0,36,185,1,0, - 0,0,38,187,1,0,0,0,40,199,1,0,0,0,42,209,1,0,0,0,44,46,5,27,0,0,45,44,1, - 0,0,0,46,49,1,0,0,0,47,45,1,0,0,0,47,48,1,0,0,0,48,50,1,0,0,0,49,47,1,0, - 0,0,50,53,5,14,0,0,51,52,5,21,0,0,52,54,5,1,0,0,53,51,1,0,0,0,53,54,1,0, - 0,0,54,55,1,0,0,0,55,56,5,21,0,0,56,60,3,2,1,0,57,59,5,27,0,0,58,57,1,0, - 0,0,59,62,1,0,0,0,60,58,1,0,0,0,60,61,1,0,0,0,61,64,1,0,0,0,62,60,1,0,0, - 0,63,65,3,4,2,0,64,63,1,0,0,0,64,65,1,0,0,0,65,69,1,0,0,0,66,68,5,27,0, - 0,67,66,1,0,0,0,68,71,1,0,0,0,69,67,1,0,0,0,69,70,1,0,0,0,70,72,1,0,0,0, - 71,69,1,0,0,0,72,73,5,0,0,1,73,1,1,0,0,0,74,75,3,38,19,0,75,3,1,0,0,0,76, - 80,5,24,0,0,77,79,5,27,0,0,78,77,1,0,0,0,79,82,1,0,0,0,80,78,1,0,0,0,80, - 81,1,0,0,0,81,83,1,0,0,0,82,80,1,0,0,0,83,87,3,6,3,0,84,86,5,27,0,0,85, - 84,1,0,0,0,86,89,1,0,0,0,87,85,1,0,0,0,87,88,1,0,0,0,88,106,1,0,0,0,89, - 87,1,0,0,0,90,94,5,23,0,0,91,93,5,27,0,0,92,91,1,0,0,0,93,96,1,0,0,0,94, - 92,1,0,0,0,94,95,1,0,0,0,95,97,1,0,0,0,96,94,1,0,0,0,97,101,3,6,3,0,98, - 100,5,27,0,0,99,98,1,0,0,0,100,103,1,0,0,0,101,99,1,0,0,0,101,102,1,0,0, - 0,102,105,1,0,0,0,103,101,1,0,0,0,104,90,1,0,0,0,105,108,1,0,0,0,106,104, - 1,0,0,0,106,107,1,0,0,0,107,109,1,0,0,0,108,106,1,0,0,0,109,110,5,25,0, - 0,110,5,1,0,0,0,111,116,3,8,4,0,112,116,3,10,5,0,113,116,3,12,6,0,114,116, - 3,30,15,0,115,111,1,0,0,0,115,112,1,0,0,0,115,113,1,0,0,0,115,114,1,0,0, - 0,116,7,1,0,0,0,117,118,5,4,0,0,118,119,5,26,0,0,119,120,3,42,21,0,120, - 9,1,0,0,0,121,122,5,5,0,0,122,123,5,26,0,0,123,124,3,42,21,0,124,11,1,0, - 0,0,125,126,5,6,0,0,126,127,5,26,0,0,127,128,3,14,7,0,128,13,1,0,0,0,129, - 134,3,16,8,0,130,131,5,22,0,0,131,133,3,16,8,0,132,130,1,0,0,0,133,136, - 1,0,0,0,134,132,1,0,0,0,134,135,1,0,0,0,135,15,1,0,0,0,136,134,1,0,0,0, - 137,144,3,18,9,0,138,144,3,20,10,0,139,144,3,22,11,0,140,144,3,24,12,0, - 141,144,3,26,13,0,142,144,3,28,14,0,143,137,1,0,0,0,143,138,1,0,0,0,143, - 139,1,0,0,0,143,140,1,0,0,0,143,141,1,0,0,0,143,142,1,0,0,0,144,17,1,0, - 0,0,145,146,5,7,0,0,146,147,5,26,0,0,147,148,3,42,21,0,148,19,1,0,0,0,149, - 150,5,8,0,0,150,151,5,26,0,0,151,152,3,34,17,0,152,21,1,0,0,0,153,154,5, - 9,0,0,154,155,5,26,0,0,155,156,3,34,17,0,156,23,1,0,0,0,157,158,5,10,0, - 0,158,159,5,26,0,0,159,160,5,16,0,0,160,25,1,0,0,0,161,162,5,11,0,0,162, - 163,5,26,0,0,163,164,5,16,0,0,164,27,1,0,0,0,165,166,5,12,0,0,166,167,5, - 26,0,0,167,168,5,13,0,0,168,29,1,0,0,0,169,170,5,2,0,0,170,171,5,26,0,0, - 171,172,3,32,16,0,172,31,1,0,0,0,173,175,3,42,21,0,174,173,1,0,0,0,174, - 175,1,0,0,0,175,176,1,0,0,0,176,178,5,23,0,0,177,179,3,42,21,0,178,177, - 1,0,0,0,178,179,1,0,0,0,179,180,1,0,0,0,180,181,5,23,0,0,181,182,5,15,0, - 0,182,33,1,0,0,0,183,184,7,0,0,0,184,35,1,0,0,0,185,186,7,1,0,0,186,37, - 1,0,0,0,187,196,3,36,18,0,188,190,5,27,0,0,189,188,1,0,0,0,190,191,1,0, - 0,0,191,189,1,0,0,0,191,192,1,0,0,0,192,193,1,0,0,0,193,195,3,36,18,0,194, - 189,1,0,0,0,195,198,1,0,0,0,196,194,1,0,0,0,196,197,1,0,0,0,197,39,1,0, - 0,0,198,196,1,0,0,0,199,204,3,36,18,0,200,201,5,21,0,0,201,203,3,36,18, - 0,202,200,1,0,0,0,203,206,1,0,0,0,204,202,1,0,0,0,204,205,1,0,0,0,205,41, - 1,0,0,0,206,204,1,0,0,0,207,210,3,40,20,0,208,210,5,20,0,0,209,207,1,0, - 0,0,209,208,1,0,0,0,210,43,1,0,0,0,19,47,53,60,64,69,80,87,94,101,106,115, - 134,143,174,178,191,196,204,209]; + 9,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,3,0,58,8,0,1,0,1,0,1,0,5,0,63,8,0,10,0, + 12,0,66,9,0,1,0,3,0,69,8,0,1,0,5,0,72,8,0,10,0,12,0,75,9,0,1,0,1,0,1,1, + 1,1,1,2,1,2,5,2,83,8,2,10,2,12,2,86,9,2,1,2,1,2,5,2,90,8,2,10,2,12,2,93, + 9,2,1,2,1,2,5,2,97,8,2,10,2,12,2,100,9,2,1,2,1,2,5,2,104,8,2,10,2,12,2, + 107,9,2,5,2,109,8,2,10,2,12,2,112,9,2,1,2,1,2,1,3,1,3,1,3,1,3,3,3,120,8, + 3,1,4,1,4,1,4,1,4,1,5,1,5,1,5,1,5,1,6,1,6,1,6,1,6,1,7,1,7,1,7,5,7,137,8, + 7,10,7,12,7,140,9,7,1,8,1,8,1,8,1,8,1,8,1,8,3,8,148,8,8,1,9,1,9,1,9,1,9, + 1,10,1,10,1,10,1,10,1,11,1,11,1,11,1,11,1,12,1,12,1,12,1,12,1,13,1,13,1, + 13,1,13,1,14,1,14,1,14,1,14,1,15,1,15,1,15,1,15,1,16,3,16,179,8,16,1,16, + 1,16,3,16,183,8,16,1,16,1,16,1,16,1,17,1,17,1,18,1,18,1,19,1,19,4,19,194, + 8,19,11,19,12,19,195,1,19,5,19,199,8,19,10,19,12,19,202,9,19,1,20,1,20, + 1,20,5,20,207,8,20,10,20,12,20,210,9,20,1,21,1,21,3,21,214,8,21,1,21,0, + 0,22,0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,0,2,1, + 0,18,19,3,0,1,16,18,18,20,21,220,0,47,1,0,0,0,2,78,1,0,0,0,4,80,1,0,0,0, + 6,119,1,0,0,0,8,121,1,0,0,0,10,125,1,0,0,0,12,129,1,0,0,0,14,133,1,0,0, + 0,16,147,1,0,0,0,18,149,1,0,0,0,20,153,1,0,0,0,22,157,1,0,0,0,24,161,1, + 0,0,0,26,165,1,0,0,0,28,169,1,0,0,0,30,173,1,0,0,0,32,178,1,0,0,0,34,187, + 1,0,0,0,36,189,1,0,0,0,38,191,1,0,0,0,40,203,1,0,0,0,42,213,1,0,0,0,44, + 46,5,29,0,0,45,44,1,0,0,0,46,49,1,0,0,0,47,45,1,0,0,0,47,48,1,0,0,0,48, + 50,1,0,0,0,49,47,1,0,0,0,50,57,5,16,0,0,51,52,5,23,0,0,52,58,5,1,0,0,53, + 54,5,23,0,0,54,58,5,2,0,0,55,56,5,23,0,0,56,58,5,3,0,0,57,51,1,0,0,0,57, + 53,1,0,0,0,57,55,1,0,0,0,57,58,1,0,0,0,58,59,1,0,0,0,59,60,5,23,0,0,60, + 64,3,2,1,0,61,63,5,29,0,0,62,61,1,0,0,0,63,66,1,0,0,0,64,62,1,0,0,0,64, + 65,1,0,0,0,65,68,1,0,0,0,66,64,1,0,0,0,67,69,3,4,2,0,68,67,1,0,0,0,68,69, + 1,0,0,0,69,73,1,0,0,0,70,72,5,29,0,0,71,70,1,0,0,0,72,75,1,0,0,0,73,71, + 1,0,0,0,73,74,1,0,0,0,74,76,1,0,0,0,75,73,1,0,0,0,76,77,5,0,0,1,77,1,1, + 0,0,0,78,79,3,38,19,0,79,3,1,0,0,0,80,84,5,26,0,0,81,83,5,29,0,0,82,81, + 1,0,0,0,83,86,1,0,0,0,84,82,1,0,0,0,84,85,1,0,0,0,85,87,1,0,0,0,86,84,1, + 0,0,0,87,91,3,6,3,0,88,90,5,29,0,0,89,88,1,0,0,0,90,93,1,0,0,0,91,89,1, + 0,0,0,91,92,1,0,0,0,92,110,1,0,0,0,93,91,1,0,0,0,94,98,5,25,0,0,95,97,5, + 29,0,0,96,95,1,0,0,0,97,100,1,0,0,0,98,96,1,0,0,0,98,99,1,0,0,0,99,101, + 1,0,0,0,100,98,1,0,0,0,101,105,3,6,3,0,102,104,5,29,0,0,103,102,1,0,0,0, + 104,107,1,0,0,0,105,103,1,0,0,0,105,106,1,0,0,0,106,109,1,0,0,0,107,105, + 1,0,0,0,108,94,1,0,0,0,109,112,1,0,0,0,110,108,1,0,0,0,110,111,1,0,0,0, + 111,113,1,0,0,0,112,110,1,0,0,0,113,114,5,27,0,0,114,5,1,0,0,0,115,120, + 3,8,4,0,116,120,3,10,5,0,117,120,3,12,6,0,118,120,3,30,15,0,119,115,1,0, + 0,0,119,116,1,0,0,0,119,117,1,0,0,0,119,118,1,0,0,0,120,7,1,0,0,0,121,122, + 5,6,0,0,122,123,5,28,0,0,123,124,3,42,21,0,124,9,1,0,0,0,125,126,5,7,0, + 0,126,127,5,28,0,0,127,128,3,42,21,0,128,11,1,0,0,0,129,130,5,8,0,0,130, + 131,5,28,0,0,131,132,3,14,7,0,132,13,1,0,0,0,133,138,3,16,8,0,134,135,5, + 24,0,0,135,137,3,16,8,0,136,134,1,0,0,0,137,140,1,0,0,0,138,136,1,0,0,0, + 138,139,1,0,0,0,139,15,1,0,0,0,140,138,1,0,0,0,141,148,3,18,9,0,142,148, + 3,20,10,0,143,148,3,22,11,0,144,148,3,24,12,0,145,148,3,26,13,0,146,148, + 3,28,14,0,147,141,1,0,0,0,147,142,1,0,0,0,147,143,1,0,0,0,147,144,1,0,0, + 0,147,145,1,0,0,0,147,146,1,0,0,0,148,17,1,0,0,0,149,150,5,9,0,0,150,151, + 5,28,0,0,151,152,3,42,21,0,152,19,1,0,0,0,153,154,5,10,0,0,154,155,5,28, + 0,0,155,156,3,34,17,0,156,21,1,0,0,0,157,158,5,11,0,0,158,159,5,28,0,0, + 159,160,3,34,17,0,160,23,1,0,0,0,161,162,5,12,0,0,162,163,5,28,0,0,163, + 164,5,18,0,0,164,25,1,0,0,0,165,166,5,13,0,0,166,167,5,28,0,0,167,168,5, + 18,0,0,168,27,1,0,0,0,169,170,5,14,0,0,170,171,5,28,0,0,171,172,5,15,0, + 0,172,29,1,0,0,0,173,174,5,4,0,0,174,175,5,28,0,0,175,176,3,32,16,0,176, + 31,1,0,0,0,177,179,3,42,21,0,178,177,1,0,0,0,178,179,1,0,0,0,179,180,1, + 0,0,0,180,182,5,25,0,0,181,183,3,42,21,0,182,181,1,0,0,0,182,183,1,0,0, + 0,183,184,1,0,0,0,184,185,5,25,0,0,185,186,5,17,0,0,186,33,1,0,0,0,187, + 188,7,0,0,0,188,35,1,0,0,0,189,190,7,1,0,0,190,37,1,0,0,0,191,200,3,36, + 18,0,192,194,5,29,0,0,193,192,1,0,0,0,194,195,1,0,0,0,195,193,1,0,0,0,195, + 196,1,0,0,0,196,197,1,0,0,0,197,199,3,36,18,0,198,193,1,0,0,0,199,202,1, + 0,0,0,200,198,1,0,0,0,200,201,1,0,0,0,201,39,1,0,0,0,202,200,1,0,0,0,203, + 208,3,36,18,0,204,205,5,23,0,0,205,207,3,36,18,0,206,204,1,0,0,0,207,210, + 1,0,0,0,208,206,1,0,0,0,208,209,1,0,0,0,209,41,1,0,0,0,210,208,1,0,0,0, + 211,214,3,40,20,0,212,214,5,22,0,0,213,211,1,0,0,0,213,212,1,0,0,0,214, + 43,1,0,0,0,19,47,57,64,68,73,84,91,98,105,110,119,138,147,178,182,195,200, + 208,213]; private static __ATN: ATN; public static get _ATN(): ATN { @@ -1179,11 +1210,17 @@ export class QueryContext extends ParserRuleContext { public WS(i: number): TerminalNode { return this.getToken(RMFQueryParser.WS, i); } + public qualifiers(): QualifiersContext { + return this.getTypedRuleContext(QualifiersContext, 0) as QualifiersContext; + } public REPORT(): TerminalNode { return this.getToken(RMFQueryParser.REPORT, 0); } - public qualifiers(): QualifiersContext { - return this.getTypedRuleContext(QualifiersContext, 0) as QualifiersContext; + public REPORT_CAPTION(): TerminalNode { + return this.getToken(RMFQueryParser.REPORT_CAPTION, 0); + } + public REPORT_BANNER(): TerminalNode { + return this.getToken(RMFQueryParser.REPORT_BANNER, 0); } public get ruleIndex(): number { return RMFQueryParser.RULE_query; @@ -1752,6 +1789,12 @@ export class StringUnquotedContext extends ParserRuleContext { public REPORT(): TerminalNode { return this.getToken(RMFQueryParser.REPORT, 0); } + public REPORT_CAPTION(): TerminalNode { + return this.getToken(RMFQueryParser.REPORT_CAPTION, 0); + } + public REPORT_BANNER(): TerminalNode { + return this.getToken(RMFQueryParser.REPORT_BANNER, 0); + } public WORKSCOPE(): TerminalNode { return this.getToken(RMFQueryParser.WORKSCOPE, 0); } From d92e3bca8886d587a9a6045851ba883362ab3917 Mon Sep 17 00:00:00 2001 From: dprizentsov Date: Tue, 9 Dec 2025 15:33:09 +0100 Subject: [PATCH 05/26] remove rmfPanelGuid variable, not used Signed-off-by: dprizentsov --- grafana/rmf-app/src/dashboards/dds/CACHDET.json | 3 --- grafana/rmf-app/src/dashboards/dds/CACHSUM.json | 3 --- grafana/rmf-app/src/dashboards/dds/CFACT.json | 2 -- grafana/rmf-app/src/dashboards/dds/CFOVER.json | 3 --- grafana/rmf-app/src/dashboards/dds/CFSYS.json | 2 -- grafana/rmf-app/src/dashboards/dds/CHANNEL.json | 2 -- grafana/rmf-app/src/dashboards/dds/CPC.json | 3 --- grafana/rmf-app/src/dashboards/dds/CRYOVW.json | 2 -- .../dds/Common Storage Activity (Timeline).json | 6 ------ .../dashboards/dds/Common Storage Activity.json | 6 ------ .../dds/Coupling Facility Overview (Timeline).json | 4 ---- .../dashboards/dds/Coupling Facility Overview.json | 4 ---- grafana/rmf-app/src/dashboards/dds/DELAY.json | 2 -- grafana/rmf-app/src/dashboards/dds/DEV.json | 2 -- grafana/rmf-app/src/dashboards/dds/DEVR.json | 2 -- grafana/rmf-app/src/dashboards/dds/DSND.json | 2 -- grafana/rmf-app/src/dashboards/dds/EADM.json | 3 --- grafana/rmf-app/src/dashboards/dds/ENCLAVE.json | 3 --- grafana/rmf-app/src/dashboards/dds/ENQ.json | 2 -- .../dds/Execution Velocity (Timeline).json | 3 --- .../src/dashboards/dds/Execution Velocity.json | 3 --- .../dds/General Activity (Timeline).json | 7 ------- .../src/dashboards/dds/General Activity.json | 7 ------- grafana/rmf-app/src/dashboards/dds/HSM.json | 2 -- grafana/rmf-app/src/dashboards/dds/IOQ.json | 2 -- grafana/rmf-app/src/dashboards/dds/JES.json | 2 -- grafana/rmf-app/src/dashboards/dds/LOCKSP.json | 3 --- grafana/rmf-app/src/dashboards/dds/LOCKSU.json | 3 --- grafana/rmf-app/src/dashboards/dds/OPD.json | 3 --- .../dds/Overall Image Activity (Timeline).json | 5 ----- .../src/dashboards/dds/Overall Image Activity.json | 5 ----- grafana/rmf-app/src/dashboards/dds/PCIE.json | 3 --- grafana/rmf-app/src/dashboards/dds/PROC.json | 2 -- grafana/rmf-app/src/dashboards/dds/PROCU.json | 2 -- .../dds/Performance Index (Timeline).json | 2 -- .../src/dashboards/dds/Performance Index.json | 2 -- .../dashboards/dds/Response Time (Timeline).json | 6 ------ .../rmf-app/src/dashboards/dds/Response Time.json | 6 ------ grafana/rmf-app/src/dashboards/dds/SPACED.json | 2 -- grafana/rmf-app/src/dashboards/dds/SPACEG.json | 2 -- grafana/rmf-app/src/dashboards/dds/STOR.json | 2 -- grafana/rmf-app/src/dashboards/dds/STORC.json | 3 --- grafana/rmf-app/src/dashboards/dds/STORCR.json | 2 -- grafana/rmf-app/src/dashboards/dds/STORF.json | 2 -- grafana/rmf-app/src/dashboards/dds/STORM.json | 3 --- grafana/rmf-app/src/dashboards/dds/STORR.json | 3 --- grafana/rmf-app/src/dashboards/dds/STORS.json | 3 --- grafana/rmf-app/src/dashboards/dds/SYSINFO.json | 3 --- grafana/rmf-app/src/dashboards/dds/SYSRG.json | 2 -- grafana/rmf-app/src/dashboards/dds/SYSSUM.json | 3 --- grafana/rmf-app/src/dashboards/dds/USAGE.json | 2 -- .../dashboards/dds/Using & Delays (Timeline).json | 10 ---------- .../rmf-app/src/dashboards/dds/Using & Delays.json | 10 ---------- .../dashboards/dds/XCF Activity (Timeline).json | 6 ------ .../rmf-app/src/dashboards/dds/XCF Activity.json | 6 ------ grafana/rmf-app/src/dashboards/dds/XCFGROUP.json | 2 -- grafana/rmf-app/src/dashboards/dds/XCFOVW.json | 2 -- grafana/rmf-app/src/dashboards/dds/XCFPATH.json | 2 -- grafana/rmf-app/src/dashboards/dds/XCFSYS.json | 2 -- grafana/rmf-app/src/dashboards/dds/ZFSFS.json | 2 -- grafana/rmf-app/src/dashboards/dds/ZFSKN.json | 2 -- grafana/rmf-app/src/dashboards/dds/ZFSOVW.json | 2 -- .../rmf-app/src/datasource/common/common.helper.ts | 14 -------------- grafana/rmf-app/src/datasource/common/types.ts | 1 - .../query-editor/queryeditor.parser.component.tsx | 9 --------- 65 files changed, 226 deletions(-) diff --git a/grafana/rmf-app/src/dashboards/dds/CACHDET.json b/grafana/rmf-app/src/dashboards/dds/CACHDET.json index 4c656ca2..474fd101 100644 --- a/grafana/rmf-app/src/dashboards/dds/CACHDET.json +++ b/grafana/rmf-app/src/dashboards/dds/CACHDET.json @@ -94,7 +94,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "a30ba0f0-e67a-44b0-bfe6-3b437603e414", "selectedQuery": "SYSPLEX.REPORT.CACHDET", "selectedResource": { "label": "TABLE(report=CACHDET&resource=,,SYSPLEX)", @@ -439,7 +438,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", "selectedQuery": "SYSPLEX.REPORT_BANNER.CACHDET", "selectedResource": { "label": "BANNER(report=CACHDET&resource=,,SYSPLEX)", @@ -513,7 +511,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "885ff52d-c1c1-4112-951f-acdec5c20116", "selectedQuery": "SYSPLEX.REPORT_CAPTION.CACHDET", "selectedResource": { "label": "CAPTION(report=CACHDET&resource=,,SYSPLEX)", diff --git a/grafana/rmf-app/src/dashboards/dds/CACHSUM.json b/grafana/rmf-app/src/dashboards/dds/CACHSUM.json index 48d762d5..3e55637d 100644 --- a/grafana/rmf-app/src/dashboards/dds/CACHSUM.json +++ b/grafana/rmf-app/src/dashboards/dds/CACHSUM.json @@ -94,7 +94,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "0a230d99-a837-4aff-b520-3b6c68d5a8e0", "selectedQuery": "SYSPLEX.REPORT.CACHSUM", "selectedResource": { "label": "TABLE(report=CACHSUM&resource=,,SYSPLEX)", @@ -401,7 +400,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", "selectedQuery": "SYSPLEX.REPORT_BANNER.CACHSUM", "selectedResource": { "label": "BANNER(report=CACHSUM&resource=,,SYSPLEX)", @@ -475,7 +473,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "885ff52d-c1c1-4112-951f-acdec5c20116", "selectedQuery": "SYSPLEX.REPORT_CAPTION.CACHSUM", "selectedResource": { "label": "CAPTION(report=CACHSUM&resource=,,SYSPLEX)", diff --git a/grafana/rmf-app/src/dashboards/dds/CFACT.json b/grafana/rmf-app/src/dashboards/dds/CFACT.json index 1c00598d..ce6b72c1 100644 --- a/grafana/rmf-app/src/dashboards/dds/CFACT.json +++ b/grafana/rmf-app/src/dashboards/dds/CFACT.json @@ -93,7 +93,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "26f5f14b-f506-4c31-907c-9f32ccd314e4", "selectedQuery": "SYSPLEX.REPORT.CFACT", "selectedResource": { "label": "TABLE(report=CFACT&resource=,,SYSPLEX)", @@ -454,7 +453,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", "selectedQuery": "SYSPLEX.REPORT_BANNER.CFACT", "selectedResource": { "label": "BANNER(report=CFACT&resource=,,SYSPLEX)", diff --git a/grafana/rmf-app/src/dashboards/dds/CFOVER.json b/grafana/rmf-app/src/dashboards/dds/CFOVER.json index 5a61de35..3f8b5f7b 100644 --- a/grafana/rmf-app/src/dashboards/dds/CFOVER.json +++ b/grafana/rmf-app/src/dashboards/dds/CFOVER.json @@ -93,7 +93,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "0c882408-b619-4f60-a8a3-37be2c38af18", "selectedQuery": "SYSPLEX.REPORT.CFOVER", "selectedResource": { "label": "TABLE(report=CFOVER&resource=,,SYSPLEX)", @@ -350,7 +349,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", "selectedQuery": "SYSPLEX.REPORT_BANNER.CFOVER", "selectedResource": { "label": "BANNER(report=CFOVER&resource=,,SYSPLEX)", @@ -424,7 +422,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "885ff52d-c1c1-4112-951f-acdec5c20116", "selectedQuery": "SYSPLEX.REPORT_CAPTION.CFOVER", "selectedResource": { "label": "CAPTION(report=CFOVER&resource=,,SYSPLEX)", diff --git a/grafana/rmf-app/src/dashboards/dds/CFSYS.json b/grafana/rmf-app/src/dashboards/dds/CFSYS.json index 43fe272d..1a2c6bc8 100644 --- a/grafana/rmf-app/src/dashboards/dds/CFSYS.json +++ b/grafana/rmf-app/src/dashboards/dds/CFSYS.json @@ -93,7 +93,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "c699b2d0-fa49-4b45-bae9-913739728e44", "selectedQuery": "SYSPLEX.REPORT.CFSYS", "selectedResource": { "label": "TABLE(report=CFSYS&resource=,,SYSPLEX)", @@ -345,7 +344,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", "selectedQuery": "SYSPLEX.REPORT_BANNER.CFSYS", "selectedResource": { "label": "BANNER(report=CFSYS&resource=,,SYSPLEX)", diff --git a/grafana/rmf-app/src/dashboards/dds/CHANNEL.json b/grafana/rmf-app/src/dashboards/dds/CHANNEL.json index 28d51fb3..748087e2 100644 --- a/grafana/rmf-app/src/dashboards/dds/CHANNEL.json +++ b/grafana/rmf-app/src/dashboards/dds/CHANNEL.json @@ -91,7 +91,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "9f386c5a-cffd-4367-8065-189a5e4fe925", "selectedQuery": "MVS_IMAGE.REPORT.CHANNEL{name=$LPAR}", "selectedResource": { "label": "TABLE(report=CHANNEL&resource=,$LPAR,MVS_IMAGE)", @@ -189,7 +188,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", "selectedQuery": "MVS_IMAGE.REPORT_BANNER.CHANNEL{name=$LPAR}", "selectedResource": { "label": "BANNER(report=CHANNEL&resource=,$LPAR,MVS_IMAGE)", diff --git a/grafana/rmf-app/src/dashboards/dds/CPC.json b/grafana/rmf-app/src/dashboards/dds/CPC.json index 3ec6a8f7..66eff1d9 100644 --- a/grafana/rmf-app/src/dashboards/dds/CPC.json +++ b/grafana/rmf-app/src/dashboards/dds/CPC.json @@ -176,7 +176,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "de465562-c3f1-4548-93fb-d19e0cdb70e6", "selectedQuery": "MVS_IMAGE.REPORT.CPC{name=$LPAR}", "selectedResource": { "label": "TABLE(report=CPC&resource=,$LPAR,MVS_IMAGE)", @@ -436,7 +435,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", "selectedQuery": "MVS_IMAGE.REPORT_BANNER.CPC{name=$LPAR}", "selectedResource": { "label": "BANNER(report=CPC&resource=,$LPAR,MVS_IMAGE)", @@ -510,7 +508,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "885ff52d-c1c1-4112-951f-acdec5c20116", "selectedQuery": "MVS_IMAGE.REPORT_CAPTION.CPC{name=$LPAR}", "selectedResource": { "label": "CAPTION(report=CPC&resource=,$LPAR,MVS_IMAGE)", diff --git a/grafana/rmf-app/src/dashboards/dds/CRYOVW.json b/grafana/rmf-app/src/dashboards/dds/CRYOVW.json index 8413e683..47541e47 100644 --- a/grafana/rmf-app/src/dashboards/dds/CRYOVW.json +++ b/grafana/rmf-app/src/dashboards/dds/CRYOVW.json @@ -93,7 +93,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "8ad04b33-d007-4e2c-866c-7f2dbeb9b6be", "selectedQuery": "SYSPLEX.REPORT.CRYOVW", "selectedResource": { "label": "TABLE(report=CRYOVW&resource=,,SYSPLEX)", @@ -372,7 +371,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", "selectedQuery": "SYSPLEX.REPORT_BANNER.CRYOVW", "selectedResource": { "label": "BANNER(report=CRYOVW&resource=,,SYSPLEX)", diff --git a/grafana/rmf-app/src/dashboards/dds/Common Storage Activity (Timeline).json b/grafana/rmf-app/src/dashboards/dds/Common Storage Activity (Timeline).json index 5285b19f..9ac767cc 100644 --- a/grafana/rmf-app/src/dashboards/dds/Common Storage Activity (Timeline).json +++ b/grafana/rmf-app/src/dashboards/dds/Common Storage Activity (Timeline).json @@ -133,7 +133,6 @@ }, "loadDataSource": "METRICS", "refId": "A", - "rmfPanelGuid": "ceef1065-547a-4c22-bbd1-610ece245fed", "selectedMetrics": [ { "description": "auto", @@ -156,7 +155,6 @@ "hide": false, "loadDataSource": "METRICS", "refId": "B", - "rmfPanelGuid": "ceef1065-547a-4c22-bbd1-610ece245fed", "selectedMetrics": [ { "description": "auto", @@ -263,7 +261,6 @@ }, "loadDataSource": "METRICS", "refId": "A", - "rmfPanelGuid": "7e00aa47-db1b-4e96-bacd-6802c7fde5a6", "selectedMetrics": [ { "description": "auto", @@ -286,7 +283,6 @@ "hide": false, "loadDataSource": "METRICS", "refId": "B", - "rmfPanelGuid": "7e00aa47-db1b-4e96-bacd-6802c7fde5a6", "selectedMetrics": [ { "description": "auto", @@ -388,7 +384,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "e0bde46f-4da8-44b3-9d7a-47a1885e9c4c", "selectedQuery": "SYSPLEX.% CSA utilization by job {filter=HI=10}", "selectedResource": { "label": "id=8D2420&resource=,,SYSPLEX&filter=HI=10", @@ -483,7 +478,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "38368e80-de64-4bac-ae20-c18a53ad82e6", "selectedQuery": "SYSPLEX.% SQA utilization by job {filter=HI=10}", "selectedResource": { "label": "id=8D2480&resource=,,SYSPLEX&filter=HI=10", diff --git a/grafana/rmf-app/src/dashboards/dds/Common Storage Activity.json b/grafana/rmf-app/src/dashboards/dds/Common Storage Activity.json index ff6afb81..9e7727f9 100644 --- a/grafana/rmf-app/src/dashboards/dds/Common Storage Activity.json +++ b/grafana/rmf-app/src/dashboards/dds/Common Storage Activity.json @@ -175,7 +175,6 @@ }, "loadDataSource": "METRICS", "refId": "A", - "rmfPanelGuid": "c336be06-9a32-4d96-a384-3638ebdca18d", "selectedMetrics": [ { "description": "auto", @@ -198,7 +197,6 @@ "hide": false, "loadDataSource": "METRICS", "refId": "B", - "rmfPanelGuid": "c336be06-9a32-4d96-a384-3638ebdca18d", "selectedMetrics": [ { "description": "auto", @@ -347,7 +345,6 @@ }, "loadDataSource": "METRICS", "refId": "A", - "rmfPanelGuid": "efe7728a-c585-41df-a912-9d97eaa84df0", "selectedMetrics": [ { "description": "auto", @@ -370,7 +367,6 @@ "hide": false, "loadDataSource": "METRICS", "refId": "B", - "rmfPanelGuid": "efe7728a-c585-41df-a912-9d97eaa84df0", "selectedMetrics": [ { "description": "auto", @@ -501,7 +497,6 @@ }, "loadDataSource": "METRICS", "refId": "A", - "rmfPanelGuid": "7a94c97c-baa2-4a4f-a343-5050bfcc5706", "selectedMetrics": [ { "description": "auto", @@ -625,7 +620,6 @@ }, "loadDataSource": "METRICS", "refId": "A", - "rmfPanelGuid": "892780d9-ebee-4151-a8c5-cb7d1939c9a3", "selectedMetrics": [ { "description": "auto", diff --git a/grafana/rmf-app/src/dashboards/dds/Coupling Facility Overview (Timeline).json b/grafana/rmf-app/src/dashboards/dds/Coupling Facility Overview (Timeline).json index 1715f088..c8954895 100644 --- a/grafana/rmf-app/src/dashboards/dds/Coupling Facility Overview (Timeline).json +++ b/grafana/rmf-app/src/dashboards/dds/Coupling Facility Overview (Timeline).json @@ -141,7 +141,6 @@ }, "loadDataSource": "METRICS", "refId": "A", - "rmfPanelGuid": "7f6fa527-8f2f-4535-b040-e606aaa65853", "selectedMetrics": [ { "description": "auto", @@ -252,7 +251,6 @@ }, "loadDataSource": "METRICS", "refId": "A", - "rmfPanelGuid": "6a913fa1-68e1-4faf-9b9d-95d4792f5bd6", "selectedMetrics": [ { "description": "auto", @@ -363,7 +361,6 @@ }, "loadDataSource": "METRICS", "refId": "A", - "rmfPanelGuid": "f0168ba0-e693-4f71-b7ee-d80d275b3836", "selectedMetrics": [ { "description": "auto", @@ -385,7 +382,6 @@ }, "hide": false, "refId": "B", - "rmfPanelGuid": "f0168ba0-e693-4f71-b7ee-d80d275b3836", "selectedQuery": "SYSPLEX.# frames available by coupling facility", "selectedResource": { "label": "id=8D2010&resource=,,SYSPLEX", diff --git a/grafana/rmf-app/src/dashboards/dds/Coupling Facility Overview.json b/grafana/rmf-app/src/dashboards/dds/Coupling Facility Overview.json index 10efd83c..2dcd41b9 100644 --- a/grafana/rmf-app/src/dashboards/dds/Coupling Facility Overview.json +++ b/grafana/rmf-app/src/dashboards/dds/Coupling Facility Overview.json @@ -159,7 +159,6 @@ }, "loadDataSource": "METRICS", "refId": "A", - "rmfPanelGuid": "1c087c01-f4dd-4a84-b153-2bff47c0e212", "selectedMetrics": [ { "description": "auto", @@ -277,7 +276,6 @@ }, "loadDataSource": "METRICS", "refId": "A", - "rmfPanelGuid": "9b83d375-f07f-42d3-9498-f4dd6be6aec1", "selectedMetrics": [ { "description": "auto", @@ -419,7 +417,6 @@ }, "loadDataSource": "METRICS", "refId": "A", - "rmfPanelGuid": "052978e0-5eae-4f9f-8fd5-aa5012a7c807", "selectedMetrics": [ { "description": "auto", @@ -441,7 +438,6 @@ }, "hide": false, "refId": "B", - "rmfPanelGuid": "052978e0-5eae-4f9f-8fd5-aa5012a7c807", "selectedQuery": "SYSPLEX.# frames available by coupling facility", "selectedResource": { "label": "id=8D2010&resource=,,SYSPLEX", diff --git a/grafana/rmf-app/src/dashboards/dds/DELAY.json b/grafana/rmf-app/src/dashboards/dds/DELAY.json index 77c1e9f0..35bb0724 100644 --- a/grafana/rmf-app/src/dashboards/dds/DELAY.json +++ b/grafana/rmf-app/src/dashboards/dds/DELAY.json @@ -91,7 +91,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "b91a33da-135f-44a5-cfed-b3689f07856b", "selectedQuery": "MVS_IMAGE.REPORT.DELAY{name=$LPAR}", "selectedResource": { "label": "TABLE(report=DELAY&resource=,$LPAR,MVS_IMAGE)", @@ -202,7 +201,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", "selectedQuery": "MVS_IMAGE.REPORT_BANNER.DELAY{name=$LPAR}", "selectedResource": { "label": "BANNER(report=DELAY&resource=,$LPAR,MVS_IMAGE)", diff --git a/grafana/rmf-app/src/dashboards/dds/DEV.json b/grafana/rmf-app/src/dashboards/dds/DEV.json index 8808140a..4b05f370 100644 --- a/grafana/rmf-app/src/dashboards/dds/DEV.json +++ b/grafana/rmf-app/src/dashboards/dds/DEV.json @@ -91,7 +91,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "b088b1b8-86f7-4a06-ed7c-33f4859c3030", "selectedQuery": "MVS_IMAGE.REPORT.DEV{name=$LPAR}", "selectedResource": { "label": "TABLE(report=DEV&resource=,$LPAR,MVS_IMAGE)", @@ -206,7 +205,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", "selectedQuery": "MVS_IMAGE.REPORT_BANNER.DEV{name=$LPAR}", "selectedResource": { "label": "BANNER(report=DEV&resource=,$LPAR,MVS_IMAGE)", diff --git a/grafana/rmf-app/src/dashboards/dds/DEVR.json b/grafana/rmf-app/src/dashboards/dds/DEVR.json index 1c16174f..412ec932 100644 --- a/grafana/rmf-app/src/dashboards/dds/DEVR.json +++ b/grafana/rmf-app/src/dashboards/dds/DEVR.json @@ -91,7 +91,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "5e502a01-3a37-4873-94ff-7b635ecaee3a", "selectedQuery": "MVS_IMAGE.REPORT.DEVR{name=$LPAR}", "selectedResource": { "label": "TABLE(report=DEVR&resource=,$LPAR,MVS_IMAGE)", @@ -237,7 +236,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", "selectedQuery": "MVS_IMAGE.REPORT_BANNER.DEVR{name=$LPAR}", "selectedResource": { "label": "BANNER(report=DEVR&resource=,$LPAR,MVS_IMAGE)", diff --git a/grafana/rmf-app/src/dashboards/dds/DSND.json b/grafana/rmf-app/src/dashboards/dds/DSND.json index 361c1353..e1f6b015 100644 --- a/grafana/rmf-app/src/dashboards/dds/DSND.json +++ b/grafana/rmf-app/src/dashboards/dds/DSND.json @@ -91,7 +91,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "1f674985-8c23-483d-bf70-7d637d6e262", "selectedQuery": "MVS_IMAGE.REPORT.DSND{name=$LPAR}", "selectedResource": { "label": "TABLE(report=DSND&resource=,$LPAR,MVS_IMAGE)", @@ -189,7 +188,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", "selectedQuery": "MVS_IMAGE.REPORT_BANNER.DSND{name=$LPAR}", "selectedResource": { "label": "BANNER(report=DSND&resource=,$LPAR,MVS_IMAGE)", diff --git a/grafana/rmf-app/src/dashboards/dds/EADM.json b/grafana/rmf-app/src/dashboards/dds/EADM.json index e9740f09..38545d4f 100644 --- a/grafana/rmf-app/src/dashboards/dds/EADM.json +++ b/grafana/rmf-app/src/dashboards/dds/EADM.json @@ -91,7 +91,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "dda59d24-7686-49e6-b45f-0f8e5b449dee", "selectedQuery": "MVS_IMAGE.REPORT.EADM{name=$LPAR}", "selectedResource": { "label": "TABLE(report=EADM&resource=,$LPAR,MVS_IMAGE)", @@ -203,7 +202,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", "selectedQuery": "MVS_IMAGE.REPORT_BANNER.EADM{name=$LPAR}", "selectedResource": { "label": "BANNER(report=EADM&resource=,$LPAR,MVS_IMAGE)", @@ -277,7 +275,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "885ff52d-c1c1-4112-951f-acdec5c20116", "selectedQuery": "MVS_IMAGE.REPORT_CAPTION.EADM{name=$LPAR}", "selectedResource": { "label": "CAPTION(report=EADM&resource=,$LPAR,MVS_IMAGE)", diff --git a/grafana/rmf-app/src/dashboards/dds/ENCLAVE.json b/grafana/rmf-app/src/dashboards/dds/ENCLAVE.json index 1965b6b8..f3592956 100644 --- a/grafana/rmf-app/src/dashboards/dds/ENCLAVE.json +++ b/grafana/rmf-app/src/dashboards/dds/ENCLAVE.json @@ -91,7 +91,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "87fa8279-0f6c-425e-835d-652e59e29ed9", "selectedQuery": "MVS_IMAGE.REPORT.ENCLAVE{name=$LPAR}", "selectedResource": { "label": "TABLE(report=ENCLAVE&resource=,$LPAR,MVS_IMAGE)", @@ -352,7 +351,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", "selectedQuery": "MVS_IMAGE.REPORT_BANNER.ENCLAVE{name=$LPAR}", "selectedResource": { "label": "BANNER(report=ENCLAVE&resource=,$LPAR,MVS_IMAGE)", @@ -426,7 +424,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "885ff52d-c1c1-4112-951f-acdec5c20116", "selectedQuery": "MVS_IMAGE.REPORT_CAPTION.ENCLAVE{name=$LPAR}", "selectedResource": { "label": "CAPTION(report=ENCLAVE&resource=,$LPAR,MVS_IMAGE)", diff --git a/grafana/rmf-app/src/dashboards/dds/ENQ.json b/grafana/rmf-app/src/dashboards/dds/ENQ.json index 9c892e5b..339f397e 100644 --- a/grafana/rmf-app/src/dashboards/dds/ENQ.json +++ b/grafana/rmf-app/src/dashboards/dds/ENQ.json @@ -91,7 +91,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "2e245147-c660-4f64-bcaf-326ba6d434ac", "selectedQuery": "MVS_IMAGE.REPORT.ENQ{name=$LPAR}", "selectedResource": { "label": "TABLE(report=ENQ&resource=,$LPAR,MVS_IMAGE)", @@ -189,7 +188,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", "selectedQuery": "MVS_IMAGE.REPORT_BANNER.ENQ{name=$LPAR}", "selectedResource": { "label": "BANNER(report=ENQ&resource=,$LPAR,MVS_IMAGE)", diff --git a/grafana/rmf-app/src/dashboards/dds/Execution Velocity (Timeline).json b/grafana/rmf-app/src/dashboards/dds/Execution Velocity (Timeline).json index a9d09844..88266977 100644 --- a/grafana/rmf-app/src/dashboards/dds/Execution Velocity (Timeline).json +++ b/grafana/rmf-app/src/dashboards/dds/Execution Velocity (Timeline).json @@ -141,7 +141,6 @@ }, "loadDataSource": "METRICS", "refId": "A", - "rmfPanelGuid": "1cf56958-8e08-441e-8e83-22cb5201b290", "selectedMetrics": [ { "description": "auto", @@ -164,7 +163,6 @@ "hide": false, "loadDataSource": "METRICS", "refId": "B", - "rmfPanelGuid": "1cf56958-8e08-441e-8e83-22cb5201b290", "selectedMetrics": [ { "description": "auto", @@ -269,7 +267,6 @@ }, "loadDataSource": "METRICS", "refId": "A", - "rmfPanelGuid": "e5835fd0-81c5-43e2-9b74-2952ea723fe4", "selectedMetrics": [ { "description": "auto", diff --git a/grafana/rmf-app/src/dashboards/dds/Execution Velocity.json b/grafana/rmf-app/src/dashboards/dds/Execution Velocity.json index 8df76e9a..655789e8 100644 --- a/grafana/rmf-app/src/dashboards/dds/Execution Velocity.json +++ b/grafana/rmf-app/src/dashboards/dds/Execution Velocity.json @@ -171,7 +171,6 @@ }, "loadDataSource": "METRICS", "refId": "A", - "rmfPanelGuid": "57c70b1b-5050-4b2f-b1e3-6e68de1031af", "selectedMetrics": [ { "description": "auto", @@ -194,7 +193,6 @@ "hide": false, "loadDataSource": "METRICS", "refId": "B", - "rmfPanelGuid": "57c70b1b-5050-4b2f-b1e3-6e68de1031af", "selectedMetrics": [ { "description": "auto", @@ -322,7 +320,6 @@ }, "loadDataSource": "METRICS", "refId": "A", - "rmfPanelGuid": "a1ba8344-d5af-41e3-af7e-fb87e262d636", "selectedMetrics": [ { "description": "auto", diff --git a/grafana/rmf-app/src/dashboards/dds/General Activity (Timeline).json b/grafana/rmf-app/src/dashboards/dds/General Activity (Timeline).json index 55886791..7a278347 100644 --- a/grafana/rmf-app/src/dashboards/dds/General Activity (Timeline).json +++ b/grafana/rmf-app/src/dashboards/dds/General Activity (Timeline).json @@ -132,7 +132,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "b6137830-43ac-4fec-b516-07e80b0ab57a", "selectedQuery": "SYSPLEX.# active users by MVS image {filter=hi=1000;ord=na}", "selectedResource": { "label": "id=8D0630&resource=,,SYSPLEX&filter=hi=1000%3Bord=na", @@ -147,7 +146,6 @@ }, "hide": false, "refId": "B", - "rmfPanelGuid": "b6137830-43ac-4fec-b516-07e80b0ab57a", "selectedQuery": "SYSPLEX.# users by MVS image {filter=hi=1000;ord=na}", "selectedResource": { "label": "id=8D0D60&resource=,,SYSPLEX&filter=hi=1000%3Bord=na", @@ -242,7 +240,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "923072ca-7c82-42af-ea41-8c254f58da85", "selectedQuery": "SYSPLEX.% workflow", "selectedResource": { "label": "id=8D0550&resource=,,SYSPLEX", @@ -257,7 +254,6 @@ }, "hide": false, "refId": "B", - "rmfPanelGuid": "923072ca-7c82-42af-ea41-8c254f58da85", "selectedQuery": "SYSPLEX.% workflow for processor", "selectedResource": { "label": "id=8D1F30&resource=,,SYSPLEX", @@ -272,7 +268,6 @@ }, "hide": false, "refId": "C", - "rmfPanelGuid": "923072ca-7c82-42af-ea41-8c254f58da85", "selectedQuery": "SYSPLEX.% workflow for i/o", "selectedResource": { "label": "id=8D1ED0&resource=,,SYSPLEX", @@ -367,7 +362,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "ab8cdb99-7217-42df-e6c1-a1602887bbd8", "selectedQuery": "SYSPLEX.i/o activity rate", "selectedResource": { "label": "id=8D0E90&resource=,,SYSPLEX", @@ -462,7 +456,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "8cede5b5-8778-4862-8b7e-f476a6b9e56a", "selectedQuery": "SYSPLEX.transaction ended rate", "selectedResource": { "label": "id=8D1200&resource=,,SYSPLEX", diff --git a/grafana/rmf-app/src/dashboards/dds/General Activity.json b/grafana/rmf-app/src/dashboards/dds/General Activity.json index e44c4b79..b3969f8c 100644 --- a/grafana/rmf-app/src/dashboards/dds/General Activity.json +++ b/grafana/rmf-app/src/dashboards/dds/General Activity.json @@ -165,7 +165,6 @@ }, "loadDataSource": "METRICS", "refId": "A", - "rmfPanelGuid": "a396411d-dfdb-4025-9086-2eb94e561016", "selectedMetrics": [ { "description": "auto", @@ -188,7 +187,6 @@ "hide": false, "loadDataSource": "METRICS", "refId": "B", - "rmfPanelGuid": "a396411d-dfdb-4025-9086-2eb94e561016", "selectedMetrics": [ { "description": "auto", @@ -306,7 +304,6 @@ }, "loadDataSource": "METRICS", "refId": "A", - "rmfPanelGuid": "333c7f37-7c4d-4ca5-ac04-25dbbce2bed2", "selectedMetrics": [ { "description": "auto", @@ -329,7 +326,6 @@ "hide": false, "loadDataSource": "METRICS", "refId": "B", - "rmfPanelGuid": "333c7f37-7c4d-4ca5-ac04-25dbbce2bed2", "selectedMetrics": [ { "description": "auto", @@ -352,7 +348,6 @@ "hide": false, "loadDataSource": "METRICS", "refId": "C", - "rmfPanelGuid": "333c7f37-7c4d-4ca5-ac04-25dbbce2bed2", "selectedMetrics": [ { "description": "auto", @@ -472,7 +467,6 @@ }, "loadDataSource": "METRICS", "refId": "A", - "rmfPanelGuid": "98f3d0b2-3679-4977-a94a-f984b7aadbf1", "selectedMetrics": [ { "description": "auto", @@ -591,7 +585,6 @@ }, "loadDataSource": "METRICS", "refId": "A", - "rmfPanelGuid": "2132e046-9da2-4218-92f3-93482d5f110c", "selectedMetrics": [ { "description": "auto", diff --git a/grafana/rmf-app/src/dashboards/dds/HSM.json b/grafana/rmf-app/src/dashboards/dds/HSM.json index 7e6d4765..3acd4e4b 100644 --- a/grafana/rmf-app/src/dashboards/dds/HSM.json +++ b/grafana/rmf-app/src/dashboards/dds/HSM.json @@ -91,7 +91,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "4ca5f811-7ce7-4cb5-9c8e-e82c744f7689", "selectedQuery": "MVS_IMAGE.REPORT.HSM{name=$LPAR}", "selectedResource": { "label": "TABLE(report=HSM&resource=,$LPAR,MVS_IMAGE)", @@ -196,7 +195,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", "selectedQuery": "MVS_IMAGE.REPORT_BANNER.HSM{name=$LPAR}", "selectedResource": { "label": "BANNER(report=HSM&resource=,$LPAR,MVS_IMAGE)", diff --git a/grafana/rmf-app/src/dashboards/dds/IOQ.json b/grafana/rmf-app/src/dashboards/dds/IOQ.json index 57eb7285..0322d0c3 100644 --- a/grafana/rmf-app/src/dashboards/dds/IOQ.json +++ b/grafana/rmf-app/src/dashboards/dds/IOQ.json @@ -91,7 +91,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "c53199a2-81e7-4063-9aa8-814de9ddec89", "selectedQuery": "MVS_IMAGE.REPORT.IOQ{name=$LPAR}", "selectedResource": { "label": "TABLE(report=IOQ&resource=,$LPAR,MVS_IMAGE)", @@ -207,7 +206,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", "selectedQuery": "MVS_IMAGE.REPORT_BANNER.IOQ{name=$LPAR}", "selectedResource": { "label": "BANNER(report=IOQ&resource=,$LPAR,MVS_IMAGE)", diff --git a/grafana/rmf-app/src/dashboards/dds/JES.json b/grafana/rmf-app/src/dashboards/dds/JES.json index adea7c72..6b1d2836 100644 --- a/grafana/rmf-app/src/dashboards/dds/JES.json +++ b/grafana/rmf-app/src/dashboards/dds/JES.json @@ -91,7 +91,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "9b725562-731d-424f-840e-832de4a70f2c", "selectedQuery": "MVS_IMAGE.REPORT.JES{name=$LPAR}", "selectedResource": { "label": "TABLE(report=JES&resource=,$LPAR,MVS_IMAGE)", @@ -196,7 +195,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", "selectedQuery": "MVS_IMAGE.REPORT_BANNER.JES{name=$LPAR}", "selectedResource": { "label": "BANNER(report=JES&resource=,$LPAR,MVS_IMAGE)", diff --git a/grafana/rmf-app/src/dashboards/dds/LOCKSP.json b/grafana/rmf-app/src/dashboards/dds/LOCKSP.json index 4ed5dab8..2c403777 100644 --- a/grafana/rmf-app/src/dashboards/dds/LOCKSP.json +++ b/grafana/rmf-app/src/dashboards/dds/LOCKSP.json @@ -91,7 +91,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "1898c684-d2dd-4b95-a655-e1c7170ad8e8", "selectedQuery": "MVS_IMAGE.REPORT.LOCKSP{name=$LPAR}", "selectedResource": { "label": "TABLE(report=LOCKSP&resource=,$LPAR,MVS_IMAGE)", @@ -189,7 +188,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", "selectedQuery": "MVS_IMAGE.REPORT_BANNER.LOCKSP{name=$LPAR}", "selectedResource": { "label": "BANNER(report=LOCKSP&resource=,$LPAR,MVS_IMAGE)", @@ -263,7 +261,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "885ff52d-c1c1-4112-951f-acdec5c20116", "selectedQuery": "MVS_IMAGE.REPORT_CAPTION.LOCKSP{name=$LPAR}", "selectedResource": { "label": "CAPTION(report=LOCKSP&resource=,$LPAR,MVS_IMAGE)", diff --git a/grafana/rmf-app/src/dashboards/dds/LOCKSU.json b/grafana/rmf-app/src/dashboards/dds/LOCKSU.json index 7d24c221..f16633e2 100644 --- a/grafana/rmf-app/src/dashboards/dds/LOCKSU.json +++ b/grafana/rmf-app/src/dashboards/dds/LOCKSU.json @@ -91,7 +91,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "8003e165-ab46-4b61-94b7-a37f69adc5c8", "selectedQuery": "MVS_IMAGE.REPORT.LOCKSU{name=$LPAR}", "selectedResource": { "label": "TABLE(report=LOCKSU&resource=,$LPAR,MVS_IMAGE)", @@ -189,7 +188,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", "selectedQuery": "MVS_IMAGE.REPORT_BANNER.LOCKSU{name=$LPAR}", "selectedResource": { "label": "BANNER(report=LOCKSU&resource=,$LPAR,MVS_IMAGE)", @@ -263,7 +261,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "885ff52d-c1c1-4112-951f-acdec5c20116", "selectedQuery": "MVS_IMAGE.REPORT_CAPTION.LOCKSU{name=$LPAR}", "selectedResource": { "label": "CAPTION(report=LOCKSU&resource=,$LPAR,MVS_IMAGE)", diff --git a/grafana/rmf-app/src/dashboards/dds/OPD.json b/grafana/rmf-app/src/dashboards/dds/OPD.json index c57a85f9..a1f5d13c 100644 --- a/grafana/rmf-app/src/dashboards/dds/OPD.json +++ b/grafana/rmf-app/src/dashboards/dds/OPD.json @@ -91,7 +91,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "1af174dd-1466-4d45-8c07-41f3f574f692", "selectedQuery": "MVS_IMAGE.REPORT.OPD{name=$LPAR}", "selectedResource": { "label": "TABLE(report=OPD&resource=,$LPAR,MVS_IMAGE)", @@ -198,7 +197,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", "selectedQuery": "MVS_IMAGE.REPORT_BANNER.OPD{name=$LPAR}", "selectedResource": { "label": "BANNER(report=OPD&resource=,$LPAR,MVS_IMAGE)", @@ -272,7 +270,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "885ff52d-c1c1-4112-951f-acdec5c20116", "selectedQuery": "MVS_IMAGE.REPORT_CAPTION.OPD{name=$LPAR}", "selectedResource": { "label": "CAPTION(report=OPD&resource=,$LPAR,MVS_IMAGE)", diff --git a/grafana/rmf-app/src/dashboards/dds/Overall Image Activity (Timeline).json b/grafana/rmf-app/src/dashboards/dds/Overall Image Activity (Timeline).json index 1c8dfd73..1a3b2351 100644 --- a/grafana/rmf-app/src/dashboards/dds/Overall Image Activity (Timeline).json +++ b/grafana/rmf-app/src/dashboards/dds/Overall Image Activity (Timeline).json @@ -134,7 +134,6 @@ }, "loadDataSource": "METRICS", "refId": "A", - "rmfPanelGuid": "d0561874-0abf-4f8f-8ad8-77acf6ad9b6e", "selectedMetrics": [ { "description": "auto", @@ -157,7 +156,6 @@ "hide": false, "loadDataSource": "METRICS", "refId": "B", - "rmfPanelGuid": "d0561874-0abf-4f8f-8ad8-77acf6ad9b6e", "selectedMetrics": [ { "description": "auto", @@ -262,7 +260,6 @@ }, "loadDataSource": "METRICS", "refId": "A", - "rmfPanelGuid": "57bac808-50a5-42eb-984b-b0b356e5557f", "selectedMetrics": [ { "description": "auto", @@ -366,7 +363,6 @@ }, "loadDataSource": "METRICS", "refId": "A", - "rmfPanelGuid": "6fa02334-83c1-420f-b5ef-facb93cbe976", "selectedMetrics": [ { "description": "auto", @@ -470,7 +466,6 @@ }, "loadDataSource": "METRICS", "refId": "A", - "rmfPanelGuid": "f0bac2fe-d454-428a-9f83-997d40bdba29", "selectedMetrics": [ { "description": "auto", diff --git a/grafana/rmf-app/src/dashboards/dds/Overall Image Activity.json b/grafana/rmf-app/src/dashboards/dds/Overall Image Activity.json index 807703cb..4d2dd9a7 100644 --- a/grafana/rmf-app/src/dashboards/dds/Overall Image Activity.json +++ b/grafana/rmf-app/src/dashboards/dds/Overall Image Activity.json @@ -149,7 +149,6 @@ }, "loadDataSource": "METRICS", "refId": "A", - "rmfPanelGuid": "f77eeab9-f383-438a-a5b3-87b1857da198", "selectedMetrics": [ { "description": "auto", @@ -172,7 +171,6 @@ "hide": false, "loadDataSource": "METRICS", "refId": "B", - "rmfPanelGuid": "f77eeab9-f383-438a-a5b3-87b1857da198", "selectedMetrics": [ { "description": "auto", @@ -331,7 +329,6 @@ }, "loadDataSource": "METRICS", "refId": "A", - "rmfPanelGuid": "93decf63-c9a9-45b0-8663-f0350b1c1aef", "selectedMetrics": [ { "description": "auto", @@ -486,7 +483,6 @@ }, "loadDataSource": "METRICS", "refId": "A", - "rmfPanelGuid": "9da02737-9190-4525-afc6-5fcdff257ed7", "selectedMetrics": [ { "description": "auto", @@ -589,7 +585,6 @@ }, "loadDataSource": "METRICS", "refId": "A", - "rmfPanelGuid": "ae62aed9-c1bd-414d-8c75-02f952ef1a6e", "selectedMetrics": [ { "description": "auto", diff --git a/grafana/rmf-app/src/dashboards/dds/PCIE.json b/grafana/rmf-app/src/dashboards/dds/PCIE.json index 2bd40d20..8642e00f 100644 --- a/grafana/rmf-app/src/dashboards/dds/PCIE.json +++ b/grafana/rmf-app/src/dashboards/dds/PCIE.json @@ -92,7 +92,6 @@ }, "hide": false, "refId": "A", - "rmfPanelGuid": "caaae81f-5211-4ff1-b8e2-e9350465da39", "selectedQuery": "MVS_IMAGE.REPORT.PCIE{name=$LPAR}", "selectedResource": { "label": "TABLE(report=PCIE&resource=,$LPAR,MVS_IMAGE)", @@ -228,7 +227,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", "selectedQuery": "MVS_IMAGE.REPORT_BANNER.PCIE{name=$LPAR}", "selectedResource": { "label": "BANNER(report=PCIE&resource=,$LPAR,MVS_IMAGE)", @@ -302,7 +300,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "885ff52d-c1c1-4112-951f-acdec5c20116", "selectedQuery": "MVS_IMAGE.REPORT_CAPTION.PCIE{name=$LPAR}", "selectedResource": { "label": "CAPTION(report=PCIE&resource=,$LPAR,MVS_IMAGE)", diff --git a/grafana/rmf-app/src/dashboards/dds/PROC.json b/grafana/rmf-app/src/dashboards/dds/PROC.json index 944f1f63..2c37e1b1 100644 --- a/grafana/rmf-app/src/dashboards/dds/PROC.json +++ b/grafana/rmf-app/src/dashboards/dds/PROC.json @@ -91,7 +91,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "271e34ff-d57f-43d4-a897-6b8053983d24", "selectedQuery": "MVS_IMAGE.REPORT.PROC{name=$LPAR}", "selectedResource": { "label": "TABLE(report=PROC&resource=,$LPAR,MVS_IMAGE)", @@ -232,7 +231,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", "selectedQuery": "MVS_IMAGE.REPORT_BANNER.PROC{name=$LPAR}", "selectedResource": { "label": "BANNER(report=PROC&resource=,$LPAR,MVS_IMAGE)", diff --git a/grafana/rmf-app/src/dashboards/dds/PROCU.json b/grafana/rmf-app/src/dashboards/dds/PROCU.json index c8364f7d..2d551795 100644 --- a/grafana/rmf-app/src/dashboards/dds/PROCU.json +++ b/grafana/rmf-app/src/dashboards/dds/PROCU.json @@ -91,7 +91,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "908ddeb5-eef7-4ab9-a3f0-4727805960d5", "selectedQuery": "MVS_IMAGE.REPORT.PROCU{name=$LPAR}", "selectedResource": { "label": "TABLE(report=PROCU&resource=,$LPAR,MVS_IMAGE)", @@ -204,7 +203,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", "selectedQuery": "MVS_IMAGE.REPORT_BANNER.PROCU{name=$LPAR}", "selectedResource": { "label": "BANNER(report=PROCU&resource=,$LPAR,MVS_IMAGE)", diff --git a/grafana/rmf-app/src/dashboards/dds/Performance Index (Timeline).json b/grafana/rmf-app/src/dashboards/dds/Performance Index (Timeline).json index 342bb628..600eb084 100644 --- a/grafana/rmf-app/src/dashboards/dds/Performance Index (Timeline).json +++ b/grafana/rmf-app/src/dashboards/dds/Performance Index (Timeline).json @@ -133,7 +133,6 @@ }, "loadDataSource": "METRICS", "refId": "A", - "rmfPanelGuid": "59f4976c-8330-4c9b-bc2a-41e94abc1824", "selectedMetrics": [ { "description": "auto", @@ -240,7 +239,6 @@ }, "loadDataSource": "METRICS", "refId": "A", - "rmfPanelGuid": "ff313e06-7843-4c4f-8b96-eae2b4da3c4f", "selectedMetrics": [ { "description": "auto", diff --git a/grafana/rmf-app/src/dashboards/dds/Performance Index.json b/grafana/rmf-app/src/dashboards/dds/Performance Index.json index 6b1ea0b5..da45a8d3 100644 --- a/grafana/rmf-app/src/dashboards/dds/Performance Index.json +++ b/grafana/rmf-app/src/dashboards/dds/Performance Index.json @@ -175,7 +175,6 @@ }, "loadDataSource": "METRICS", "refId": "A", - "rmfPanelGuid": "14aee868-c015-4adc-864d-de990799ab13", "selectedMetrics": [ { "description": "auto", @@ -320,7 +319,6 @@ }, "loadDataSource": "METRICS", "refId": "A", - "rmfPanelGuid": "6b93b67e-4ad5-47f4-bcdd-1110772a5385", "selectedMetrics": [ { "description": "auto", diff --git a/grafana/rmf-app/src/dashboards/dds/Response Time (Timeline).json b/grafana/rmf-app/src/dashboards/dds/Response Time (Timeline).json index 95bd4c24..4637f5a9 100644 --- a/grafana/rmf-app/src/dashboards/dds/Response Time (Timeline).json +++ b/grafana/rmf-app/src/dashboards/dds/Response Time (Timeline).json @@ -134,7 +134,6 @@ }, "loadDataSource": "METRICS", "refId": "A", - "rmfPanelGuid": "7cf88de5-c050-4fc2-9218-50e785ec1113", "selectedMetrics": [ { "description": "auto", @@ -157,7 +156,6 @@ "hide": false, "loadDataSource": "METRICS", "refId": "B", - "rmfPanelGuid": "7cf88de5-c050-4fc2-9218-50e785ec1113", "selectedMetrics": [ { "description": "auto", @@ -261,7 +259,6 @@ }, "loadDataSource": "METRICS", "refId": "A", - "rmfPanelGuid": "4a7dcaff-0ff6-4ae6-b8dd-0cd525d78f3f", "selectedMetrics": [ { "description": "auto", @@ -284,7 +281,6 @@ "hide": false, "loadDataSource": "METRICS", "refId": "B", - "rmfPanelGuid": "4a7dcaff-0ff6-4ae6-b8dd-0cd525d78f3f", "selectedMetrics": [ { "description": "auto", @@ -390,7 +386,6 @@ }, "loadDataSource": "METRICS", "refId": "A", - "rmfPanelGuid": "45977a94-5c8e-4f31-b562-01e5f59562c3", "selectedMetrics": [ { "description": "auto", @@ -495,7 +490,6 @@ }, "loadDataSource": "METRICS", "refId": "A", - "rmfPanelGuid": "63b26478-2d66-47aa-a1fa-f5819bf83d61", "selectedMetrics": [ { "description": "auto", diff --git a/grafana/rmf-app/src/dashboards/dds/Response Time.json b/grafana/rmf-app/src/dashboards/dds/Response Time.json index 7a3af63d..52ad59eb 100644 --- a/grafana/rmf-app/src/dashboards/dds/Response Time.json +++ b/grafana/rmf-app/src/dashboards/dds/Response Time.json @@ -165,7 +165,6 @@ }, "loadDataSource": "METRICS", "refId": "A", - "rmfPanelGuid": "41412a53-3786-4911-a891-d98a82e47fd0", "selectedMetrics": [ { "description": "auto", @@ -188,7 +187,6 @@ "hide": false, "loadDataSource": "METRICS", "refId": "B", - "rmfPanelGuid": "41412a53-3786-4911-a891-d98a82e47fd0", "selectedMetrics": [ { "description": "auto", @@ -333,7 +331,6 @@ "hide": false, "loadDataSource": "METRICS", "refId": "B", - "rmfPanelGuid": "ae00b785-3939-4afe-8136-ffbec9d97d2a", "selectedMetrics": [ { "description": "auto", @@ -355,7 +352,6 @@ }, "loadDataSource": "METRICS", "refId": "A", - "rmfPanelGuid": "ae00b785-3939-4afe-8136-ffbec9d97d2a", "selectedMetrics": [ { "description": "auto", @@ -469,7 +465,6 @@ }, "loadDataSource": "METRICS", "refId": "A", - "rmfPanelGuid": "dda174e4-a356-47ff-b98e-9f2ef6861a0b", "selectedMetrics": [ { "description": "auto", @@ -585,7 +580,6 @@ }, "loadDataSource": "METRICS", "refId": "A", - "rmfPanelGuid": "c4e43c61-3008-490e-8fbc-edaece2e57ff", "selectedMetrics": [ { "description": "auto", diff --git a/grafana/rmf-app/src/dashboards/dds/SPACED.json b/grafana/rmf-app/src/dashboards/dds/SPACED.json index d565f41a..18ec3576 100644 --- a/grafana/rmf-app/src/dashboards/dds/SPACED.json +++ b/grafana/rmf-app/src/dashboards/dds/SPACED.json @@ -93,7 +93,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "346e1b6d-c49a-455f-81af-b18f52fea63a", "selectedQuery": "SYSPLEX.REPORT.SPACED", "selectedResource": { "label": "TABLE(report=SPACED&resource=,,SYSPLEX)", @@ -344,7 +343,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", "selectedQuery": "SYSPLEX.REPORT_BANNER.SPACED", "selectedResource": { "label": "BANNER(report=SPACED&resource=,,SYSPLEX)", diff --git a/grafana/rmf-app/src/dashboards/dds/SPACEG.json b/grafana/rmf-app/src/dashboards/dds/SPACEG.json index ee923f26..f0a3c438 100644 --- a/grafana/rmf-app/src/dashboards/dds/SPACEG.json +++ b/grafana/rmf-app/src/dashboards/dds/SPACEG.json @@ -93,7 +93,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "3414ef3c-2a88-49dc-a6a3-362d2b69c5b1", "selectedQuery": "SYSPLEX.REPORT.SPACEG", "selectedResource": { "label": "TABLE(report=SPACEG&resource=,,SYSPLEX)", @@ -344,7 +343,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", "selectedQuery": "SYSPLEX.REPORT_BANNER.SPACEG", "selectedResource": { "label": "BANNER(report=SPACEG&resource=,,SYSPLEX)", diff --git a/grafana/rmf-app/src/dashboards/dds/STOR.json b/grafana/rmf-app/src/dashboards/dds/STOR.json index 83b46107..3a8f167a 100644 --- a/grafana/rmf-app/src/dashboards/dds/STOR.json +++ b/grafana/rmf-app/src/dashboards/dds/STOR.json @@ -91,7 +91,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "f171daf4-2cd7-4209-a752-3a901b8ff6c3", "selectedQuery": "MVS_IMAGE.REPORT.STOR{name=$LPAR}", "selectedResource": { "label": "TABLE(report=STOR&resource=,$LPAR,MVS_IMAGE)", @@ -217,7 +216,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", "selectedQuery": "MVS_IMAGE.REPORT_BANNER.STOR{name=$LPAR}", "selectedResource": { "label": "BANNER(report=STOR&resource=,$LPAR,MVS_IMAGE)", diff --git a/grafana/rmf-app/src/dashboards/dds/STORC.json b/grafana/rmf-app/src/dashboards/dds/STORC.json index 73a416ac..c400ac49 100644 --- a/grafana/rmf-app/src/dashboards/dds/STORC.json +++ b/grafana/rmf-app/src/dashboards/dds/STORC.json @@ -91,7 +91,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "b28c67d8-2f71-4e81-a797-b8b8ca413910", "selectedQuery": "MVS_IMAGE.REPORT.STORC{name=$LPAR}", "selectedResource": { "label": "TABLE(report=STORC&resource=,$LPAR,MVS_IMAGE)", @@ -253,7 +252,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", "selectedQuery": "MVS_IMAGE.REPORT_BANNER.STORC{name=$LPAR}", "selectedResource": { "label": "BANNER(report=STORC&resource=,$LPAR,MVS_IMAGE)", @@ -327,7 +325,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "885ff52d-c1c1-4112-951f-acdec5c20116", "selectedQuery": "MVS_IMAGE.REPORT_CAPTION.STORC{name=$LPAR}", "selectedResource": { "label": "CAPTION(report=STORC&resource=,$LPAR,MVS_IMAGE)", diff --git a/grafana/rmf-app/src/dashboards/dds/STORCR.json b/grafana/rmf-app/src/dashboards/dds/STORCR.json index 9e625455..dbbb83ef 100644 --- a/grafana/rmf-app/src/dashboards/dds/STORCR.json +++ b/grafana/rmf-app/src/dashboards/dds/STORCR.json @@ -91,7 +91,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "d6900151-5042-4f06-aaa7-cc8088cdbe4e", "selectedQuery": "MVS_IMAGE.REPORT.STORCR{name=$LPAR}", "selectedResource": { "label": "TABLE(report=STORCR&resource=,$LPAR,MVS_IMAGE)", @@ -191,7 +190,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", "selectedQuery": "MVS_IMAGE.REPORT_BANNER.STORCR{name=$LPAR}", "selectedResource": { "label": "BANNER(report=STORCR&resource=,$LPAR,MVS_IMAGE)", diff --git a/grafana/rmf-app/src/dashboards/dds/STORF.json b/grafana/rmf-app/src/dashboards/dds/STORF.json index 7016f8ab..b29c89a7 100644 --- a/grafana/rmf-app/src/dashboards/dds/STORF.json +++ b/grafana/rmf-app/src/dashboards/dds/STORF.json @@ -91,7 +91,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "a3b4e537-0ff9-4b37-b673-d2d27d82d1e6", "selectedQuery": "MVS_IMAGE.REPORT.STORF{name=$LPAR}", "selectedResource": { "label": "TABLE(report=STORF&resource=,$LPAR,MVS_IMAGE)", @@ -200,7 +199,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", "selectedQuery": "MVS_IMAGE.REPORT_BANNER.STORF{name=$LPAR}", "selectedResource": { "label": "BANNER(report=STORF&resource=,$LPAR,MVS_IMAGE)", diff --git a/grafana/rmf-app/src/dashboards/dds/STORM.json b/grafana/rmf-app/src/dashboards/dds/STORM.json index fd6605eb..b3fdabcc 100644 --- a/grafana/rmf-app/src/dashboards/dds/STORM.json +++ b/grafana/rmf-app/src/dashboards/dds/STORM.json @@ -91,7 +91,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "35036b16-3f54-4417-9905-c5644da37dd5", "selectedQuery": "MVS_IMAGE.REPORT.STORM{name=$LPAR}", "selectedResource": { "label": "TABLE(report=STORM&resource=,$LPAR,MVS_IMAGE)", @@ -278,7 +277,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", "selectedQuery": "MVS_IMAGE.REPORT_BANNER.STORM{name=$LPAR}", "selectedResource": { "label": "BANNER(report=STORM&resource=,$LPAR,MVS_IMAGE)", @@ -352,7 +350,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "885ff52d-c1c1-4112-951f-acdec5c20116", "selectedQuery": "MVS_IMAGE.REPORT_CAPTION.STORM{name=$LPAR}", "selectedResource": { "label": "CAPTION(report=STORM&resource=,$LPAR,MVS_IMAGE)", diff --git a/grafana/rmf-app/src/dashboards/dds/STORR.json b/grafana/rmf-app/src/dashboards/dds/STORR.json index fb3766d8..9151ece7 100644 --- a/grafana/rmf-app/src/dashboards/dds/STORR.json +++ b/grafana/rmf-app/src/dashboards/dds/STORR.json @@ -91,7 +91,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "7eb3af2b-4fd9-4751-982a-05a7faa388b1", "selectedQuery": "MVS_IMAGE.REPORT.STORR{name=$LPAR}", "selectedResource": { "label": "TABLE(report=STORR&resource=,$LPAR,MVS_IMAGE)", @@ -271,7 +270,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", "selectedQuery": "MVS_IMAGE.REPORT_BANNER.STORR{name=$LPAR}", "selectedResource": { "label": "BANNER(report=STORR&resource=,$LPAR,MVS_IMAGE)", @@ -345,7 +343,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "885ff52d-c1c1-4112-951f-acdec5c20116", "selectedQuery": "MVS_IMAGE.REPORT_CAPTION.STORR{name=$LPAR}", "selectedResource": { "label": "CAPTION(report=STORR&resource=,$LPAR,MVS_IMAGE)", diff --git a/grafana/rmf-app/src/dashboards/dds/STORS.json b/grafana/rmf-app/src/dashboards/dds/STORS.json index 4ef3b85e..4792077a 100644 --- a/grafana/rmf-app/src/dashboards/dds/STORS.json +++ b/grafana/rmf-app/src/dashboards/dds/STORS.json @@ -248,7 +248,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "4289baf1-221c-4be3-b469-ad2ec1c31848", "selectedQuery": "MVS_IMAGE.REPORT.STORS{name=$LPAR}", "selectedResource": { "label": "TABLE(report=STORS&resource=,$LPAR,MVS_IMAGE)", @@ -401,7 +400,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", "selectedQuery": "MVS_IMAGE.REPORT_BANNER.STORS{name=$LPAR}", "selectedResource": { "label": "BANNER(report=STORS&resource=,$LPAR,MVS_IMAGE)", @@ -475,7 +473,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "885ff52d-c1c1-4112-951f-acdec5c20116", "selectedQuery": "MVS_IMAGE.REPORT_CAPTION.STORS{name=$LPAR}", "selectedResource": { "label": "CAPTION(report=STORS&resource=,$LPAR,MVS_IMAGE)", diff --git a/grafana/rmf-app/src/dashboards/dds/SYSINFO.json b/grafana/rmf-app/src/dashboards/dds/SYSINFO.json index e61bf0b9..7692c038 100644 --- a/grafana/rmf-app/src/dashboards/dds/SYSINFO.json +++ b/grafana/rmf-app/src/dashboards/dds/SYSINFO.json @@ -91,7 +91,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "6a55cb0b-c2bc-4586-b79d-53c103b29550", "selectedQuery": "MVS_IMAGE.REPORT.SYSINFO{name=$LPAR}", "selectedResource": { "label": "TABLE(report=SYSINFO&resource=,$LPAR,MVS_IMAGE)", @@ -364,7 +363,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", "selectedQuery": "MVS_IMAGE.REPORT_BANNER.SYSINFO{name=$LPAR}", "selectedResource": { "label": "BANNER(report=SYSINFO&resource=,$LPAR,MVS_IMAGE)", @@ -438,7 +436,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "885ff52d-c1c1-4112-951f-acdec5c20116", "selectedQuery": "MVS_IMAGE.REPORT_CAPTION.SYSINFO{name=$LPAR}", "selectedResource": { "label": "CAPTION(report=SYSINFO&resource=,$LPAR,MVS_IMAGE)", diff --git a/grafana/rmf-app/src/dashboards/dds/SYSRG.json b/grafana/rmf-app/src/dashboards/dds/SYSRG.json index aef76771..456180ca 100644 --- a/grafana/rmf-app/src/dashboards/dds/SYSRG.json +++ b/grafana/rmf-app/src/dashboards/dds/SYSRG.json @@ -93,7 +93,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "1ba9a8c4-b112-48ab-b8ff-d7979197efc4", "selectedQuery": "SYSPLEX.REPORT.SYSRG", "selectedResource": { "label": "TABLE(report=SYSRG&resource=,,SYSPLEX)", @@ -316,7 +315,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", "selectedQuery": "SYSPLEX.REPORT_BANNER.SYSRG", "selectedResource": { "label": "BANNER(report=SYSRG&resource=,,SYSPLEX)", diff --git a/grafana/rmf-app/src/dashboards/dds/SYSSUM.json b/grafana/rmf-app/src/dashboards/dds/SYSSUM.json index 20794382..8291559b 100644 --- a/grafana/rmf-app/src/dashboards/dds/SYSSUM.json +++ b/grafana/rmf-app/src/dashboards/dds/SYSSUM.json @@ -93,7 +93,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "48f2221c-2282-4937-85e0-b52a71e1d93e", "selectedQuery": "SYSPLEX.REPORT.SYSSUM", "selectedResource": { "label": "TABLE(report=SYSSUM&resource=,,SYSPLEX)", @@ -344,7 +343,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", "selectedQuery": "SYSPLEX.REPORT_BANNER.SYSSUM", "selectedResource": { "label": "BANNER(report=SYSSUM&resource=,,SYSPLEX)", @@ -418,7 +416,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "885ff52d-c1c1-4112-951f-acdec5c20116", "selectedQuery": "SYSPLEX.REPORT_CAPTION.SYSSUM", "selectedResource": { "label": "CAPTION(report=SYSSUM&resource=,,SYSPLEX)", diff --git a/grafana/rmf-app/src/dashboards/dds/USAGE.json b/grafana/rmf-app/src/dashboards/dds/USAGE.json index ca86c921..f57a2ad7 100644 --- a/grafana/rmf-app/src/dashboards/dds/USAGE.json +++ b/grafana/rmf-app/src/dashboards/dds/USAGE.json @@ -91,7 +91,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "aa2f5d29-d19b-4e8f-b782-32468729ab3f", "selectedQuery": "MVS_IMAGE.REPORT.USAGE{name=$LPAR}", "selectedResource": { "label": "TABLE(report=USAGE&resource=,$LPAR,MVS_IMAGE)", @@ -238,7 +237,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", "selectedQuery": "MVS_IMAGE.REPORT_BANNER.USAGE{name=$LPAR}", "selectedResource": { "label": "BANNER(report=USAGE&resource=,$LPAR,MVS_IMAGE)", diff --git a/grafana/rmf-app/src/dashboards/dds/Using & Delays (Timeline).json b/grafana/rmf-app/src/dashboards/dds/Using & Delays (Timeline).json index 98b34c1d..856ea229 100644 --- a/grafana/rmf-app/src/dashboards/dds/Using & Delays (Timeline).json +++ b/grafana/rmf-app/src/dashboards/dds/Using & Delays (Timeline).json @@ -133,7 +133,6 @@ }, "loadDataSource": "METRICS", "refId": "A", - "rmfPanelGuid": "c18a9e56-c601-40d6-bded-4191f826fea2", "selectedMetrics": [ { "description": "auto", @@ -156,7 +155,6 @@ "hide": false, "loadDataSource": "METRICS", "refId": "B", - "rmfPanelGuid": "c18a9e56-c601-40d6-bded-4191f826fea2", "selectedMetrics": [ { "description": "auto", @@ -179,7 +177,6 @@ "hide": false, "loadDataSource": "METRICS", "refId": "C", - "rmfPanelGuid": "c18a9e56-c601-40d6-bded-4191f826fea2", "selectedMetrics": [ { "description": "auto", @@ -282,7 +279,6 @@ }, "loadDataSource": "METRICS", "refId": "A", - "rmfPanelGuid": "61329563-dcdb-441e-b51a-aa993038705c", "selectedMetrics": [ { "description": "auto", @@ -305,7 +301,6 @@ "hide": false, "loadDataSource": "METRICS", "refId": "B", - "rmfPanelGuid": "61329563-dcdb-441e-b51a-aa993038705c", "selectedMetrics": [ { "description": "auto", @@ -328,7 +323,6 @@ "hide": false, "loadDataSource": "METRICS", "refId": "C", - "rmfPanelGuid": "61329563-dcdb-441e-b51a-aa993038705c", "selectedMetrics": [ { "description": "auto", @@ -351,7 +345,6 @@ "hide": false, "loadDataSource": "METRICS", "refId": "D", - "rmfPanelGuid": "61329563-dcdb-441e-b51a-aa993038705c", "selectedMetrics": [ { "description": "auto", @@ -374,7 +367,6 @@ "hide": false, "loadDataSource": "METRICS", "refId": "E", - "rmfPanelGuid": "61329563-dcdb-441e-b51a-aa993038705c", "selectedMetrics": [ { "description": "auto", @@ -397,7 +389,6 @@ "hide": false, "loadDataSource": "METRICS", "refId": "F", - "rmfPanelGuid": "61329563-dcdb-441e-b51a-aa993038705c", "selectedMetrics": [ { "description": "auto", @@ -420,7 +411,6 @@ "hide": false, "loadDataSource": "METRICS", "refId": "G", - "rmfPanelGuid": "61329563-dcdb-441e-b51a-aa993038705c", "selectedMetrics": [ { "description": "auto", diff --git a/grafana/rmf-app/src/dashboards/dds/Using & Delays.json b/grafana/rmf-app/src/dashboards/dds/Using & Delays.json index 3f02cc46..44efbcbb 100644 --- a/grafana/rmf-app/src/dashboards/dds/Using & Delays.json +++ b/grafana/rmf-app/src/dashboards/dds/Using & Delays.json @@ -179,7 +179,6 @@ }, "loadDataSource": "METRICS", "refId": "A", - "rmfPanelGuid": "2f3fa0f4-d9b1-4278-b732-2610b0094a45", "selectedMetrics": [ { "description": "auto", @@ -202,7 +201,6 @@ "hide": false, "loadDataSource": "METRICS", "refId": "B", - "rmfPanelGuid": "2f3fa0f4-d9b1-4278-b732-2610b0094a45", "selectedMetrics": [ { "description": "auto", @@ -225,7 +223,6 @@ "hide": false, "loadDataSource": "METRICS", "refId": "C", - "rmfPanelGuid": "2f3fa0f4-d9b1-4278-b732-2610b0094a45", "selectedMetrics": [ { "description": "auto", @@ -435,7 +432,6 @@ }, "loadDataSource": "METRICS", "refId": "A", - "rmfPanelGuid": "e52b7576-c93f-4254-83c0-3b09b7482f2d", "selectedMetrics": [ { "description": "auto", @@ -458,7 +454,6 @@ "hide": false, "loadDataSource": "METRICS", "refId": "B", - "rmfPanelGuid": "e52b7576-c93f-4254-83c0-3b09b7482f2d", "selectedMetrics": [ { "description": "auto", @@ -481,7 +476,6 @@ "hide": false, "loadDataSource": "METRICS", "refId": "C", - "rmfPanelGuid": "e52b7576-c93f-4254-83c0-3b09b7482f2d", "selectedMetrics": [ { "description": "auto", @@ -504,7 +498,6 @@ "hide": false, "loadDataSource": "METRICS", "refId": "D", - "rmfPanelGuid": "e52b7576-c93f-4254-83c0-3b09b7482f2d", "selectedMetrics": [ { "description": "auto", @@ -527,7 +520,6 @@ "hide": false, "loadDataSource": "METRICS", "refId": "E", - "rmfPanelGuid": "e52b7576-c93f-4254-83c0-3b09b7482f2d", "selectedMetrics": [ { "description": "auto", @@ -550,7 +542,6 @@ "hide": false, "loadDataSource": "METRICS", "refId": "F", - "rmfPanelGuid": "e52b7576-c93f-4254-83c0-3b09b7482f2d", "selectedMetrics": [ { "description": "auto", @@ -573,7 +564,6 @@ "hide": false, "loadDataSource": "METRICS", "refId": "G", - "rmfPanelGuid": "e52b7576-c93f-4254-83c0-3b09b7482f2d", "selectedMetrics": [ { "description": "auto", diff --git a/grafana/rmf-app/src/dashboards/dds/XCF Activity (Timeline).json b/grafana/rmf-app/src/dashboards/dds/XCF Activity (Timeline).json index 18cbd4fe..786638c9 100644 --- a/grafana/rmf-app/src/dashboards/dds/XCF Activity (Timeline).json +++ b/grafana/rmf-app/src/dashboards/dds/XCF Activity (Timeline).json @@ -133,7 +133,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "3bdf9ae8-f62b-40ec-b854-6ed5b66656a0", "selectedQuery": "SYSPLEX.signals sent by XCF group", "selectedResource": { "label": "id=8D3E40&resource=,,SYSPLEX", @@ -148,7 +147,6 @@ }, "hide": false, "refId": "B", - "rmfPanelGuid": "3bdf9ae8-f62b-40ec-b854-6ed5b66656a0", "selectedQuery": "SYSPLEX.signals received by XCF group", "selectedResource": { "label": "id=8D3E00&resource=,,SYSPLEX", @@ -244,7 +242,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "e074ed81-e389-4db3-bee6-ce27191643a2", "selectedQuery": "SYSPLEX.signals sent by XCF group and member", "selectedResource": { "label": "id=8D3E50&resource=,,SYSPLEX", @@ -259,7 +256,6 @@ }, "hide": false, "refId": "B", - "rmfPanelGuid": "e074ed81-e389-4db3-bee6-ce27191643a2", "selectedQuery": "SYSPLEX.signals received by XCF group and member", "selectedResource": { "label": "id=8D3E10&resource=,,SYSPLEX", @@ -355,7 +351,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "ab9c1f60-2901-4a38-9500-b775cd4df2b5", "selectedQuery": "SYSPLEX.signals sent by XCF systems and transport class", "selectedResource": { "label": "id=8D3E70&resource=,,SYSPLEX", @@ -451,7 +446,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "03d3c3a6-1ba1-4c49-969b-2b904b785419", "selectedQuery": "SYSPLEX.signals received by XCF systems", "selectedResource": { "label": "id=8D3E20&resource=,,SYSPLEX", diff --git a/grafana/rmf-app/src/dashboards/dds/XCF Activity.json b/grafana/rmf-app/src/dashboards/dds/XCF Activity.json index 1890a629..0a0c894f 100644 --- a/grafana/rmf-app/src/dashboards/dds/XCF Activity.json +++ b/grafana/rmf-app/src/dashboards/dds/XCF Activity.json @@ -163,7 +163,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "834a08f0-4082-498b-86fe-976e27223b27", "selectedQuery": "SYSPLEX.signals sent by XCF group", "selectedResource": { "label": "id=8D3E40&resource=,,SYSPLEX", @@ -178,7 +177,6 @@ }, "hide": false, "refId": "B", - "rmfPanelGuid": "834a08f0-4082-498b-86fe-976e27223b27", "selectedQuery": "SYSPLEX.signals received by XCF group", "selectedResource": { "label": "id=8D3E00&resource=,,SYSPLEX", @@ -313,7 +311,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "e75b194d-7adf-4104-beac-ca1a998154f8", "selectedQuery": "SYSPLEX.signals sent by XCF group and member", "selectedResource": { "label": "id=8D3E50&resource=,,SYSPLEX", @@ -328,7 +325,6 @@ }, "hide": false, "refId": "B", - "rmfPanelGuid": "e75b194d-7adf-4104-beac-ca1a998154f8", "selectedQuery": "SYSPLEX.signals received by XCF group and member", "selectedResource": { "label": "id=8D3E10&resource=,,SYSPLEX", @@ -448,7 +444,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "fc948aa9-f052-4eab-ada8-e61c33ccc362", "selectedQuery": "SYSPLEX.signals sent by XCF systems and transport class", "selectedResource": { "label": "id=8D3E70&resource=,,SYSPLEX", @@ -559,7 +554,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "31e6a5ca-3144-4422-9d08-25e3b319a833", "selectedQuery": "SYSPLEX.signals received by XCF systems", "selectedResource": { "label": "id=8D3E20&resource=,,SYSPLEX", diff --git a/grafana/rmf-app/src/dashboards/dds/XCFGROUP.json b/grafana/rmf-app/src/dashboards/dds/XCFGROUP.json index aa18a222..4fb220ec 100644 --- a/grafana/rmf-app/src/dashboards/dds/XCFGROUP.json +++ b/grafana/rmf-app/src/dashboards/dds/XCFGROUP.json @@ -93,7 +93,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "5e57a653-10c8-461d-8991-ada953c73ba8", "selectedQuery": "SYSPLEX.REPORT.XCFGROUP", "selectedResource": { "label": "TABLE(report=XCFGROUP&resource=,,SYSPLEX)", @@ -348,7 +347,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", "selectedQuery": "SYSPLEX.REPORT_BANNER.XCFGROUP", "selectedResource": { "label": "BANNER(report=XCFGROUP&resource=,,SYSPLEX)", diff --git a/grafana/rmf-app/src/dashboards/dds/XCFOVW.json b/grafana/rmf-app/src/dashboards/dds/XCFOVW.json index 4e7a999b..ed73f6af 100644 --- a/grafana/rmf-app/src/dashboards/dds/XCFOVW.json +++ b/grafana/rmf-app/src/dashboards/dds/XCFOVW.json @@ -93,7 +93,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "aa73ed04-967c-469d-a5f8-9eb0d1c8b092", "selectedQuery": "SYSPLEX.REPORT.XCFOVW", "selectedResource": { "label": "TABLE(report=XCFOVW&resource=,,SYSPLEX)", @@ -348,7 +347,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", "selectedQuery": "SYSPLEX.REPORT_BANNER.XCFOVW", "selectedResource": { "label": "BANNER(report=XCFOVW&resource=,,SYSPLEX)", diff --git a/grafana/rmf-app/src/dashboards/dds/XCFPATH.json b/grafana/rmf-app/src/dashboards/dds/XCFPATH.json index 061de34f..9621dbdc 100644 --- a/grafana/rmf-app/src/dashboards/dds/XCFPATH.json +++ b/grafana/rmf-app/src/dashboards/dds/XCFPATH.json @@ -120,7 +120,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "3282dc77-1ad7-4380-9a9a-0f846ea8af6a", "selectedQuery": "SYSPLEX.REPORT.XCFPATH", "selectedResource": { "label": "TABLE(report=XCFPATH&resource=,,SYSPLEX)", @@ -354,7 +353,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", "selectedQuery": "SYSPLEX.REPORT_BANNER.XCFPATH", "selectedResource": { "label": "BANNER(report=XCFPATH&resource=,,SYSPLEX)", diff --git a/grafana/rmf-app/src/dashboards/dds/XCFSYS.json b/grafana/rmf-app/src/dashboards/dds/XCFSYS.json index 970b69ce..e9dc2041 100644 --- a/grafana/rmf-app/src/dashboards/dds/XCFSYS.json +++ b/grafana/rmf-app/src/dashboards/dds/XCFSYS.json @@ -124,7 +124,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "056aa738-d1cf-46a4-aee4-2f7176b48b13", "selectedQuery": "SYSPLEX.REPORT.XCFSYS", "selectedResource": { "label": "TABLE(report=XCFSYS&resource=,,SYSPLEX)", @@ -343,7 +342,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", "selectedQuery": "SYSPLEX.REPORT_BANNER.XCFSYS", "selectedResource": { "label": "BANNER(report=XCFSYS&resource=,,SYSPLEX)", diff --git a/grafana/rmf-app/src/dashboards/dds/ZFSFS.json b/grafana/rmf-app/src/dashboards/dds/ZFSFS.json index 5ff81ffe..39d98414 100644 --- a/grafana/rmf-app/src/dashboards/dds/ZFSFS.json +++ b/grafana/rmf-app/src/dashboards/dds/ZFSFS.json @@ -93,7 +93,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "d4867b70-6f07-4a87-8390-5d947a775d05", "selectedQuery": "SYSPLEX.REPORT.ZFSFS", "selectedResource": { "label": "TABLE(report=ZFSFS&resource=,,SYSPLEX)", @@ -364,7 +363,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", "selectedQuery": "SYSPLEX.REPORT_BANNER.ZFSFS", "selectedResource": { "label": "BANNER(report=ZFSFS&resource=,,SYSPLEX)", diff --git a/grafana/rmf-app/src/dashboards/dds/ZFSKN.json b/grafana/rmf-app/src/dashboards/dds/ZFSKN.json index cc750ded..c73c8063 100644 --- a/grafana/rmf-app/src/dashboards/dds/ZFSKN.json +++ b/grafana/rmf-app/src/dashboards/dds/ZFSKN.json @@ -93,7 +93,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "31e86a06-d0fb-46e5-970a-d86e4c098749", "selectedQuery": "SYSPLEX.REPORT.ZFSKN", "selectedResource": { "label": "TABLE(report=ZFSKN&resource=,,SYSPLEX)", @@ -344,7 +343,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", "selectedQuery": "SYSPLEX.REPORT_BANNER.ZFSKN", "selectedResource": { "label": "BANNER(report=ZFSKN&resource=,,SYSPLEX)", diff --git a/grafana/rmf-app/src/dashboards/dds/ZFSOVW.json b/grafana/rmf-app/src/dashboards/dds/ZFSOVW.json index 0361e41d..921f4cce 100644 --- a/grafana/rmf-app/src/dashboards/dds/ZFSOVW.json +++ b/grafana/rmf-app/src/dashboards/dds/ZFSOVW.json @@ -93,7 +93,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "56006a7e-0517-4de8-80c8-29db0310d5a6", "selectedQuery": "SYSPLEX.REPORT.ZFSOVW", "selectedResource": { "label": "TABLE(report=ZFSOVW&resource=,,SYSPLEX)", @@ -394,7 +393,6 @@ "uid": "${datasource}" }, "refId": "A", - "rmfPanelGuid": "32527279-0540-461a-d0d9-fda367e5f0ec", "selectedQuery": "SYSPLEX.REPORT_BANNER.ZFSOVW", "selectedResource": { "label": "BANNER(report=ZFSOVW&resource=,,SYSPLEX)", diff --git a/grafana/rmf-app/src/datasource/common/common.helper.ts b/grafana/rmf-app/src/datasource/common/common.helper.ts index d6349d97..68f82302 100644 --- a/grafana/rmf-app/src/datasource/common/common.helper.ts +++ b/grafana/rmf-app/src/datasource/common/common.helper.ts @@ -79,20 +79,6 @@ export const getSelectedResource = (Props: any): string => { return result; }; -export const getSelectedGuid = (Props: any): string => { - let result = ''; - if ( - Props !== undefined && - Props.queries !== undefined && - Props.queries.length > 0 && - Props.queries[0].rmfPanelGuid !== undefined && - Props.queries[0].rmfPanelGuid.toString().trim() !== '' - ) { - result = Props.queries[0].rmfPanelGuid; - } - return result; -}; - export const isItFirstDotPosition = (str: string, selectionEnd: number): boolean => { if (str.toString().indexOf('.') === selectionEnd) { return true; diff --git a/grafana/rmf-app/src/datasource/common/types.ts b/grafana/rmf-app/src/datasource/common/types.ts index 703c6371..3e4c0927 100644 --- a/grafana/rmf-app/src/datasource/common/types.ts +++ b/grafana/rmf-app/src/datasource/common/types.ts @@ -53,7 +53,6 @@ export interface RMFQuery extends DataQuery { enableTimeSeries?: boolean; serviceCallInprogres?: boolean; errorMessage?: string; - rmfPanelGuid?: string; refreshRequired?: boolean; absoluteTimeSelected?: boolean; dashboardUid?: string; diff --git a/grafana/rmf-app/src/datasource/query-editor/queryeditor.parser.component.tsx b/grafana/rmf-app/src/datasource/query-editor/queryeditor.parser.component.tsx index 8658ae53..82f41ad5 100644 --- a/grafana/rmf-app/src/datasource/query-editor/queryeditor.parser.component.tsx +++ b/grafana/rmf-app/src/datasource/query-editor/queryeditor.parser.component.tsx @@ -22,10 +22,8 @@ import { RadioButtonGroup, Spinner, Switch } from '@grafana/ui'; import React, { PureComponent } from 'react'; import { AutocompleteTextField } from '../autocomplete-text/autocomplete-textfield'; import { - generateUUID, getEnableTimeSeriesStatus, getResource, - getSelectedGuid, getSelectedResource, getVisualisationType, isItFirstDotPosition, @@ -51,7 +49,6 @@ type Props = QueryEditorProps; type state = RMFQuery; let metricDict: any = {}; -let rmfPanelGuid = ''; export class QueryEditorAutoCompleteComponent extends PureComponent { editorSelectedResource = ''; @@ -78,10 +75,6 @@ export class QueryEditorAutoCompleteComponent extends PureComponent Date: Tue, 9 Dec 2025 15:34:33 +0100 Subject: [PATCH 06/26] grafana plugin version 2.0.0 Signed-off-by: dprizentsov --- grafana/rmf-app/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grafana/rmf-app/package.json b/grafana/rmf-app/package.json index 6ea6534a..ae3fcb9d 100644 --- a/grafana/rmf-app/package.json +++ b/grafana/rmf-app/package.json @@ -1,7 +1,7 @@ { "author": "IBM", "name": "ibm-rmf", - "version": "1.1.1", + "version": "2.0.0", "description": "IBM RMF for z/OS", "license": "Apache-2.0", "scripts": { From 1a25d77fb5f99fe05fccf259c6ce01a5b1442812 Mon Sep 17 00:00:00 2001 From: dprizentsov Date: Fri, 19 Dec 2025 16:05:56 +0100 Subject: [PATCH 07/26] 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 00000000..5968abb2 --- /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 702037bb..c3a7933c 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 7c7aa466..8914295e 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 bfce8a37..14acdcb0 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 08/26] 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 5968abb2..e26d4bcf 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 c3a7933c..a17ae351 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 00d749ca..b8a68a39 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 09/26] 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 a17ae351..5eacc3cf 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 10/26] 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 11/26] 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 e26d4bcf..527ff8a4 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 5eacc3cf..8f9bee6e 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 12/26] 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 527ff8a4..cbdce7ba 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 13/26] 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 cbdce7ba..d90afbf9 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 8f9bee6e..2af990d5 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 b8a68a39..6e69fd5d 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 From b9a7a973b5cc7c2e5140b90aeecf3ebe39f34210 Mon Sep 17 00:00:00 2001 From: dprizentsov Date: Mon, 19 Jan 2026 13:01:31 +0100 Subject: [PATCH 14/26] update direct dependency for security fix Signed-off-by: dprizentsov --- grafana/rmf-app/package.json | 2 +- grafana/rmf-app/yarn.lock | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/grafana/rmf-app/package.json b/grafana/rmf-app/package.json index ae3fcb9d..da8cd7bd 100644 --- a/grafana/rmf-app/package.json +++ b/grafana/rmf-app/package.json @@ -63,7 +63,7 @@ "eslint-plugin-react-hooks": "*", "eslint-webpack-plugin": "^5.0.2", "fork-ts-checker-webpack-plugin": "^9.1.0", - "glob": "^11.0.3", + "glob": "^11.1.0", "globals": "^16.3.0", "identity-obj-proxy": "^3.0.0", "imports-loader": "^5.0.0", diff --git a/grafana/rmf-app/yarn.lock b/grafana/rmf-app/yarn.lock index 250185fa..dafba60c 100644 --- a/grafana/rmf-app/yarn.lock +++ b/grafana/rmf-app/yarn.lock @@ -6557,19 +6557,19 @@ __metadata: languageName: node linkType: hard -"glob@npm:^11.0.3": - version: 11.0.3 - resolution: "glob@npm:11.0.3" +"glob@npm:^11.1.0": + version: 11.1.0 + resolution: "glob@npm:11.1.0" dependencies: foreground-child: "npm:^3.3.1" jackspeak: "npm:^4.1.1" - minimatch: "npm:^10.0.3" + minimatch: "npm:^10.1.1" minipass: "npm:^7.1.2" package-json-from-dist: "npm:^1.0.0" path-scurry: "npm:^2.0.0" bin: glob: dist/esm/bin.mjs - checksum: 10c0/7d24457549ec2903920dfa3d8e76850e7c02aa709122f0164b240c712f5455c0b457e6f2a1eee39344c6148e39895be8094ae8cfef7ccc3296ed30bce250c661 + checksum: 10c0/1ceae07f23e316a6fa74581d9a74be6e8c2e590d2f7205034dd5c0435c53f5f7b712c2be00c3b65bf0a49294a1c6f4b98cd84c7637e29453b5aa13b79f1763a2 languageName: node linkType: hard @@ -6944,7 +6944,7 @@ __metadata: eslint-plugin-react-hooks: "npm:*" eslint-webpack-plugin: "npm:^5.0.2" fork-ts-checker-webpack-plugin: "npm:^9.1.0" - glob: "npm:^11.0.3" + glob: "npm:^11.1.0" globals: "npm:^16.3.0" identity-obj-proxy: "npm:^3.0.0" imports-loader: "npm:^5.0.0" @@ -9123,7 +9123,7 @@ __metadata: languageName: node linkType: hard -"minimatch@npm:^10.0.3": +"minimatch@npm:^10.1.1": version: 10.1.1 resolution: "minimatch@npm:10.1.1" dependencies: From aeac031b69db1ad4c4255d7d2af3d87b79df08b0 Mon Sep 17 00:00:00 2001 From: dprizentsov Date: Mon, 19 Jan 2026 13:22:30 +0100 Subject: [PATCH 15/26] update Grafana dependencies to 12.3.1 Signed-off-by: dprizentsov --- grafana/rmf-app/package.json | 6 +- grafana/rmf-app/yarn.lock | 378 +++++++++++++++++++++++------------ 2 files changed, 255 insertions(+), 129 deletions(-) diff --git a/grafana/rmf-app/package.json b/grafana/rmf-app/package.json index da8cd7bd..397c391a 100644 --- a/grafana/rmf-app/package.json +++ b/grafana/rmf-app/package.json @@ -88,9 +88,9 @@ "node": ">=22" }, "dependencies": { - "@grafana/data": "^12.2.1", - "@grafana/runtime": "^12.2.1", - "@grafana/ui": "^12.2.1", + "@grafana/data": "^12.3.1", + "@grafana/runtime": "^12.3.1", + "@grafana/ui": "^12.3.1", "antlr4": "^4.13.2", "react": "^18.0.0", "react-dom": "^18.0.0" diff --git a/grafana/rmf-app/yarn.lock b/grafana/rmf-app/yarn.lock index dafba60c..3fbae3e3 100644 --- a/grafana/rmf-app/yarn.lock +++ b/grafana/rmf-app/yarn.lock @@ -962,25 +962,25 @@ __metadata: languageName: node linkType: hard -"@grafana/data@npm:12.2.1, @grafana/data@npm:^12.2.1": - version: 12.2.1 - resolution: "@grafana/data@npm:12.2.1" +"@grafana/data@npm:12.3.1, @grafana/data@npm:^12.3.1": + version: 12.3.1 + resolution: "@grafana/data@npm:12.3.1" dependencies: "@braintree/sanitize-url": "npm:7.0.1" - "@grafana/i18n": "npm:12.2.1" - "@grafana/schema": "npm:12.2.1" - "@leeoniya/ufuzzy": "npm:1.0.18" + "@grafana/i18n": "npm:12.3.1" + "@grafana/schema": "npm:12.3.1" + "@leeoniya/ufuzzy": "npm:1.0.19" "@types/d3-interpolate": "npm:^3.0.0" "@types/string-hash": "npm:1.1.3" "@types/systemjs": "npm:6.15.3" d3-interpolate: "npm:3.0.1" date-fns: "npm:4.1.0" - dompurify: "npm:3.2.6" + dompurify: "npm:3.3.0" eventemitter3: "npm:5.0.1" fast_array_intersect: "npm:1.1.0" history: "npm:4.10.1" lodash: "npm:4.17.21" - marked: "npm:16.1.1" + marked: "npm:16.3.0" marked-mangle: "npm:1.1.11" moment: "npm:2.30.1" moment-timezone: "npm:0.5.47" @@ -996,11 +996,11 @@ __metadata: peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 - checksum: 10c0/10fbf2f42a0573130cdc4ccef888110899b2d2c70cd44e530894eb7b23622b62411273a789d7f85ad3f7fce100e916295155db69cff6bea143e4d08568636bc2 + checksum: 10c0/ba1d8b663b143c3ea7150757251d66eb7f5aecea90b534189156bd702b85954537a49323db6435e6834f84ae4854176095950157a799dbcaca0f0f62d5e45822 languageName: node linkType: hard -"@grafana/e2e-selectors@npm:*, @grafana/e2e-selectors@npm:12.2.1": +"@grafana/e2e-selectors@npm:*": version: 12.2.1 resolution: "@grafana/e2e-selectors@npm:12.2.1" dependencies: @@ -1011,6 +1011,17 @@ __metadata: languageName: node linkType: hard +"@grafana/e2e-selectors@npm:12.3.1": + version: 12.3.1 + resolution: "@grafana/e2e-selectors@npm:12.3.1" + dependencies: + semver: "npm:^7.7.0" + tslib: "npm:2.8.1" + typescript: "npm:5.9.2" + checksum: 10c0/b0566d933c5a352234bae4b161fd001d98f33dd513610b355dedf052994eb9e2584205d7be5af4b45c77d5c0a6eeac042606daf2088c52e206fb578eaec1535b + languageName: node + linkType: hard + "@grafana/eslint-config@npm:^8.1.0": version: 8.2.0 resolution: "@grafana/eslint-config@npm:8.2.0" @@ -1049,9 +1060,9 @@ __metadata: languageName: node linkType: hard -"@grafana/i18n@npm:12.2.1": - version: 12.2.1 - resolution: "@grafana/i18n@npm:12.2.1" +"@grafana/i18n@npm:12.3.1": + version: 12.3.1 + resolution: "@grafana/i18n@npm:12.3.1" dependencies: "@formatjs/intl-durationformat": "npm:^0.7.0" "@typescript-eslint/utils": "npm:^8.33.1" @@ -1063,19 +1074,22 @@ __metadata: react-i18next: "npm:^15.0.0" peerDependencies: react: ">=18" - checksum: 10c0/759e9ee6b89bcf4d2a17e2032ed766a6688997c19a04e59714b7985db8db4b61d8fd62973277c5956bb4c85dfc67cd29862a9c2c1db3ebab9cf8cd0ea3c7d845 + checksum: 10c0/41eaee998f56a171a262029a1287954d9e8e6a502e8e57e058e6dbdf5e140954a9250f7132a92bbb4f702563d8518914db1c9ccd471196316e26164ecc6bbcc5 languageName: node linkType: hard -"@grafana/runtime@npm:^12.2.1": - version: 12.2.1 - resolution: "@grafana/runtime@npm:12.2.1" +"@grafana/runtime@npm:^12.3.1": + version: 12.3.1 + resolution: "@grafana/runtime@npm:12.3.1" dependencies: - "@grafana/data": "npm:12.2.1" - "@grafana/e2e-selectors": "npm:12.2.1" + "@grafana/data": "npm:12.3.1" + "@grafana/e2e-selectors": "npm:12.3.1" "@grafana/faro-web-sdk": "npm:^1.13.2" - "@grafana/schema": "npm:12.2.1" - "@grafana/ui": "npm:12.2.1" + "@grafana/schema": "npm:12.3.1" + "@grafana/ui": "npm:12.3.1" + "@openfeature/core": "npm:^1.9.0" + "@openfeature/ofrep-web-provider": "npm:^0.3.3" + "@openfeature/web-sdk": "npm:^1.6.1" "@types/systemjs": "npm:6.15.3" history: "npm:4.10.1" lodash: "npm:4.17.21" @@ -1086,16 +1100,16 @@ __metadata: peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 - checksum: 10c0/24eba29de743eaed35c65ba2fb5b02f2fb786bd19fa29208fc250b6b9c3f9c7cdd21d79aa0a3171827943256a082cd9ef3d7f51fc414766067cd2cdd31c5b0a7 + checksum: 10c0/17c1fa01fa850e375cd29433e4fdc71fd4834175f8f768a5b52383e25f24ac16caa84d098aa0cd4f589ab34dcd050340b270af06204da61a06d3989e55987ced languageName: node linkType: hard -"@grafana/schema@npm:12.2.1": - version: 12.2.1 - resolution: "@grafana/schema@npm:12.2.1" +"@grafana/schema@npm:12.3.1": + version: 12.3.1 + resolution: "@grafana/schema@npm:12.3.1" dependencies: tslib: "npm:2.8.1" - checksum: 10c0/030fb7691100ee9c7936f8e6a1e32ff8abc6bcebc57bdf4bcfa933121ef732dcc5bfd1e686f75fbcd3dfd38cbf618fe5c401afabbb19f2f96c9fbcd889a6fc3f + checksum: 10c0/81d081b4b8879352d25240353d25700ff161c898d3611e22b024ca2c02204ebdced28e3d7ebda3c866bfd695f2164424f29aa4977309cec8595c3f230f9b8453 languageName: node linkType: hard @@ -1106,28 +1120,28 @@ __metadata: languageName: node linkType: hard -"@grafana/ui@npm:12.2.1, @grafana/ui@npm:^12.2.1": - version: 12.2.1 - resolution: "@grafana/ui@npm:12.2.1" +"@grafana/ui@npm:12.3.1, @grafana/ui@npm:^12.3.1": + version: 12.3.1 + resolution: "@grafana/ui@npm:12.3.1" dependencies: "@emotion/css": "npm:11.13.5" "@emotion/react": "npm:11.14.0" "@emotion/serialize": "npm:1.3.3" "@floating-ui/react": "npm:0.27.16" - "@grafana/data": "npm:12.2.1" - "@grafana/e2e-selectors": "npm:12.2.1" + "@grafana/data": "npm:12.3.1" + "@grafana/e2e-selectors": "npm:12.3.1" "@grafana/faro-web-sdk": "npm:^1.13.2" - "@grafana/i18n": "npm:12.2.1" - "@grafana/schema": "npm:12.2.1" + "@grafana/i18n": "npm:12.3.1" + "@grafana/schema": "npm:12.3.1" "@hello-pangea/dnd": "npm:18.0.1" "@monaco-editor/react": "npm:4.7.0" "@popperjs/core": "npm:2.11.8" - "@react-aria/dialog": "npm:3.5.28" - "@react-aria/focus": "npm:3.21.0" - "@react-aria/overlays": "npm:3.28.0" - "@react-aria/utils": "npm:3.30.0" + "@react-aria/dialog": "npm:3.5.31" + "@react-aria/focus": "npm:3.21.2" + "@react-aria/overlays": "npm:3.30.0" + "@react-aria/utils": "npm:3.31.0" "@tanstack/react-virtual": "npm:^3.5.1" - "@types/jquery": "npm:3.5.32" + "@types/jquery": "npm:3.5.33" "@types/lodash": "npm:4.17.20" "@types/react-table": "npm:7.7.20" calculate-size: "npm:1.1.1" @@ -1139,7 +1153,7 @@ __metadata: hoist-non-react-statics: "npm:3.3.2" i18next: "npm:^25.0.0" i18next-browser-languagedetector: "npm:^8.0.0" - immutable: "npm:5.1.3" + immutable: "npm:5.1.4" is-hotkey: "npm:0.2.0" jquery: "npm:3.7.1" lodash: "npm:4.17.21" @@ -1151,7 +1165,7 @@ __metadata: rc-cascader: "npm:3.34.0" rc-drawer: "npm:7.3.0" rc-picker: "npm:4.11.3" - rc-slider: "npm:11.1.8" + rc-slider: "npm:11.1.9" rc-tooltip: "npm:6.4.0" react-calendar: "npm:^6.0.0" react-colorful: "npm:5.6.1" @@ -1182,7 +1196,7 @@ __metadata: peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 - checksum: 10c0/6107c67e27c52c338f207a53dcc1e75d234d162514ae662f7b9ae7f56bdd01ab6b15e370914d95bf6a5849e9e13b50dcbc5de1fde3bb584ccace2456993d8875 + checksum: 10c0/424c5a0b0aa45a09522f837c0d645ca757f833a37210ddc6478680edb7b8ac399159085709deb497eb959b6e2396a181bda48e412e5d60a8d05664d8336538fe languageName: node linkType: hard @@ -1249,6 +1263,15 @@ __metadata: languageName: node linkType: hard +"@internationalized/date@npm:^3.10.1": + version: 3.10.1 + resolution: "@internationalized/date@npm:3.10.1" + dependencies: + "@swc/helpers": "npm:^0.5.0" + checksum: 10c0/2b7a8144a97baf0c8bd9f3ef28fe86238e2cfde3b837c943aa03bd07354a04753bab3fd7162e5865c284f5b2616e832c9eee395dec92c0fed4eff57615d9d940 + languageName: node + linkType: hard + "@internationalized/message@npm:^3.1.8": version: 3.1.8 resolution: "@internationalized/message@npm:3.1.8" @@ -1719,10 +1742,10 @@ __metadata: languageName: node linkType: hard -"@leeoniya/ufuzzy@npm:1.0.18": - version: 1.0.18 - resolution: "@leeoniya/ufuzzy@npm:1.0.18" - checksum: 10c0/d8fa13373f5de666b5a65585a8d2e8f99ba24e5d2f695099194560f02c9184dbceaa0490e712fa4851f972a5dbbcdcc71569e0091afbd2e6e772d716065b200a +"@leeoniya/ufuzzy@npm:1.0.19": + version: 1.0.19 + resolution: "@leeoniya/ufuzzy@npm:1.0.19" + checksum: 10c0/a8d36a2672565d92a3ff41dff335b02bc3ee8c27974e7f680da9e19457702e8b39b0132ad5c480ee064acc9871f590672e23533c492ea68b20a0fb4c32a116c6 languageName: node linkType: hard @@ -1808,6 +1831,42 @@ __metadata: languageName: node linkType: hard +"@openfeature/core@npm:^1.9.0": + version: 1.9.1 + resolution: "@openfeature/core@npm:1.9.1" + checksum: 10c0/983c651484621e6e5a3b4bf83fce5398a1adc2ace6162ff5a13a8eaf6d285b7c6b15f5c0a477ece9010ca88b28799985d810047ea0c18324d7a51ac4d04e18d6 + languageName: node + linkType: hard + +"@openfeature/ofrep-core@npm:^2.0.0": + version: 2.0.0 + resolution: "@openfeature/ofrep-core@npm:2.0.0" + peerDependencies: + "@openfeature/core": ^1.6.0 + checksum: 10c0/d7c3352d8024fe3b5ea9687ad32b3532550682b3baef0dcfb3cb32cebc5c77c70883977fa8cf7f2af43916acc80918496df9b76b9d3fd206994ff20a8265bb45 + languageName: node + linkType: hard + +"@openfeature/ofrep-web-provider@npm:^0.3.3": + version: 0.3.5 + resolution: "@openfeature/ofrep-web-provider@npm:0.3.5" + dependencies: + "@openfeature/ofrep-core": "npm:^2.0.0" + peerDependencies: + "@openfeature/web-sdk": ^1.4.0 + checksum: 10c0/4cd0e83ad4660151bb107d7e8f1dabe797a3b86971719f9045748b1abc17afb04b87128ba17e4f3bb56abb86995250951a2f3ef05827fbf4c20ec889efce5205 + languageName: node + linkType: hard + +"@openfeature/web-sdk@npm:^1.6.1": + version: 1.7.2 + resolution: "@openfeature/web-sdk@npm:1.7.2" + peerDependencies: + "@openfeature/core": ^1.9.0 + checksum: 10c0/dce511a87c035bba3305d81aa6a3e80638f6623319d16065f32ce8047adef5170df14658cba531074665f7c4764953b8607c733a9f94804ff7feb8ff175235fe + languageName: node + linkType: hard + "@opentelemetry/api-logs@npm:0.202.0": version: 0.202.0 resolution: "@opentelemetry/api-logs@npm:0.202.0" @@ -2196,56 +2255,56 @@ __metadata: languageName: node linkType: hard -"@react-aria/dialog@npm:3.5.28": - version: 3.5.28 - resolution: "@react-aria/dialog@npm:3.5.28" +"@react-aria/dialog@npm:3.5.31": + version: 3.5.31 + resolution: "@react-aria/dialog@npm:3.5.31" dependencies: - "@react-aria/interactions": "npm:^3.25.4" - "@react-aria/overlays": "npm:^3.28.0" - "@react-aria/utils": "npm:^3.30.0" - "@react-types/dialog": "npm:^3.5.20" - "@react-types/shared": "npm:^3.31.0" + "@react-aria/interactions": "npm:^3.25.6" + "@react-aria/overlays": "npm:^3.30.0" + "@react-aria/utils": "npm:^3.31.0" + "@react-types/dialog": "npm:^3.5.22" + "@react-types/shared": "npm:^3.32.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - checksum: 10c0/2138c4a2c5845064061639045af12cdbbbdc9fcc8fe2255513aa4e288ef127030d022e67dc727db7155220616521899c5cf627845cf44e54f4ef2375b66271b2 + checksum: 10c0/8a9e6498a15bd8a95b2f426436d25183b41ed1a522a35384da69976d118d3471580b7aab0a90e9995dc566641897c41f9f7937a79aeeb666ba692ffacbec2a8c languageName: node linkType: hard -"@react-aria/focus@npm:3.21.0": - version: 3.21.0 - resolution: "@react-aria/focus@npm:3.21.0" +"@react-aria/focus@npm:3.21.2, @react-aria/focus@npm:^3.21.2": + version: 3.21.2 + resolution: "@react-aria/focus@npm:3.21.2" dependencies: - "@react-aria/interactions": "npm:^3.25.4" - "@react-aria/utils": "npm:^3.30.0" - "@react-types/shared": "npm:^3.31.0" + "@react-aria/interactions": "npm:^3.25.6" + "@react-aria/utils": "npm:^3.31.0" + "@react-types/shared": "npm:^3.32.1" "@swc/helpers": "npm:^0.5.0" clsx: "npm:^2.0.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - checksum: 10c0/036b6811b137bc9e305c2340bd9ae0539567f0acc63b6bad6b768a640ade8d1728748ee0dd4da822a1c874e93c40ac042854c7bcd0bc8ee5541a9d4742f41c61 + checksum: 10c0/bfcdbb8d47bf038c035b025df6b9c292eeea9a2af7c77ec2ac27c302cb64dc481cfe80bb6575b399301ad1516feba134dec01e3c112ca2cf912ca13b47965917 languageName: node linkType: hard -"@react-aria/focus@npm:^3.21.0, @react-aria/focus@npm:^3.21.2": - version: 3.21.2 - resolution: "@react-aria/focus@npm:3.21.2" +"@react-aria/focus@npm:^3.21.3": + version: 3.21.3 + resolution: "@react-aria/focus@npm:3.21.3" dependencies: - "@react-aria/interactions": "npm:^3.25.6" - "@react-aria/utils": "npm:^3.31.0" + "@react-aria/interactions": "npm:^3.26.0" + "@react-aria/utils": "npm:^3.32.0" "@react-types/shared": "npm:^3.32.1" "@swc/helpers": "npm:^0.5.0" clsx: "npm:^2.0.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - checksum: 10c0/bfcdbb8d47bf038c035b025df6b9c292eeea9a2af7c77ec2ac27c302cb64dc481cfe80bb6575b399301ad1516feba134dec01e3c112ca2cf912ca13b47965917 + checksum: 10c0/c1169f2047908dd2641439ed49b51d1482df00514f5adc569d73727bc6375150198dd1b6e345a79fc31f3571d7d09549743ba2e6b3168ed8d6a554708d48fa9b languageName: node linkType: hard -"@react-aria/i18n@npm:^3.12.11, @react-aria/i18n@npm:^3.12.13": +"@react-aria/i18n@npm:^3.12.13": version: 3.12.13 resolution: "@react-aria/i18n@npm:3.12.13" dependencies: @@ -2264,7 +2323,26 @@ __metadata: languageName: node linkType: hard -"@react-aria/interactions@npm:^3.25.4, @react-aria/interactions@npm:^3.25.6": +"@react-aria/i18n@npm:^3.12.14": + version: 3.12.14 + resolution: "@react-aria/i18n@npm:3.12.14" + dependencies: + "@internationalized/date": "npm:^3.10.1" + "@internationalized/message": "npm:^3.1.8" + "@internationalized/number": "npm:^3.6.5" + "@internationalized/string": "npm:^3.2.7" + "@react-aria/ssr": "npm:^3.9.10" + "@react-aria/utils": "npm:^3.32.0" + "@react-types/shared": "npm:^3.32.1" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/c25095a268b30b715713a7f2af8e4023cb9b6993118f824ceafcaa7af65200ccaa4ff8b100a670f58821a007cb57f2571a7a6823b492a116b38a43ca880ebd8b + languageName: node + linkType: hard + +"@react-aria/interactions@npm:^3.25.6": version: 3.25.6 resolution: "@react-aria/interactions@npm:3.25.6" dependencies: @@ -2280,29 +2358,23 @@ __metadata: languageName: node linkType: hard -"@react-aria/overlays@npm:3.28.0": - version: 3.28.0 - resolution: "@react-aria/overlays@npm:3.28.0" +"@react-aria/interactions@npm:^3.26.0": + version: 3.26.0 + resolution: "@react-aria/interactions@npm:3.26.0" dependencies: - "@react-aria/focus": "npm:^3.21.0" - "@react-aria/i18n": "npm:^3.12.11" - "@react-aria/interactions": "npm:^3.25.4" "@react-aria/ssr": "npm:^3.9.10" - "@react-aria/utils": "npm:^3.30.0" - "@react-aria/visually-hidden": "npm:^3.8.26" - "@react-stately/overlays": "npm:^3.6.18" - "@react-types/button": "npm:^3.13.0" - "@react-types/overlays": "npm:^3.9.0" - "@react-types/shared": "npm:^3.31.0" + "@react-aria/utils": "npm:^3.32.0" + "@react-stately/flags": "npm:^3.1.2" + "@react-types/shared": "npm:^3.32.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - checksum: 10c0/ecd3ce4ad847d667f7b57e8fedc300b41f2a2f1694cdd3510bfac6635f2b23bcb114ec13cdb6255160eefbcbfc3aa80d6e19d77764e76e2558c8b761218a304e + checksum: 10c0/542044d08c02aec337ceda1ed55e5b01f6fa3e76c930b0063bc4a2146102d39659df81570912b7bef4782e268c08bbfdca82a44df413ec8ce8f1bdf930e97051 languageName: node linkType: hard -"@react-aria/overlays@npm:^3.28.0": +"@react-aria/overlays@npm:3.30.0": version: 3.30.0 resolution: "@react-aria/overlays@npm:3.30.0" dependencies: @@ -2324,6 +2396,28 @@ __metadata: languageName: node linkType: hard +"@react-aria/overlays@npm:^3.30.0": + version: 3.31.0 + resolution: "@react-aria/overlays@npm:3.31.0" + dependencies: + "@react-aria/focus": "npm:^3.21.3" + "@react-aria/i18n": "npm:^3.12.14" + "@react-aria/interactions": "npm:^3.26.0" + "@react-aria/ssr": "npm:^3.9.10" + "@react-aria/utils": "npm:^3.32.0" + "@react-aria/visually-hidden": "npm:^3.8.29" + "@react-stately/overlays": "npm:^3.6.21" + "@react-types/button": "npm:^3.14.1" + "@react-types/overlays": "npm:^3.9.2" + "@react-types/shared": "npm:^3.32.1" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/6cdc30d669e42c1a69af33c5c6da37fecae6139be923b4bddb17ac79392a40d62c3f3d67a0437201bddd1cc3b07b2e6d4ffeb5fb285db319427a5552ac4383f0 + languageName: node + linkType: hard + "@react-aria/ssr@npm:^3.9.10": version: 3.9.10 resolution: "@react-aria/ssr@npm:3.9.10" @@ -2335,41 +2429,41 @@ __metadata: languageName: node linkType: hard -"@react-aria/utils@npm:3.30.0": - version: 3.30.0 - resolution: "@react-aria/utils@npm:3.30.0" +"@react-aria/utils@npm:3.31.0, @react-aria/utils@npm:^3.31.0": + version: 3.31.0 + resolution: "@react-aria/utils@npm:3.31.0" dependencies: "@react-aria/ssr": "npm:^3.9.10" "@react-stately/flags": "npm:^3.1.2" "@react-stately/utils": "npm:^3.10.8" - "@react-types/shared": "npm:^3.31.0" + "@react-types/shared": "npm:^3.32.1" "@swc/helpers": "npm:^0.5.0" clsx: "npm:^2.0.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - checksum: 10c0/d845c76eee4ce09248244b698df11c4eb6bf374a9735d74af8acf9e2d4f01ab0653dd707a48f8b1c5cc54b23ce0eb2b2897f770c82eb35045a284f2fbd572f34 + checksum: 10c0/a6b5c6b85a51fa9ca204f045f70d36a55e16b56b85141d556eaacb7b74c4c0915189f6d2baea06df59bdd2926dcca08c2313c98478dbb50ed8e59f9b6754735c languageName: node linkType: hard -"@react-aria/utils@npm:^3.30.0, @react-aria/utils@npm:^3.31.0": - version: 3.31.0 - resolution: "@react-aria/utils@npm:3.31.0" +"@react-aria/utils@npm:^3.32.0": + version: 3.32.0 + resolution: "@react-aria/utils@npm:3.32.0" dependencies: "@react-aria/ssr": "npm:^3.9.10" "@react-stately/flags": "npm:^3.1.2" - "@react-stately/utils": "npm:^3.10.8" + "@react-stately/utils": "npm:^3.11.0" "@react-types/shared": "npm:^3.32.1" "@swc/helpers": "npm:^0.5.0" clsx: "npm:^2.0.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - checksum: 10c0/a6b5c6b85a51fa9ca204f045f70d36a55e16b56b85141d556eaacb7b74c4c0915189f6d2baea06df59bdd2926dcca08c2313c98478dbb50ed8e59f9b6754735c + checksum: 10c0/10fd9b162f8c752bf70070f5e091eaf3bd2c163b0a86e1f29c306c766b6b1acbbefa85c1ed6c28973b858afeafd638faa783361440c679890698c3d78bb50121 languageName: node linkType: hard -"@react-aria/visually-hidden@npm:^3.8.26, @react-aria/visually-hidden@npm:^3.8.28": +"@react-aria/visually-hidden@npm:^3.8.28": version: 3.8.28 resolution: "@react-aria/visually-hidden@npm:3.8.28" dependencies: @@ -2384,6 +2478,21 @@ __metadata: languageName: node linkType: hard +"@react-aria/visually-hidden@npm:^3.8.29": + version: 3.8.29 + resolution: "@react-aria/visually-hidden@npm:3.8.29" + dependencies: + "@react-aria/interactions": "npm:^3.26.0" + "@react-aria/utils": "npm:^3.32.0" + "@react-types/shared": "npm:^3.32.1" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/6a5a6cf115bdf2e96cd54210b2fc28884ee70875982ebfc3ff8423e8d887968a1f5d6cf66af27799b3727f9e49c85fb9eb84ec0f81c8ed530eb2b5e5ac617776 + languageName: node + linkType: hard + "@react-stately/flags@npm:^3.1.2": version: 3.1.2 resolution: "@react-stately/flags@npm:3.1.2" @@ -2393,7 +2502,7 @@ __metadata: languageName: node linkType: hard -"@react-stately/overlays@npm:^3.6.18, @react-stately/overlays@npm:^3.6.20": +"@react-stately/overlays@npm:^3.6.20": version: 3.6.20 resolution: "@react-stately/overlays@npm:3.6.20" dependencies: @@ -2406,6 +2515,19 @@ __metadata: languageName: node linkType: hard +"@react-stately/overlays@npm:^3.6.21": + version: 3.6.21 + resolution: "@react-stately/overlays@npm:3.6.21" + dependencies: + "@react-stately/utils": "npm:^3.11.0" + "@react-types/overlays": "npm:^3.9.2" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/1f52664e8a21f2841b3818e35588188ac86f03b783c8caa47290abc7582a778ff06416071fd504429e6c808ea13fdf004681f5d2e001955da57c5310daf959bc + languageName: node + linkType: hard + "@react-stately/utils@npm:^3.10.8": version: 3.10.8 resolution: "@react-stately/utils@npm:3.10.8" @@ -2417,7 +2539,18 @@ __metadata: languageName: node linkType: hard -"@react-types/button@npm:^3.13.0, @react-types/button@npm:^3.14.1": +"@react-stately/utils@npm:^3.11.0": + version: 3.11.0 + resolution: "@react-stately/utils@npm:3.11.0" + dependencies: + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/09b38438df19fd8ff14d3147b2f9e5d42869b3ee637b0e33d6f2ab5cba93612e640c6de339b766b8c825d7bef828851fd551d5a197a037eb1331913546b8516c + languageName: node + linkType: hard + +"@react-types/button@npm:^3.14.1": version: 3.14.1 resolution: "@react-types/button@npm:3.14.1" dependencies: @@ -2428,7 +2561,7 @@ __metadata: languageName: node linkType: hard -"@react-types/dialog@npm:^3.5.20": +"@react-types/dialog@npm:^3.5.22": version: 3.5.22 resolution: "@react-types/dialog@npm:3.5.22" dependencies: @@ -2440,7 +2573,7 @@ __metadata: languageName: node linkType: hard -"@react-types/overlays@npm:^3.9.0, @react-types/overlays@npm:^3.9.2": +"@react-types/overlays@npm:^3.9.2": version: 3.9.2 resolution: "@react-types/overlays@npm:3.9.2" dependencies: @@ -2451,7 +2584,7 @@ __metadata: languageName: node linkType: hard -"@react-types/shared@npm:^3.31.0, @react-types/shared@npm:^3.32.1": +"@react-types/shared@npm:^3.32.1": version: 3.32.1 resolution: "@react-types/shared@npm:3.32.1" peerDependencies: @@ -2933,12 +3066,12 @@ __metadata: languageName: node linkType: hard -"@types/jquery@npm:3.5.32": - version: 3.5.32 - resolution: "@types/jquery@npm:3.5.32" +"@types/jquery@npm:3.5.33": + version: 3.5.33 + resolution: "@types/jquery@npm:3.5.33" dependencies: "@types/sizzle": "npm:*" - checksum: 10c0/4a17ad6819b89026c21323656ab01b0b263f9d470910a87c8740920ff98319d503c7352b85b50134a39724ecbfccabc73aa4c741dfdd460cf8bbe714f9259054 + checksum: 10c0/d96c42762b7370ddf3b81cdad436a79d275e0ff09e2f4d7fbf2bbd8f97acef4110a11f1c3cb683195a1eba4fd9959e59d73f84d56ce2c010907a2bea696eb057 languageName: node linkType: hard @@ -5305,15 +5438,15 @@ __metadata: languageName: node linkType: hard -"dompurify@npm:3.2.6": - version: 3.2.6 - resolution: "dompurify@npm:3.2.6" +"dompurify@npm:3.3.0": + version: 3.3.0 + resolution: "dompurify@npm:3.3.0" dependencies: "@types/trusted-types": "npm:^2.0.7" dependenciesMeta: "@types/trusted-types": optional: true - checksum: 10c0/c8f8e5b0879a0d93c84a2e5e78649a47d0c057ed0f7850ca3d573d2cca64b84fb1ff85bd4b20980ade69c4e5b80ae73011340f1c2ff375c7ef98bb8268e1d13a + checksum: 10c0/66b1787b0bc8250d8f58e13284cf7f5f6bb400a0a55515e7a2a030316a4bb0d8306fdb669c17ed86ed58ff7e53c62b5da4488c2f261d11c58870fe01b8fcc486 languageName: node linkType: hard @@ -6910,12 +7043,12 @@ __metadata: "@eslint/js": "npm:^9.30.1" "@eslint/json": "npm:^0.12.0" "@eslint/markdown": "npm:^6.6.0" - "@grafana/data": "npm:^12.2.1" + "@grafana/data": "npm:^12.3.1" "@grafana/e2e-selectors": "npm:*" "@grafana/eslint-config": "npm:^8.1.0" - "@grafana/runtime": "npm:^12.2.1" + "@grafana/runtime": "npm:^12.3.1" "@grafana/tsconfig": "npm:^2.0.0" - "@grafana/ui": "npm:^12.2.1" + "@grafana/ui": "npm:^12.3.1" "@playwright/test": "npm:^1.56.1" "@stylistic/eslint-plugin-ts": "npm:*" "@swc/core": "npm:^1.12.11" @@ -7010,14 +7143,7 @@ __metadata: languageName: node linkType: hard -"immutable@npm:5.1.3": - version: 5.1.3 - resolution: "immutable@npm:5.1.3" - checksum: 10c0/f094891dcefb9488a84598376c9218ebff3a130c8b807bda3f6b703c45fe7ef238b8bf9a1eb9961db0523c8d7eb116ab6f47166702e4bbb1927ff5884157cd97 - languageName: node - linkType: hard - -"immutable@npm:^5.0.2": +"immutable@npm:5.1.4, immutable@npm:^5.0.2": version: 5.1.4 resolution: "immutable@npm:5.1.4" checksum: 10c0/f1c98382e4cde14a0b218be3b9b2f8441888da8df3b8c064aa756071da55fbed6ad696e5959982508456332419be9fdeaf29b2e58d0eadc45483cc16963c0446 @@ -8486,12 +8612,12 @@ __metadata: languageName: node linkType: hard -"marked@npm:16.1.1": - version: 16.1.1 - resolution: "marked@npm:16.1.1" +"marked@npm:16.3.0": + version: 16.3.0 + resolution: "marked@npm:16.3.0" bin: marked: bin/marked.js - checksum: 10c0/1b02f1b9e82fe8fec1e1fd7d2f96ea19001bf535c8558f70dcb6e28c7afcd03f34095689484bbde600d00c33d5bb51b3f9b29932aee324751047e40f4d092a9c + checksum: 10c0/5a3d7da93d7692014c8764c31dc741fa6ee16d8573788a3b28d041c440e79177c46d786ad7c1fc2b3f5e301d6db32e22da45efd4c00ddbc31caf87bd8e9a673b languageName: node linkType: hard @@ -10302,9 +10428,9 @@ __metadata: languageName: node linkType: hard -"rc-slider@npm:11.1.8": - version: 11.1.8 - resolution: "rc-slider@npm:11.1.8" +"rc-slider@npm:11.1.9": + version: 11.1.9 + resolution: "rc-slider@npm:11.1.9" dependencies: "@babel/runtime": "npm:^7.10.1" classnames: "npm:^2.2.5" @@ -10312,7 +10438,7 @@ __metadata: peerDependencies: react: ">=16.9.0" react-dom: ">=16.9.0" - checksum: 10c0/b202599abf85e21234c2cababe9c6f908aa7fcdde9eca413ef96b209838f3b1a33292d1a1bbe571b84bf46f8a5d28d5c1a070f331bddc0504101e9e2a75cf422 + checksum: 10c0/193c432e2859ba42b2235cc1949de2d929ba70fa4aa5672eaa5da692797f3fe927f8c0b2a75cc45c6b9f666f204f4ed038ccf904273d6cbc39e112f4a00ddd4a languageName: node linkType: hard From 2b95b4f58bf784dffce72b07ca60d8b712955218 Mon Sep 17 00:00:00 2001 From: dprizentsov Date: Fri, 23 Jan 2026 16:22:34 +0100 Subject: [PATCH 16/26] fix field name in Join by field transformation while importing PM dashboard Signed-off-by: dprizentsov --- .../rmf-app/src/components/Root/PmImport.ts | 70 +- grafana/rmf-app/src/metrics/dds/index.json | 15832 ++++++++++------ 2 files changed, 9967 insertions(+), 5935 deletions(-) diff --git a/grafana/rmf-app/src/components/Root/PmImport.ts b/grafana/rmf-app/src/components/Root/PmImport.ts index d90afbf9..84d63969 100644 --- a/grafana/rmf-app/src/components/Root/PmImport.ts +++ b/grafana/rmf-app/src/components/Root/PmImport.ts @@ -50,15 +50,15 @@ function getEmptyDashboard(): any { return JSON.parse(JSON.stringify(emptyDashboard)); } -function prepareMetricMap() : Map { - const metricMap = new Map(); +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 || ''}); + metricMap.set(m.id.toUpperCase(), {id: m.id, listtype: m.listtype || '', description: m.description || ''}); } } return metricMap; @@ -322,18 +322,29 @@ function getXFieldName(dataView: DataView): string { } function getXFieldNameFromSeries(series: Series): string { - var metricid = getMetricIdFromSeries(series); - if (!singleMetric(metricid)) { - return 'partition'; + var fn = getFieldNameFromSeries(series); + if (fn) { + return fn; } return 'time'; } function singleMetric(metricid: string): boolean { var metricDef = findmetricById(metricid); - if (metricDef && metricDef.listtype && metricDef.listtype.trim() === '') { - return true; - } + return isSingleMetric(metricDef); +} + +function isSingleMetric(metricDef: {id: string, listtype: string, description: string} | null): boolean { + if (metricDef && metricDef.listtype) { + return metricDef.listtype.trim() === ''; + }; + return false; +} + +function isListMetric(metricDef: {id: string, listtype: string, description: string} | null): boolean { + if (metricDef && metricDef.listtype) { + return metricDef.listtype.trim() !== ''; + }; return false; } @@ -345,7 +356,7 @@ function getVisualizationType(series: Series): string { return 'bargauge'; } -function findmetricById(metricid: string): {id: string; listtype: string} | null { +function findmetricById(metricid: string): {id: string; listtype: string, description: string} | null { return metricMap.get(metricid) || null; } @@ -453,14 +464,47 @@ function getTransformationsFromDataView(dataView: DataView): any[] { function getGroupByField(dataView: DataView): string { if (dataView?.SERIES && dataView.SERIES.length > 0) { - var metricid = getMetricIdFromSeries(dataView.SERIES[0]); - if (!singleMetric(metricid)) { - return 'partition'; + var fn = getFieldNameFromSeries(dataView.SERIES[0]); + if (fn) { + return fn; } } return 'time'; } +function getFieldNameFromSeries(series: Series): string | null{ + var metricid = getMetricIdFromSeries(series); + var metricInfo = findmetricById(metricid); + if (metricInfo && isListMetric(metricInfo)) { + var type = splitMetricDescription(metricInfo.description).type; + if (type) { + return type; + } + return metricInfo.description; + } + return null; +} + +function splitMetricDescription(description: string | undefined): {name: string; type: string} { + const trimmed = (description || "").trim(); + if (!trimmed) { + return { name: "", type: "" }; + } + + const match = trimmed.match(/\s+by\s+/i); + if (!match || match.index === undefined) { + return { name: trimmed, type: "" }; + } + + const idx = match.index; + const sepLen = match[0].length; + + const name = trimmed.slice(0, idx).trim(); + const type = trimmed.slice(idx + sepLen).trim(); + + return { name, type }; +} + function getDeskSize(perfDesk: PerfDesk): {width: number, height: number} { var maxX = 0; var maxY = 0; diff --git a/grafana/rmf-app/src/metrics/dds/index.json b/grafana/rmf-app/src/metrics/dds/index.json index 6e69fd5d..409510b1 100644 --- a/grafana/rmf-app/src/metrics/dds/index.json +++ b/grafana/rmf-app/src/metrics/dds/index.json @@ -1,5923 +1,9911 @@ { - "metricList": [{ - "metric": [{ - "id": "8D4FE0", - "listtype": " " - }, { - "id": "8D5010", - "listtype": " " - }, { - "id": "8D5040", - "listtype": " " - }, { - "id": "8D5070", - "listtype": " " - }, { - "id": "8D50A0", - "listtype": " " - }, { - "id": "8D50D0", - "listtype": " " - }, { - "id": "8D5100", - "listtype": " " - }, { - "id": "8D5130", - "listtype": " " - }, { - "id": "8D5160", - "listtype": " " - }, { - "id": "8D5190", - "listtype": " " - }, { - "id": "8D51C0", - "listtype": " " - }, { - "id": "8D51F0", - "listtype": " " - }, { - "id": "8D5220", - "listtype": " " - }, { - "id": "8D5250", - "listtype": " " - }, { - "id": "8D5280", - "listtype": " " - }, { - "id": "8D52B0", - "listtype": " " - }, { - "id": "8D52E0", - "listtype": " " - }, { - "id": "8D5310", - "listtype": " " - }, { - "id": "8D5340", - "listtype": " " - }, { - "id": "8D5370", - "listtype": " " - }, { - "id": "8D5960", - "listtype": " " - }, { - "id": "8D5990", - "listtype": " " - }, { - "id": "8D59C0", - "listtype": " " - }, { - "id": "8D59F0", - "listtype": " " - }, { - "id": "8D5A20", - "listtype": " " - }, { - "id": "8D5A50", - "listtype": " " - }] - }, { - "metric": [{ - "id": "8D2370", - "listtype": "C" - }, { - "id": "8D0070", - "listtype": "C" - }, { - "id": "8D0090", - "listtype": "C" - }, { - "id": "8D4410", - "listtype": "C" - }, { - "id": "8D4430", - "listtype": "C" - }, { - "id": "8D4450", - "listtype": "C" - }, { - "id": "8D23A0", - "listtype": "C" - }, { - "id": "8D23C0", - "listtype": "C" - }, { - "id": "8D3170", - "listtype": "C" - }, { - "id": "8D31D0", - "listtype": "C" - }, { - "id": "8D23E0", - "listtype": "C" - }, { - "id": "8D2400", - "listtype": "C" - }, { - "id": "8D4490", - "listtype": "C" - }, { - "id": "8D44B0", - "listtype": "C" - }, { - "id": "8D44D0", - "listtype": "C" - }, { - "id": "8D0340", - "listtype": "U" - }, { - "id": "8D05D0", - "listtype": "U" - }] - }, { - "metric": [{ - "id": "8D0690", - "listtype": "L" - }, { - "id": "8D2800", - "listtype": "L" - }, { - "id": "8D0EC0", - "listtype": "L" - }, { - "id": "8D0340", - "listtype": "U" - }, { - "id": "8D05D0", - "listtype": "U" - }, { - "id": "8D2810", - "listtype": "U" - }, { - "id": "8D27E0", - "listtype": "U" - }, { - "id": "8D05C0", - "listtype": "U" - }] - }, { - "metric": [{ - "id": "8D2210", - "listtype": "I" - }, { - "id": "8D2260", - "listtype": "I" - }, { - "id": "8D22A0", - "listtype": "I" - }, { - "id": "8D22C0", - "listtype": "I" - }, { - "id": "8D22E0", - "listtype": "I" - }, { - "id": "8D2310", - "listtype": "I" - }] - }, { - "metric": [{ - "id": "8D2A50", - "listtype": " " - }, { - "id": "8D3000", - "listtype": " " - }, { - "id": "8D30A0", - "listtype": " " - }, { - "id": "8D2A60", - "listtype": "Q" - }, { - "id": "8D3010", - "listtype": "Q" - }, { - "id": "8D30B0", - "listtype": "Q" - }, { - "id": "8D0020", - "listtype": "V" - }, { - "id": "8D2200", - "listtype": "V" - }, { - "id": "8D2250", - "listtype": "V" - }, { - "id": "8D00D0", - "listtype": "V" - }, { - "id": "8D0230", - "listtype": "V" - }, { - "id": "8D0250", - "listtype": "V" - }, { - "id": "8D2780", - "listtype": "V" - }, { - "id": "8D0360", - "listtype": "V" - }, { - "id": "8D2A70", - "listtype": "V" - }, { - "id": "8D0440", - "listtype": "V" - }, { - "id": "8D3020", - "listtype": "V" - }, { - "id": "8D30C0", - "listtype": "V" - }, { - "id": "8D0EA0", - "listtype": "V" - }, { - "id": "8D12A0", - "listtype": "V" - }, { - "id": "8D2340", - "listtype": "V" - }, { - "id": "8D1120", - "listtype": "V" - }, { - "id": "8D12C0", - "listtype": "V" - }] - }, { - "metric": [{ - "id": "8D5E10", - "listtype": "K" - }, { - "id": "8D3080", - "listtype": "K" - }, { - "id": "8D3110", - "listtype": "K" - }, { - "id": "8D5E70", - "listtype": "K" - }, { - "id": "8D3230", - "listtype": "K" - }, { - "id": "8D6EE0", - "listtype": "K" - }, { - "id": "8D5E00", - "listtype": "R" - }, { - "id": "8D0F20", - "listtype": "R" - }, { - "id": "8D5E60", - "listtype": "R" - }, { - "id": "8D1220", - "listtype": "R" - }, { - "id": "8D6ED0", - "listtype": "R" - }] - }, { - "metric": [{ - "id": "8D6E30", - "listtype": "7" - }, { - "id": "8D6E50", - "listtype": "7" - }, { - "id": "8D6E70", - "listtype": "7" - }] - }, { - "metric": [{ - "id": "8D5E30", - "listtype": "P" - }, { - "id": "8D0F60", - "listtype": "P" - }, { - "id": "8D0FF0", - "listtype": "P" - }, { - "id": "8D1020", - "listtype": "P" - }, { - "id": "8D5E90", - "listtype": "P" - }, { - "id": "8D5F40", - "listtype": "P" - }, { - "id": "8D1240", - "listtype": "P" - }, { - "id": "8D6F00", - "listtype": "P" - }, { - "id": "8D5E20", - "listtype": "S" - }, { - "id": "8D0F50", - "listtype": "S" - }, { - "id": "8D6E80", - "listtype": "S" - }, { - "id": "8D6EB0", - "listtype": "S" - }, { - "id": "8D5E80", - "listtype": "S" - }, { - "id": "8D5F20", - "listtype": "S" - }, { - "id": "8D1230", - "listtype": "S" - }, { - "id": "8D6EF0", - "listtype": "S" - }, { - "id": "8D5E40", - "listtype": "W" - }, { - "id": "8D0F80", - "listtype": "W" - }, { - "id": "8D5EA0", - "listtype": "W" - }, { - "id": "8D1250", - "listtype": "W" - }, { - "id": "8D6F10", - "listtype": "W" - }] - }, { - "metric": [{ - "id": "8D0D30", - "listtype": " " - }, { - "id": "8D2F10", - "listtype": " " - }, { - "id": "8D0D40", - "listtype": "J" - }] - }, { - "metric": [{ - "id": "8D0370", - "listtype": " " - }, { - "id": "8D0380", - "listtype": " " - }, { - "id": "8D0390", - "listtype": " " - }, { - "id": "8D03A0", - "listtype": " " - }, { - "id": "8D03B0", - "listtype": " " - }, { - "id": "8D03C0", - "listtype": " " - }, { - "id": "8D03D0", - "listtype": " " - }, { - "id": "8D2EE0", - "listtype": " " - }, { - "id": "8D0CB0", - "listtype": " " - }, { - "id": "8D2F20", - "listtype": " " - }, { - "id": "8D2F30", - "listtype": " " - }, { - "id": "8D2FA0", - "listtype": " " - }, { - "id": "8D2FB0", - "listtype": " " - }, { - "id": "8D30F0", - "listtype": " " - }, { - "id": "8D1260", - "listtype": " " - }, { - "id": "8D1270", - "listtype": " " - }, { - "id": "8D1280", - "listtype": "J" - }] - }, { - "metric": [{ - "id": "8D39A0", - "listtype": " " - }, { - "id": "8D20A0", - "listtype": " " - }, { - "id": "8D20E0", - "listtype": " " - }, { - "id": "8D2120", - "listtype": " " - }, { - "id": "8D2160", - "listtype": " " - }, { - "id": "8D20C0", - "listtype": "M" - }, { - "id": "8D2100", - "listtype": "M" - }, { - "id": "8D2140", - "listtype": "M" - }, { - "id": "8D2180", - "listtype": "M" - }] - }, { - "metric": [{ - "id": "8D2360", - "listtype": " " - }, { - "id": "8D0060", - "listtype": " " - }, { - "id": "8D0080", - "listtype": " " - }, { - "id": "8D4400", - "listtype": " " - }, { - "id": "8D4420", - "listtype": " " - }, { - "id": "8D4440", - "listtype": " " - }, { - "id": "8D2390", - "listtype": " " - }, { - "id": "8D23B0", - "listtype": " " - }, { - "id": "8D3160", - "listtype": " " - }, { - "id": "8D31C0", - "listtype": " " - }, { - "id": "8D23D0", - "listtype": " " - }, { - "id": "8D23F0", - "listtype": " " - }, { - "id": "8D4480", - "listtype": " " - }, { - "id": "8D44A0", - "listtype": " " - }, { - "id": "8D44C0", - "listtype": " " - }] - }, { - "metric": [{ - "id": "8D4670", - "listtype": " " - }, { - "id": "8D2060", - "listtype": " " - }, { - "id": "8D4690", - "listtype": " " - }, { - "id": "8D1FF0", - "listtype": " " - }, { - "id": "8D2000", - "listtype": " " - }, { - "id": "8D2020", - "listtype": " " - }, { - "id": "8D46B0", - "listtype": " " - }, { - "id": "8D46D0", - "listtype": " " - }, { - "id": "8D46F0", - "listtype": " " - }, { - "id": "8D4710", - "listtype": " " - }, { - "id": "8D4730", - "listtype": " " - }, { - "id": "8D21A0", - "listtype": " " - }, { - "id": "8D2050", - "listtype": "M" - }, { - "id": "8D38C0", - "listtype": "M" - }, { - "id": "8D2080", - "listtype": "M" - }, { - "id": "8D20D0", - "listtype": "M" - }, { - "id": "8D2110", - "listtype": "M" - }, { - "id": "8D2150", - "listtype": "M" - }, { - "id": "8D2190", - "listtype": "M" - }, { - "id": "8D39D0", - "listtype": "T" - }, { - "id": "8D20B0", - "listtype": "T" - }, { - "id": "8D20F0", - "listtype": "T" - }, { - "id": "8D2130", - "listtype": "T" - }, { - "id": "8D2170", - "listtype": "T" - }] - }, { - "metric": [{ - "id": "8D3290", - "listtype": " " - }, { - "id": "8D24D0", - "listtype": " " - }, { - "id": "8D3270", - "listtype": " " - }, { - "id": "8D32B0", - "listtype": " " - }, { - "id": "8D1C80", - "listtype": " " - }, { - "id": "8D3910", - "listtype": " " - }, { - "id": "8D3920", - "listtype": " " - }, { - "id": "8D3930", - "listtype": " " - }, { - "id": "8D3940", - "listtype": " " - }, { - "id": "8D3950", - "listtype": " " - }, { - "id": "8D3300", - "listtype": " " - }, { - "id": "8D2540", - "listtype": " " - }, { - "id": "8D32D0", - "listtype": " " - }, { - "id": "8D3330", - "listtype": " " - }, { - "id": "8D1C70", - "listtype": " " - }, { - "id": "8D39F0", - "listtype": " " - }, { - "id": "8D1F90", - "listtype": " " - }, { - "id": "8D3A10", - "listtype": " " - }, { - "id": "8D3360", - "listtype": " " - }, { - "id": "8D3A40", - "listtype": " " - }, { - "id": "8D3380", - "listtype": " " - }, { - "id": "8D3A90", - "listtype": " " - }, { - "id": "8D33E0", - "listtype": " " - }, { - "id": "8D3AC0", - "listtype": " " - }, { - "id": "8D3420", - "listtype": " " - }, { - "id": "8D3BA0", - "listtype": " " - }, { - "id": "8D3BD0", - "listtype": " " - }, { - "id": "8D3C20", - "listtype": " " - }, { - "id": "8D3B70", - "listtype": " " - }, { - "id": "8D3C50", - "listtype": " " - }, { - "id": "8D3B20", - "listtype": " " - }, { - "id": "8D3CA0", - "listtype": " " - }, { - "id": "8D3CD0", - "listtype": " " - }, { - "id": "8D3D20", - "listtype": " " - }, { - "id": "8D3D70", - "listtype": " " - }, { - "id": "8D3D80", - "listtype": " " - }, { - "id": "8D3D90", - "listtype": " " - }, { - "id": "8D3B00", - "listtype": " " - }, { - "id": "8D3B40", - "listtype": " " - }, { - "id": "8D3C80", - "listtype": " " - }, { - "id": "8D3D50", - "listtype": " " - }, { - "id": "8D25C0", - "listtype": " " - }, { - "id": "8D3F30", - "listtype": " " - }, { - "id": "8D3F60", - "listtype": " " - }, { - "id": "8D3F90", - "listtype": " " - }, { - "id": "8D3FE0", - "listtype": " " - }, { - "id": "8D4010", - "listtype": " " - }, { - "id": "8D32A0", - "listtype": "A" - }, { - "id": "8D24E0", - "listtype": "A" - }, { - "id": "8D3280", - "listtype": "A" - }, { - "id": "8D32C0", - "listtype": "A" - }, { - "id": "8D2600", - "listtype": "A" - }, { - "id": "8D4040", - "listtype": "A" - }, { - "id": "8D4060", - "listtype": "A" - }, { - "id": "8D4080", - "listtype": "A" - }, { - "id": "8D3310", - "listtype": "A" - }, { - "id": "8D2560", - "listtype": "A" - }, { - "id": "8D32E0", - "listtype": "A" - }, { - "id": "8D3340", - "listtype": "A" - }, { - "id": "8D3400", - "listtype": "A" - }, { - "id": "8D3A00", - "listtype": "A" - }, { - "id": "8D3A20", - "listtype": "A" - }, { - "id": "8D3A50", - "listtype": "A" - }, { - "id": "8D3AA0", - "listtype": "A" - }, { - "id": "8D3AD0", - "listtype": "A" - }, { - "id": "8D3BB0", - "listtype": "A" - }, { - "id": "8D3BE0", - "listtype": "A" - }, { - "id": "8D3C30", - "listtype": "A" - }, { - "id": "8D3B80", - "listtype": "A" - }, { - "id": "8D3C60", - "listtype": "A" - }, { - "id": "8D3B30", - "listtype": "A" - }, { - "id": "8D3CB0", - "listtype": "A" - }, { - "id": "8D3CE0", - "listtype": "A" - }, { - "id": "8D3D30", - "listtype": "A" - }, { - "id": "8D40C0", - "listtype": "A" - }, { - "id": "8D4120", - "listtype": "A" - }, { - "id": "8D4180", - "listtype": "A" - }, { - "id": "8D3B10", - "listtype": "A" - }, { - "id": "8D3B50", - "listtype": "A" - }, { - "id": "8D3C90", - "listtype": "A" - }, { - "id": "8D3D60", - "listtype": "A" - }, { - "id": "8D40A0", - "listtype": "A" - }, { - "id": "8D40E0", - "listtype": "A" - }, { - "id": "8D4100", - "listtype": "A" - }, { - "id": "8D4140", - "listtype": "A" - }, { - "id": "8D4160", - "listtype": "A" - }, { - "id": "8D0040", - "listtype": "A" - }, { - "id": "8D25F0", - "listtype": "A" - }, { - "id": "8D3F40", - "listtype": "A" - }, { - "id": "8D3F70", - "listtype": "A" - }, { - "id": "8D3FA0", - "listtype": "A" - }, { - "id": "8D3FF0", - "listtype": "A" - }, { - "id": "8D4020", - "listtype": "A" - }, { - "id": "8D6490", - "listtype": "6" - }, { - "id": "8D64D0", - "listtype": "6" - }, { - "id": "8D6510", - "listtype": "6" - }, { - "id": "8D6550", - "listtype": "6" - }, { - "id": "8D6590", - "listtype": "6" - }, { - "id": "8D65D0", - "listtype": "6" - }, { - "id": "8D6610", - "listtype": "6" - }, { - "id": "8D6650", - "listtype": "6" - }, { - "id": "8D6690", - "listtype": "6" - }, { - "id": "8D66D0", - "listtype": "6" - }, { - "id": "8D6710", - "listtype": "6" - }, { - "id": "8D6750", - "listtype": "6" - }, { - "id": "8D6790", - "listtype": "6" - }, { - "id": "8D67D0", - "listtype": "6" - }, { - "id": "8D67F0", - "listtype": "6" - }, { - "id": "8D6850", - "listtype": "6" - }, { - "id": "8D6890", - "listtype": "6" - }, { - "id": "8D68D0", - "listtype": "6" - }, { - "id": "8D6910", - "listtype": "6" - }, { - "id": "8D6950", - "listtype": "6" - }, { - "id": "8D6990", - "listtype": "6" - }, { - "id": "8D69D0", - "listtype": "6" - }, { - "id": "8D6A10", - "listtype": "6" - }, { - "id": "8D6A50", - "listtype": "6" - }, { - "id": "8D6A90", - "listtype": "6" - }, { - "id": "8D6AD0", - "listtype": "6" - }, { - "id": "8D6B10", - "listtype": "6" - }, { - "id": "8D6B50", - "listtype": "6" - }, { - "id": "8D6B90", - "listtype": "6" - }, { - "id": "8D6BD0", - "listtype": "6" - }, { - "id": "8D6C10", - "listtype": "6" - }, { - "id": "8D6C50", - "listtype": "6" - }, { - "id": "8D6C90", - "listtype": "6" - }, { - "id": "8D6CD0", - "listtype": "6" - }, { - "id": "8D6D10", - "listtype": "6" - }, { - "id": "8D6D50", - "listtype": "6" - }, { - "id": "8D6D90", - "listtype": "6" - }, { - "id": "8D6DD0", - "listtype": "6" - }, { - "id": "8D6E10", - "listtype": "6" - }] - }, { - "metric": [{ - "id": "8D6470", - "listtype": "6" - }, { - "id": "8D6490", - "listtype": "6" - }, { - "id": "8D64B0", - "listtype": "6" - }, { - "id": "8D64D0", - "listtype": "6" - }, { - "id": "8D64F0", - "listtype": "6" - }, { - "id": "8D6510", - "listtype": "6" - }, { - "id": "8D6530", - "listtype": "6" - }, { - "id": "8D6550", - "listtype": "6" - }, { - "id": "8D6570", - "listtype": "6" - }, { - "id": "8D6590", - "listtype": "6" - }, { - "id": "8D65B0", - "listtype": "6" - }, { - "id": "8D65D0", - "listtype": "6" - }, { - "id": "8D65F0", - "listtype": "6" - }, { - "id": "8D6610", - "listtype": "6" - }, { - "id": "8D6630", - "listtype": "6" - }, { - "id": "8D6650", - "listtype": "6" - }, { - "id": "8D6670", - "listtype": "6" - }, { - "id": "8D6690", - "listtype": "6" - }, { - "id": "8D66B0", - "listtype": "6" - }, { - "id": "8D66D0", - "listtype": "6" - }, { - "id": "8D66F0", - "listtype": "6" - }, { - "id": "8D6710", - "listtype": "6" - }, { - "id": "8D6730", - "listtype": "6" - }, { - "id": "8D6750", - "listtype": "6" - }, { - "id": "8D6770", - "listtype": "6" - }, { - "id": "8D6790", - "listtype": "6" - }, { - "id": "8D67B0", - "listtype": "6" - }, { - "id": "8D67D0", - "listtype": "6" - }, { - "id": "8D67E0", - "listtype": "6" - }, { - "id": "8D67F0", - "listtype": "6" - }, { - "id": "8D6830", - "listtype": "6" - }, { - "id": "8D6850", - "listtype": "6" - }, { - "id": "8D6870", - "listtype": "6" - }, { - "id": "8D6890", - "listtype": "6" - }, { - "id": "8D68B0", - "listtype": "6" - }, { - "id": "8D68D0", - "listtype": "6" - }, { - "id": "8D68F0", - "listtype": "6" - }, { - "id": "8D6910", - "listtype": "6" - }, { - "id": "8D6930", - "listtype": "6" - }, { - "id": "8D6950", - "listtype": "6" - }, { - "id": "8D6970", - "listtype": "6" - }, { - "id": "8D6990", - "listtype": "6" - }, { - "id": "8D69B0", - "listtype": "6" - }, { - "id": "8D69D0", - "listtype": "6" - }, { - "id": "8D69F0", - "listtype": "6" - }, { - "id": "8D6A10", - "listtype": "6" - }, { - "id": "8D6A30", - "listtype": "6" - }, { - "id": "8D6A50", - "listtype": "6" - }, { - "id": "8D6A70", - "listtype": "6" - }, { - "id": "8D6A90", - "listtype": "6" - }, { - "id": "8D6AB0", - "listtype": "6" - }, { - "id": "8D6AD0", - "listtype": "6" - }, { - "id": "8D6AF0", - "listtype": "6" - }, { - "id": "8D6B10", - "listtype": "6" - }, { - "id": "8D6B30", - "listtype": "6" - }, { - "id": "8D6B50", - "listtype": "6" - }, { - "id": "8D6B70", - "listtype": "6" - }, { - "id": "8D6B90", - "listtype": "6" - }, { - "id": "8D6BB0", - "listtype": "6" - }, { - "id": "8D6BD0", - "listtype": "6" - }, { - "id": "8D6BF0", - "listtype": "6" - }, { - "id": "8D6C10", - "listtype": "6" - }, { - "id": "8D6C30", - "listtype": "6" - }, { - "id": "8D6C50", - "listtype": "6" - }, { - "id": "8D6C70", - "listtype": "6" - }, { - "id": "8D6C90", - "listtype": "6" - }, { - "id": "8D6CB0", - "listtype": "6" - }, { - "id": "8D6CD0", - "listtype": "6" - }, { - "id": "8D6CF0", - "listtype": "6" - }, { - "id": "8D6D10", - "listtype": "6" - }, { - "id": "8D6D30", - "listtype": "6" - }, { - "id": "8D6D50", - "listtype": "6" - }, { - "id": "8D6D70", - "listtype": "6" - }, { - "id": "8D6D90", - "listtype": "6" - }, { - "id": "8D6DB0", - "listtype": "6" - }, { - "id": "8D6DD0", - "listtype": "6" - }, { - "id": "8D6DF0", - "listtype": "6" - }, { - "id": "8D6E10", - "listtype": "6" - }] - }, { - "metric": [{ - "id": "8D6460", - "listtype": " " - }, { - "id": "8D6480", - "listtype": " " - }, { - "id": "8D64A0", - "listtype": " " - }, { - "id": "8D64C0", - "listtype": " " - }, { - "id": "8D64E0", - "listtype": " " - }, { - "id": "8D6500", - "listtype": " " - }, { - "id": "8D6520", - "listtype": " " - }, { - "id": "8D6540", - "listtype": " " - }, { - "id": "8D6560", - "listtype": " " - }, { - "id": "8D6580", - "listtype": " " - }, { - "id": "8D65A0", - "listtype": " " - }, { - "id": "8D65C0", - "listtype": " " - }, { - "id": "8D65E0", - "listtype": " " - }, { - "id": "8D6600", - "listtype": " " - }, { - "id": "8D6620", - "listtype": " " - }, { - "id": "8D6640", - "listtype": " " - }, { - "id": "8D6660", - "listtype": " " - }, { - "id": "8D6680", - "listtype": " " - }, { - "id": "8D66A0", - "listtype": " " - }, { - "id": "8D66C0", - "listtype": " " - }, { - "id": "8D66E0", - "listtype": " " - }, { - "id": "8D6700", - "listtype": " " - }, { - "id": "8D6720", - "listtype": " " - }, { - "id": "8D6740", - "listtype": " " - }, { - "id": "8D6760", - "listtype": " " - }, { - "id": "8D6780", - "listtype": " " - }, { - "id": "8D67A0", - "listtype": " " - }, { - "id": "8D67C0", - "listtype": " " - }, { - "id": "8D6800", - "listtype": " " - }, { - "id": "8D6810", - "listtype": " " - }, { - "id": "8D6820", - "listtype": " " - }, { - "id": "8D6840", - "listtype": " " - }, { - "id": "8D6860", - "listtype": " " - }, { - "id": "8D6880", - "listtype": " " - }, { - "id": "8D68A0", - "listtype": " " - }, { - "id": "8D68C0", - "listtype": " " - }, { - "id": "8D68E0", - "listtype": " " - }, { - "id": "8D6900", - "listtype": " " - }, { - "id": "8D6920", - "listtype": " " - }, { - "id": "8D6940", - "listtype": " " - }, { - "id": "8D6960", - "listtype": " " - }, { - "id": "8D6980", - "listtype": " " - }, { - "id": "8D69A0", - "listtype": " " - }, { - "id": "8D69C0", - "listtype": " " - }, { - "id": "8D69E0", - "listtype": " " - }, { - "id": "8D6A00", - "listtype": " " - }, { - "id": "8D6A20", - "listtype": " " - }, { - "id": "8D6A40", - "listtype": " " - }, { - "id": "8D6A60", - "listtype": " " - }, { - "id": "8D6A80", - "listtype": " " - }, { - "id": "8D6AA0", - "listtype": " " - }, { - "id": "8D6AC0", - "listtype": " " - }, { - "id": "8D6AE0", - "listtype": " " - }, { - "id": "8D6B00", - "listtype": " " - }, { - "id": "8D6B20", - "listtype": " " - }, { - "id": "8D6B40", - "listtype": " " - }, { - "id": "8D6B60", - "listtype": " " - }, { - "id": "8D6B80", - "listtype": " " - }, { - "id": "8D6BA0", - "listtype": " " - }, { - "id": "8D6BC0", - "listtype": " " - }, { - "id": "8D6BE0", - "listtype": " " - }, { - "id": "8D6C00", - "listtype": " " - }, { - "id": "8D6C20", - "listtype": " " - }, { - "id": "8D6C40", - "listtype": " " - }, { - "id": "8D6C60", - "listtype": " " - }, { - "id": "8D6C80", - "listtype": " " - }, { - "id": "8D6CA0", - "listtype": " " - }, { - "id": "8D6CC0", - "listtype": " " - }, { - "id": "8D6CE0", - "listtype": " " - }, { - "id": "8D6D00", - "listtype": " " - }, { - "id": "8D6D20", - "listtype": " " - }, { - "id": "8D6D40", - "listtype": " " - }, { - "id": "8D6D60", - "listtype": " " - }, { - "id": "8D6D80", - "listtype": " " - }, { - "id": "8D6DA0", - "listtype": " " - }, { - "id": "8D6DC0", - "listtype": " " - }, { - "id": "8D6DE0", - "listtype": " " - }, { - "id": "8D6E00", - "listtype": " " - }] - }, { - "metric": [{ - "id": "8D0050", - "listtype": " " - }, { - "id": "8D0410", - "listtype": " " - }, { - "id": "8D0530", - "listtype": " " - }, { - "id": "8D0BC0", - "listtype": " " - }, { - "id": "8D0C90", - "listtype": " " - }, { - "id": "8D0CE0", - "listtype": " " - }, { - "id": "8D0540", - "listtype": "J" - }, { - "id": "8D0CA0", - "listtype": "J" - }, { - "id": "8D0CF0", - "listtype": "J" - }] - }, { - "metric": [{ - "id": "8D0050", - "listtype": " " - }, { - "id": "8D0410", - "listtype": " " - }, { - "id": "8D0530", - "listtype": " " - }, { - "id": "8D0BC0", - "listtype": " " - }, { - "id": "8D0C90", - "listtype": " " - }, { - "id": "8D0CE0", - "listtype": " " - }, { - "id": "8D0540", - "listtype": "J" - }, { - "id": "8D0CA0", - "listtype": "J" - }, { - "id": "8D0CF0", - "listtype": "J" - }] - }, { - "metric": [{ - "id": "8D00E0", - "listtype": " " - }, { - "id": "8D28D0", - "listtype": "E" - }, { - "id": "8D0180", - "listtype": "J" - }, { - "id": "8D28E0", - "listtype": "K" - }, { - "id": "8D17A0", - "listtype": "P" - }, { - "id": "8D1660", - "listtype": "R" - }, { - "id": "8D1700", - "listtype": "S" - }, { - "id": "8D1840", - "listtype": "W" - }] - }, { - "metric": [{ - "id": "8D0050", - "listtype": " " - }, { - "id": "8D0410", - "listtype": " " - }, { - "id": "8D0530", - "listtype": " " - }, { - "id": "8D0BC0", - "listtype": " " - }, { - "id": "8D0C90", - "listtype": " " - }, { - "id": "8D0CE0", - "listtype": " " - }, { - "id": "8D0540", - "listtype": "J" - }, { - "id": "8D0CA0", - "listtype": "J" - }, { - "id": "8D0CF0", - "listtype": "J" - }] - }, { - "metric": [{ - "id": "8D00F0", - "listtype": " " - }, { - "id": "8D0190", - "listtype": "J" - }, { - "id": "8D28F0", - "listtype": "K" - }, { - "id": "8D17B0", - "listtype": "P" - }, { - "id": "8D1670", - "listtype": "R" - }, { - "id": "8D1710", - "listtype": "S" - }, { - "id": "8D1850", - "listtype": "W" - }] - }, { - "metric": [{ - "id": "8D00A0", - "listtype": " " - }, { - "id": "8D0170", - "listtype": " " - }, { - "id": "8D04B0", - "listtype": " " - }, { - "id": "8D1E20", - "listtype": " " - }, { - "id": "8D0680", - "listtype": " " - }, { - "id": "8D0EB0", - "listtype": " " - }, { - "id": "8D4930", - "listtype": " " - }, { - "id": "8D0E90", - "listtype": " " - }, { - "id": "8D49B0", - "listtype": " " - }, { - "id": "8D4C10", - "listtype": " " - }, { - "id": "8D2040", - "listtype": "D" - }, { - "id": "8D2090", - "listtype": "D" - }, { - "id": "8D28B0", - "listtype": "E" - }, { - "id": "8D2B20", - "listtype": "E" - }, { - "id": "8D00C0", - "listtype": "J" - }, { - "id": "8D0210", - "listtype": "J" - }, { - "id": "8D04F0", - "listtype": "J" - }, { - "id": "8D1EC0", - "listtype": "J" - }, { - "id": "8D4940", - "listtype": "J" - }, { - "id": "8D49C0", - "listtype": "J" - }, { - "id": "8D4C20", - "listtype": "J" - }, { - "id": "8D2970", - "listtype": "K" - }, { - "id": "8D2B40", - "listtype": "K" - }, { - "id": "8D2BA0", - "listtype": "K" - }, { - "id": "8D2890", - "listtype": "N" - }, { - "id": "8D2B00", - "listtype": "N" - }, { - "id": "8D1830", - "listtype": "P" - }, { - "id": "8D1CF0", - "listtype": "P" - }, { - "id": "8D1E80", - "listtype": "P" - }, { - "id": "8D16F0", - "listtype": "R" - }, { - "id": "8D1C90", - "listtype": "R" - }, { - "id": "8D1E40", - "listtype": "R" - }, { - "id": "8D1790", - "listtype": "S" - }, { - "id": "8D1CC0", - "listtype": "S" - }, { - "id": "8D1E60", - "listtype": "S" - }, { - "id": "8D18D0", - "listtype": "W" - }, { - "id": "8D1D20", - "listtype": "W" - }, { - "id": "8D1EA0", - "listtype": "W" - }] - }, { - "metric": [{ - "id": "8D0100", - "listtype": " " - }, { - "id": "8D01A0", - "listtype": "J" - }, { - "id": "8D2900", - "listtype": "K" - }, { - "id": "8D17C0", - "listtype": "P" - }, { - "id": "8D1680", - "listtype": "R" - }, { - "id": "8D1720", - "listtype": "S" - }, { - "id": "8D1860", - "listtype": "W" - }] - }, { - "metric": [{ - "id": "8D0680", - "listtype": " " - }, { - "id": "8D27F0", - "listtype": " " - }, { - "id": "8D0EB0", - "listtype": " " - }, { - "id": "8D0E90", - "listtype": " " - }, { - "id": "8D0340", - "listtype": "U" - }, { - "id": "8D05D0", - "listtype": "U" - }, { - "id": "8D2810", - "listtype": "U" - }, { - "id": "8D27E0", - "listtype": "U" - }, { - "id": "8D05C0", - "listtype": "U" - }, { - "id": "8D0020", - "listtype": "V" - }, { - "id": "8D00D0", - "listtype": "V" - }, { - "id": "8D0250", - "listtype": "V" - }, { - "id": "8D2780", - "listtype": "V" - }, { - "id": "8D0360", - "listtype": "V" - }, { - "id": "8D0440", - "listtype": "V" - }, { - "id": "8D0EA0", - "listtype": "V" - }, { - "id": "8D1120", - "listtype": "V" - }, { - "id": "8D12C0", - "listtype": "V" - }] - }, { - "metric": [{ - "id": "8D2870", - "listtype": " " - }, { - "id": "8D3670", - "listtype": " " - }, { - "id": "8D24B0", - "listtype": " " - }, { - "id": "8D3680", - "listtype": " " - }, { - "id": "8D3690", - "listtype": " " - }, { - "id": "8D36A0", - "listtype": " " - }, { - "id": "8D36B0", - "listtype": " " - }, { - "id": "8D24C0", - "listtype": " " - }, { - "id": "8D36C0", - "listtype": " " - }, { - "id": "8D36D0", - "listtype": " " - }, { - "id": "8D36E0", - "listtype": " " - }, { - "id": "8D4030", - "listtype": " " - }, { - "id": "8D4050", - "listtype": " " - }, { - "id": "8D4070", - "listtype": " " - }, { - "id": "8D38D0", - "listtype": " " - }, { - "id": "8D2510", - "listtype": " " - }, { - "id": "8D38E0", - "listtype": " " - }, { - "id": "8D38F0", - "listtype": " " - }, { - "id": "8D3900", - "listtype": " " - }, { - "id": "8D3960", - "listtype": " " - }, { - "id": "8D2530", - "listtype": " " - }, { - "id": "8D3970", - "listtype": " " - }, { - "id": "8D3980", - "listtype": " " - }, { - "id": "8D3990", - "listtype": " " - }, { - "id": "8D25A0", - "listtype": " " - }, { - "id": "8D39E0", - "listtype": " " - }, { - "id": "8D2520", - "listtype": " " - }, { - "id": "8D3A30", - "listtype": " " - }, { - "id": "8D3A80", - "listtype": " " - }, { - "id": "8D3AB0", - "listtype": " " - }, { - "id": "8D47A0", - "listtype": " " - }, { - "id": "8D47C0", - "listtype": " " - }, { - "id": "8D2490", - "listtype": " " - }, { - "id": "8D3B90", - "listtype": " " - }, { - "id": "8D3BC0", - "listtype": " " - }, { - "id": "8D3C10", - "listtype": " " - }, { - "id": "8D3B60", - "listtype": " " - }, { - "id": "8D3C40", - "listtype": " " - }, { - "id": "8D3B20", - "listtype": " " - }, { - "id": "8D2610", - "listtype": " " - }, { - "id": "8D3CC0", - "listtype": " " - }, { - "id": "8D3D10", - "listtype": " " - }, { - "id": "8D40B0", - "listtype": " " - }, { - "id": "8D4110", - "listtype": " " - }, { - "id": "8D4170", - "listtype": " " - }, { - "id": "8D3B00", - "listtype": " " - }, { - "id": "8D3B40", - "listtype": " " - }, { - "id": "8D3C70", - "listtype": " " - }, { - "id": "8D3D40", - "listtype": " " - }, { - "id": "8D4090", - "listtype": " " - }, { - "id": "8D40D0", - "listtype": " " - }, { - "id": "8D40F0", - "listtype": " " - }, { - "id": "8D4130", - "listtype": " " - }, { - "id": "8D4150", - "listtype": " " - }, { - "id": "8D4190", - "listtype": " " - }, { - "id": "8D25E0", - "listtype": " " - }, { - "id": "8D43E0", - "listtype": " " - }, { - "id": "8D4A90", - "listtype": " " - }, { - "id": "8D4AB0", - "listtype": " " - }, { - "id": "8D4530", - "listtype": " " - }, { - "id": "8D2620", - "listtype": " " - }, { - "id": "8D2630", - "listtype": " " - }, { - "id": "8D2650", - "listtype": " " - }, { - "id": "8D2660", - "listtype": " " - }, { - "id": "8D2680", - "listtype": " " - }, { - "id": "8D4460", - "listtype": " " - }, { - "id": "8D3F20", - "listtype": " " - }, { - "id": "8D3F50", - "listtype": " " - }, { - "id": "8D3F80", - "listtype": " " - }, { - "id": "8D3FD0", - "listtype": " " - }, { - "id": "8D4000", - "listtype": " " - }, { - "id": "8D4B10", - "listtype": " " - }, { - "id": "8D4B30", - "listtype": " " - }, { - "id": "8D4B70", - "listtype": " " - }, { - "id": "8D4B90", - "listtype": " " - }, { - "id": "8D4BD0", - "listtype": " " - }, { - "id": "8D4BF0", - "listtype": " " - }] - }, { - "metric": [{ - "id": "8D0160", - "listtype": " " - }, { - "id": "8D03E0", - "listtype": " " - }, { - "id": "8D0470", - "listtype": " " - }, { - "id": "8D04A0", - "listtype": " " - }, { - "id": "8D0550", - "listtype": " " - }, { - "id": "8D0620", - "listtype": " " - }, { - "id": "8D4840", - "listtype": " " - }, { - "id": "8D4870", - "listtype": " " - }, { - "id": "8D48A0", - "listtype": " " - }, { - "id": "8D48D0", - "listtype": " " - }, { - "id": "8D4900", - "listtype": " " - }, { - "id": "8D0D50", - "listtype": " " - }, { - "id": "8D0EF0", - "listtype": " " - }, { - "id": "8D1000", - "listtype": " " - }, { - "id": "8D4950", - "listtype": " " - }, { - "id": "8D4980", - "listtype": " " - }, { - "id": "8D1100", - "listtype": " " - }, { - "id": "8D5EB0", - "listtype": " " - }, { - "id": "8D4A10", - "listtype": " " - }, { - "id": "8D1200", - "listtype": " " - }, { - "id": "8D4A40", - "listtype": " " - }, { - "id": "8D28A0", - "listtype": "E" - }, { - "id": "8D2A90", - "listtype": "E" - }, { - "id": "8D2B10", - "listtype": "E" - }, { - "id": "8D0200", - "listtype": "J" - }, { - "id": "8D03F0", - "listtype": "J" - }, { - "id": "8D0480", - "listtype": "J" - }, { - "id": "8D04E0", - "listtype": "J" - }, { - "id": "8D0560", - "listtype": "J" - }, { - "id": "8D4860", - "listtype": "J" - }, { - "id": "8D4890", - "listtype": "J" - }, { - "id": "8D48C0", - "listtype": "J" - }, { - "id": "8D48F0", - "listtype": "J" - }, { - "id": "8D4920", - "listtype": "J" - }, { - "id": "8D4970", - "listtype": "J" - }, { - "id": "8D49A0", - "listtype": "J" - }, { - "id": "8D4A30", - "listtype": "J" - }, { - "id": "8D4A60", - "listtype": "J" - }, { - "id": "8D2960", - "listtype": "K" - }, { - "id": "8D2B30", - "listtype": "K" - }, { - "id": "8D2B80", - "listtype": "K" - }, { - "id": "8D2D60", - "listtype": "K" - }, { - "id": "8D2F40", - "listtype": "K" - }, { - "id": "8D3080", - "listtype": "K" - }, { - "id": "8D3110", - "listtype": "K" - }, { - "id": "8D5EF0", - "listtype": "K" - }, { - "id": "8D31A0", - "listtype": "K" - }, { - "id": "8D3230", - "listtype": "K" - }, { - "id": "8D1820", - "listtype": "P" - }, { - "id": "8D1CE0", - "listtype": "P" - }, { - "id": "8D05A0", - "listtype": "P" - }, { - "id": "8D0660", - "listtype": "P" - }, { - "id": "8D0D90", - "listtype": "P" - }, { - "id": "8D0F60", - "listtype": "P" - }, { - "id": "8D1020", - "listtype": "P" - }, { - "id": "8D5F30", - "listtype": "P" - }, { - "id": "8D1170", - "listtype": "P" - }, { - "id": "8D1240", - "listtype": "P" - }, { - "id": "8D16E0", - "listtype": "R" - }, { - "id": "8D1C60", - "listtype": "R" - }, { - "id": "8D0580", - "listtype": "R" - }, { - "id": "8D0640", - "listtype": "R" - }, { - "id": "8D0D70", - "listtype": "R" - }, { - "id": "8D0F20", - "listtype": "R" - }, { - "id": "8D5ED0", - "listtype": "R" - }, { - "id": "8D1130", - "listtype": "R" - }, { - "id": "8D1220", - "listtype": "R" - }, { - "id": "8D1780", - "listtype": "S" - }, { - "id": "8D1CB0", - "listtype": "S" - }, { - "id": "8D0590", - "listtype": "S" - }, { - "id": "8D0650", - "listtype": "S" - }, { - "id": "8D0D80", - "listtype": "S" - }, { - "id": "8D0F40", - "listtype": "S" - }, { - "id": "8D5F10", - "listtype": "S" - }, { - "id": "8D1150", - "listtype": "S" - }, { - "id": "8D1230", - "listtype": "S" - }, { - "id": "8D18C0", - "listtype": "W" - }, { - "id": "8D1D10", - "listtype": "W" - }, { - "id": "8D05B0", - "listtype": "W" - }, { - "id": "8D0670", - "listtype": "W" - }, { - "id": "8D0DA0", - "listtype": "W" - }, { - "id": "8D0F80", - "listtype": "W" - }, { - "id": "8D5F50", - "listtype": "W" - }, { - "id": "8D1190", - "listtype": "W" - }, { - "id": "8D1250", - "listtype": "W" - }, { - "id": "8D3E10", - "listtype": "2" - }, { - "id": "8D3E50", - "listtype": "2" - }, { - "id": "8D38A0", - "listtype": "3" - }, { - "id": "8D3DB0", - "listtype": "3" - }, { - "id": "8D3DC0", - "listtype": "3" - }, { - "id": "8D3DD0", - "listtype": "3" - }, { - "id": "8D3DE0", - "listtype": "3" - }, { - "id": "8D3DF0", - "listtype": "3" - }, { - "id": "8D3E30", - "listtype": "3" - }, { - "id": "8D3E60", - "listtype": "3" - }, { - "id": "8D3E80", - "listtype": "3" - }, { - "id": "8D3E90", - "listtype": "3" - }, { - "id": "8D3EB0", - "listtype": "3" - }, { - "id": "8D3660", - "listtype": "4" - }, { - "id": "8D36F0", - "listtype": "4" - }, { - "id": "8D3700", - "listtype": "4" - }, { - "id": "8D38B0", - "listtype": "4" - }, { - "id": "8D3DA0", - "listtype": "4" - }, { - "id": "8D3E70", - "listtype": "4" - }, { - "id": "8D3EA0", - "listtype": "4" - }, { - "id": "8D3EC0", - "listtype": "4" - }] - }, { - "metric": [{ - "id": "8D0110", - "listtype": " " - }, { - "id": "8D01B0", - "listtype": "J" - }, { - "id": "8D2910", - "listtype": "K" - }, { - "id": "8D17D0", - "listtype": "P" - }, { - "id": "8D1690", - "listtype": "R" - }, { - "id": "8D1730", - "listtype": "S" - }, { - "id": "8D1870", - "listtype": "W" - }] - }, { - "metric": [{ - "id": "8D4C60", - "listtype": "H" - }, { - "id": "8D4C80", - "listtype": "H" - }, { - "id": "8D5CB0", - "listtype": "H" - }, { - "id": "8D5CC0", - "listtype": "H" - }, { - "id": "8D5CE0", - "listtype": "H" - }, { - "id": "8D4CA0", - "listtype": "H" - }, { - "id": "8D4D00", - "listtype": "H" - }, { - "id": "8D4D20", - "listtype": "H" - }, { - "id": "8D4D40", - "listtype": "H" - }, { - "id": "8D4D60", - "listtype": "H" - }, { - "id": "8D4D80", - "listtype": "H" - }, { - "id": "8D4DA0", - "listtype": "H" - }, { - "id": "8D4DC0", - "listtype": "H" - }, { - "id": "8D4DE0", - "listtype": "H" - }, { - "id": "8D4E00", - "listtype": "H" - }, { - "id": "8D4E20", - "listtype": "H" - }, { - "id": "8D4E40", - "listtype": "H" - }, { - "id": "8D4E60", - "listtype": "H" - }, { - "id": "8D4E80", - "listtype": "H" - }, { - "id": "8D4EA0", - "listtype": "H" - }, { - "id": "8D5D10", - "listtype": "H" - }, { - "id": "8D5D20", - "listtype": "H" - }, { - "id": "8D5D40", - "listtype": "H" - }, { - "id": "8D5D70", - "listtype": "H" - }, { - "id": "8D5D80", - "listtype": "H" - }, { - "id": "8D5DA0", - "listtype": "H" - }, { - "id": "8D5DD0", - "listtype": "H" - }, { - "id": "8D5DE0", - "listtype": "H" - }, { - "id": "8D4EC0", - "listtype": "H" - }, { - "id": "8D4EE0", - "listtype": "H" - }, { - "id": "8D4F00", - "listtype": "H" - }, { - "id": "8D4F20", - "listtype": "H" - }, { - "id": "8D4F40", - "listtype": "H" - }, { - "id": "8D4F70", - "listtype": "H" - }, { - "id": "8D4F90", - "listtype": "H" - }, { - "id": "8D4FB0", - "listtype": "H" - }, { - "id": "8D4FD0", - "listtype": "H" - }] - }, { - "metric": [{ - "id": "8D4C50", - "listtype": " " - }, { - "id": "8D4C70", - "listtype": " " - }, { - "id": "8D5C90", - "listtype": " " - }, { - "id": "8D5CA0", - "listtype": " " - }, { - "id": "8D5CD0", - "listtype": " " - }, { - "id": "8D4C90", - "listtype": " " - }, { - "id": "8D4D10", - "listtype": " " - }, { - "id": "8D4D30", - "listtype": " " - }, { - "id": "8D4D50", - "listtype": " " - }, { - "id": "8D4D70", - "listtype": " " - }, { - "id": "8D4D90", - "listtype": " " - }, { - "id": "8D4DB0", - "listtype": " " - }, { - "id": "8D4DD0", - "listtype": " " - }, { - "id": "8D4DF0", - "listtype": " " - }, { - "id": "8D4E10", - "listtype": " " - }, { - "id": "8D4E30", - "listtype": " " - }, { - "id": "8D4E50", - "listtype": " " - }, { - "id": "8D4E70", - "listtype": " " - }, { - "id": "8D4E90", - "listtype": " " - }, { - "id": "8D5CF0", - "listtype": " " - }, { - "id": "8D5D00", - "listtype": " " - }, { - "id": "8D5D30", - "listtype": " " - }, { - "id": "8D5D50", - "listtype": " " - }, { - "id": "8D5D60", - "listtype": " " - }, { - "id": "8D5D90", - "listtype": " " - }, { - "id": "8D5DB0", - "listtype": " " - }, { - "id": "8D5DC0", - "listtype": " " - }, { - "id": "8D4EB0", - "listtype": " " - }, { - "id": "8D4ED0", - "listtype": " " - }, { - "id": "8D4EF0", - "listtype": " " - }, { - "id": "8D4F10", - "listtype": " " - }, { - "id": "8D4F30", - "listtype": " " - }, { - "id": "8D4F50", - "listtype": " " - }, { - "id": "8D4F60", - "listtype": " " - }, { - "id": "8D4F80", - "listtype": " " - }, { - "id": "8D4FA0", - "listtype": " " - }, { - "id": "8D4FC0", - "listtype": " " - }] - }, { - "metric": [{ - "id": "8D0600", - "listtype": " " - }, { - "id": "8D2750", - "listtype": " " - }, { - "id": "8D0120", - "listtype": " " - }, { - "id": "8D2790", - "listtype": " " - }, { - "id": "8D26A0", - "listtype": " " - }, { - "id": "8D04D0", - "listtype": " " - }, { - "id": "8D1E10", - "listtype": " " - }, { - "id": "8D2BF0", - "listtype": " " - }, { - "id": "8D2C00", - "listtype": " " - }, { - "id": "8D2C90", - "listtype": " " - }, { - "id": "8D2CA0", - "listtype": " " - }, { - "id": "8D4750", - "listtype": " " - }, { - "id": "8D39B0", - "listtype": " " - }, { - "id": "8D0460", - "listtype": " " - }, { - "id": "8D39C0", - "listtype": " " - }, { - "id": "8D34A0", - "listtype": " " - }, { - "id": "8D34B0", - "listtype": " " - }, { - "id": "8D3550", - "listtype": " " - }, { - "id": "8D3560", - "listtype": " " - }, { - "id": "8D3AE0", - "listtype": " " - }, { - "id": "8D0420", - "listtype": " " - }, { - "id": "8D3AF0", - "listtype": " " - }, { - "id": "8D05E0", - "listtype": " " - }, { - "id": "8D05F0", - "listtype": " " - }, { - "id": "8D2F90", - "listtype": " " - }, { - "id": "8D4500", - "listtype": " " - }, { - "id": "8D0D20", - "listtype": " " - }, { - "id": "8D4510", - "listtype": " " - }, { - "id": "8D3610", - "listtype": " " - }, { - "id": "8D4520", - "listtype": " " - }, { - "id": "8D3030", - "listtype": " " - }, { - "id": "8D30E0", - "listtype": " " - }, { - "id": "8D31F0", - "listtype": " " - }, { - "id": "8D49D0", - "listtype": " " - }, { - "id": "8D49F0", - "listtype": " " - }, { - "id": "8D3240", - "listtype": " " - }, { - "id": "8D4AD0", - "listtype": " " - }, { - "id": "8D4C30", - "listtype": " " - }, { - "id": "8D2880", - "listtype": "E" - }, { - "id": "8D2C10", - "listtype": "E" - }, { - "id": "8D2C80", - "listtype": "E" - }, { - "id": "8D2CB0", - "listtype": "E" - }, { - "id": "8D2D20", - "listtype": "E" - }, { - "id": "8D2D30", - "listtype": "E" - }, { - "id": "8D2BC0", - "listtype": "E" - }, { - "id": "8D2BD0", - "listtype": "E" - }, { - "id": "8D2BE0", - "listtype": "E" - }, { - "id": "8D34C0", - "listtype": "E" - }, { - "id": "8D3540", - "listtype": "E" - }, { - "id": "8D3570", - "listtype": "E" - }, { - "id": "8D35F0", - "listtype": "E" - }, { - "id": "8D3600", - "listtype": "E" - }, { - "id": "8D3050", - "listtype": "E" - }, { - "id": "8D3060", - "listtype": "E" - }, { - "id": "8D3040", - "listtype": "E" - }, { - "id": "8D3620", - "listtype": "E" - }, { - "id": "8D3630", - "listtype": "E" - }, { - "id": "8D3210", - "listtype": "E" - }, { - "id": "8D3220", - "listtype": "E" - }, { - "id": "8D3200", - "listtype": "E" - }, { - "id": "8D3640", - "listtype": "E" - }, { - "id": "8D3650", - "listtype": "E" - }, { - "id": "8D0610", - "listtype": "J" - }, { - "id": "8D33A0", - "listtype": "J" - }, { - "id": "8D14D0", - "listtype": "J" - }, { - "id": "8D33C0", - "listtype": "J" - }, { - "id": "8D01C0", - "listtype": "J" - }, { - "id": "8D26B0", - "listtype": "J" - }, { - "id": "8D3440", - "listtype": "J" - }, { - "id": "8D3450", - "listtype": "J" - }, { - "id": "8D3460", - "listtype": "J" - }, { - "id": "8D0510", - "listtype": "J" - }, { - "id": "8D3470", - "listtype": "J" - }, { - "id": "8D3480", - "listtype": "J" - }, { - "id": "8D3490", - "listtype": "J" - }, { - "id": "8D1EB0", - "listtype": "J" - }, { - "id": "8D2C20", - "listtype": "J" - }, { - "id": "8D2CC0", - "listtype": "J" - }, { - "id": "8D4770", - "listtype": "J" - }, { - "id": "8D34E0", - "listtype": "J" - }, { - "id": "8D3590", - "listtype": "J" - }, { - "id": "8D3070", - "listtype": "J" - }, { - "id": "8D49E0", - "listtype": "J" - }, { - "id": "8D4A00", - "listtype": "J" - }, { - "id": "8D4AE0", - "listtype": "J" - }, { - "id": "8D4C40", - "listtype": "J" - }, { - "id": "8D2920", - "listtype": "K" - }, { - "id": "8D3720", - "listtype": "K" - }, { - "id": "8D3770", - "listtype": "K" - }, { - "id": "8D37C0", - "listtype": "K" - }, { - "id": "8D3810", - "listtype": "K" - }, { - "id": "8D3860", - "listtype": "K" - }, { - "id": "8D2B50", - "listtype": "K" - }, { - "id": "8D2B90", - "listtype": "K" - }, { - "id": "8D2C40", - "listtype": "K" - }, { - "id": "8D2CE0", - "listtype": "K" - }, { - "id": "8D3500", - "listtype": "K" - }, { - "id": "8D35B0", - "listtype": "K" - }, { - "id": "8D43A0", - "listtype": "K" - }, { - "id": "8D3EE0", - "listtype": "K" - }, { - "id": "8D2830", - "listtype": "O" - }, { - "id": "8D31E0", - "listtype": "O" - }, { - "id": "8D2820", - "listtype": "P" - }, { - "id": "8D17E0", - "listtype": "P" - }, { - "id": "8D0FC0", - "listtype": "P" - }, { - "id": "8D3740", - "listtype": "P" - }, { - "id": "8D3790", - "listtype": "P" - }, { - "id": "8D37E0", - "listtype": "P" - }, { - "id": "8D3830", - "listtype": "P" - }, { - "id": "8D3880", - "listtype": "P" - }, { - "id": "8D1D00", - "listtype": "P" - }, { - "id": "8D1E70", - "listtype": "P" - }, { - "id": "8D2C60", - "listtype": "P" - }, { - "id": "8D2D00", - "listtype": "P" - }, { - "id": "8D3520", - "listtype": "P" - }, { - "id": "8D35D0", - "listtype": "P" - }, { - "id": "8D2D40", - "listtype": "P" - }, { - "id": "8D2D50", - "listtype": "P" - }, { - "id": "8D43C0", - "listtype": "P" - }, { - "id": "8D3F00", - "listtype": "P" - }, { - "id": "8D2720", - "listtype": "R" - }, { - "id": "8D16A0", - "listtype": "R" - }, { - "id": "8D27B0", - "listtype": "R" - }, { - "id": "8D3710", - "listtype": "R" - }, { - "id": "8D3760", - "listtype": "R" - }, { - "id": "8D37B0", - "listtype": "R" - }, { - "id": "8D3800", - "listtype": "R" - }, { - "id": "8D3850", - "listtype": "R" - }, { - "id": "8D1CA0", - "listtype": "R" - }, { - "id": "8D1E30", - "listtype": "R" - }, { - "id": "8D2C30", - "listtype": "R" - }, { - "id": "8D2CD0", - "listtype": "R" - }, { - "id": "8D34F0", - "listtype": "R" - }, { - "id": "8D35A0", - "listtype": "R" - }, { - "id": "8D26C0", - "listtype": "R" - }, { - "id": "8D26F0", - "listtype": "R" - }, { - "id": "8D4390", - "listtype": "R" - }, { - "id": "8D3ED0", - "listtype": "R" - }, { - "id": "8D2730", - "listtype": "S" - }, { - "id": "8D1740", - "listtype": "S" - }, { - "id": "8D27C0", - "listtype": "S" - }, { - "id": "8D3730", - "listtype": "S" - }, { - "id": "8D3780", - "listtype": "S" - }, { - "id": "8D37D0", - "listtype": "S" - }, { - "id": "8D3820", - "listtype": "S" - }, { - "id": "8D3870", - "listtype": "S" - }, { - "id": "8D1CD0", - "listtype": "S" - }, { - "id": "8D1E50", - "listtype": "S" - }, { - "id": "8D2C50", - "listtype": "S" - }, { - "id": "8D2CF0", - "listtype": "S" - }, { - "id": "8D3510", - "listtype": "S" - }, { - "id": "8D35C0", - "listtype": "S" - }, { - "id": "8D26D0", - "listtype": "S" - }, { - "id": "8D2700", - "listtype": "S" - }, { - "id": "8D43B0", - "listtype": "S" - }, { - "id": "8D3EF0", - "listtype": "S" - }, { - "id": "8D2740", - "listtype": "W" - }, { - "id": "8D1880", - "listtype": "W" - }, { - "id": "8D27D0", - "listtype": "W" - }, { - "id": "8D3750", - "listtype": "W" - }, { - "id": "8D37A0", - "listtype": "W" - }, { - "id": "8D37F0", - "listtype": "W" - }, { - "id": "8D3840", - "listtype": "W" - }, { - "id": "8D3890", - "listtype": "W" - }, { - "id": "8D1D30", - "listtype": "W" - }, { - "id": "8D1E90", - "listtype": "W" - }, { - "id": "8D2C70", - "listtype": "W" - }, { - "id": "8D2D10", - "listtype": "W" - }, { - "id": "8D3530", - "listtype": "W" - }, { - "id": "8D35E0", - "listtype": "W" - }, { - "id": "8D26E0", - "listtype": "W" - }, { - "id": "8D2710", - "listtype": "W" - }, { - "id": "8D43D0", - "listtype": "W" - }, { - "id": "8D3F10", - "listtype": "W" - }] - }, { - "metric": [{ - "id": "8D5AC0", - "listtype": " " - }, { - "id": "8D6F20", - "listtype": " " - }, { - "id": "8D6F30", - "listtype": " " - }, { - "id": "8D6F40", - "listtype": " " - }, { - "id": "8D6F50", - "listtype": " " - }, { - "id": "8D6F60", - "listtype": " " - }, { - "id": "8D6F70", - "listtype": " " - }, { - "id": "8D5B30", - "listtype": " " - }, { - "id": "8D5B40", - "listtype": " " - }, { - "id": "8D5C10", - "listtype": " " - }, { - "id": "8D5C20", - "listtype": " " - }, { - "id": "8D5A90", - "listtype": "Z" - }, { - "id": "8D5AB0", - "listtype": "Z" - }, { - "id": "8D5AE0", - "listtype": "Z" - }, { - "id": "8D5B00", - "listtype": "Z" - }, { - "id": "8D5B20", - "listtype": "Z" - }, { - "id": "8D5B60", - "listtype": "Z" - }, { - "id": "8D5B80", - "listtype": "Z" - }, { - "id": "8D5BA0", - "listtype": "Z" - }, { - "id": "8D5BC0", - "listtype": "Z" - }, { - "id": "8D5BE0", - "listtype": "Z" - }, { - "id": "8D5C00", - "listtype": "Z" - }] - }, { - "metric": [{ - "id": "8D5A80", - "listtype": " " - }, { - "id": "8D5AA0", - "listtype": " " - }, { - "id": "8D5AD0", - "listtype": " " - }, { - "id": "8D5AF0", - "listtype": " " - }, { - "id": "8D5B10", - "listtype": " " - }, { - "id": "8D5B50", - "listtype": " " - }, { - "id": "8D5B70", - "listtype": " " - }, { - "id": "8D5B90", - "listtype": " " - }, { - "id": "8D5BB0", - "listtype": " " - }, { - "id": "8D5BD0", - "listtype": " " - }, { - "id": "8D5BF0", - "listtype": " " - }] - }, { - "metric": [{ - "id": "8D0050", - "listtype": " " - }, { - "id": "8D0410", - "listtype": " " - }, { - "id": "8D0530", - "listtype": " " - }, { - "id": "8D0BC0", - "listtype": " " - }, { - "id": "8D0C90", - "listtype": " " - }, { - "id": "8D0CE0", - "listtype": " " - }, { - "id": "8D0540", - "listtype": "J" - }, { - "id": "8D0CA0", - "listtype": "J" - }, { - "id": "8D0CF0", - "listtype": "J" - }] - }, { - "metric": [{ - "id": "8D21E0", - "listtype": " " - }, { - "id": "8D2230", - "listtype": " " - }, { - "id": "8D2290", - "listtype": " " - }, { - "id": "8D22B0", - "listtype": " " - }, { - "id": "8D22D0", - "listtype": " " - }, { - "id": "8D22F0", - "listtype": " " - }, { - "id": "8D2220", - "listtype": "V" - }, { - "id": "8D2270", - "listtype": "V" - }, { - "id": "8D2320", - "listtype": "V" - }, { - "id": "8D2350", - "listtype": "V" - }] - }, { - "metric": [{ - "id": "8D0130", - "listtype": " " - }, { - "id": "8D0280", - "listtype": " " - }, { - "id": "8D02A0", - "listtype": " " - }, { - "id": "8D02C0", - "listtype": " " - }, { - "id": "8D02E0", - "listtype": " " - }, { - "id": "8D0300", - "listtype": " " - }, { - "id": "8D41A0", - "listtype": " " - }, { - "id": "8D41B0", - "listtype": " " - }, { - "id": "8D4550", - "listtype": " " - }, { - "id": "8D4560", - "listtype": " " - }, { - "id": "8D41C0", - "listtype": " " - }, { - "id": "8D5F90", - "listtype": " " - }, { - "id": "8D5C30", - "listtype": " " - }, { - "id": "8D41D0", - "listtype": " " - }, { - "id": "8D4CB0", - "listtype": " " - }, { - "id": "8D4250", - "listtype": " " - }, { - "id": "8D4210", - "listtype": " " - }, { - "id": "8D4230", - "listtype": " " - }, { - "id": "8D41F0", - "listtype": " " - }, { - "id": "8D6F80", - "listtype": " " - }, { - "id": "8D6FA0", - "listtype": " " - }, { - "id": "8D6FC0", - "listtype": " " - }, { - "id": "8D6FE0", - "listtype": " " - }, { - "id": "8D7000", - "listtype": " " - }, { - "id": "8D7020", - "listtype": " " - }, { - "id": "8D7040", - "listtype": " " - }, { - "id": "8D7060", - "listtype": " " - }, { - "id": "8D7080", - "listtype": " " - }, { - "id": "8D70A0", - "listtype": " " - }, { - "id": "8D70B0", - "listtype": " " - }, { - "id": "8D70E0", - "listtype": " " - }, { - "id": "8D7100", - "listtype": " " - }, { - "id": "8D7120", - "listtype": " " - }, { - "id": "8D42A0", - "listtype": " " - }, { - "id": "8D5C40", - "listtype": " " - }, { - "id": "8D0B60", - "listtype": " " - }, { - "id": "8D2ED0", - "listtype": " " - }, { - "id": "8D0BD0", - "listtype": " " - }, { - "id": "8D47E0", - "listtype": " " - }, { - "id": "8D4800", - "listtype": " " - }, { - "id": "8D4820", - "listtype": " " - }, { - "id": "8D0C30", - "listtype": " " - }, { - "id": "8D0CC0", - "listtype": " " - }, { - "id": "8D0D00", - "listtype": " " - }, { - "id": "8D4350", - "listtype": " " - }, { - "id": "8D4270", - "listtype": " " - }, { - "id": "8D4280", - "listtype": " " - }, { - "id": "8D4290", - "listtype": " " - }, { - "id": "8D42C0", - "listtype": " " - }, { - "id": "8D42F0", - "listtype": " " - }, { - "id": "8D42E0", - "listtype": " " - }, { - "id": "8D4570", - "listtype": " " - }, { - "id": "8D4310", - "listtype": " " - }, { - "id": "8D4CD0", - "listtype": " " - }, { - "id": "8D4620", - "listtype": " " - }, { - "id": "8D4580", - "listtype": " " - }, { - "id": "8D4630", - "listtype": " " - }, { - "id": "8D4650", - "listtype": " " - }, { - "id": "8D4640", - "listtype": " " - }, { - "id": "8D5FA0", - "listtype": " " - }, { - "id": "8D4600", - "listtype": " " - }, { - "id": "8D4590", - "listtype": " " - }, { - "id": "8D45A0", - "listtype": " " - }, { - "id": "8D45B0", - "listtype": " " - }, { - "id": "8D45D0", - "listtype": " " - }, { - "id": "8D4CF0", - "listtype": " " - }, { - "id": "8D45E0", - "listtype": " " - }, { - "id": "8D4610", - "listtype": " " - }, { - "id": "8D4660", - "listtype": " " - }, { - "id": "8D4330", - "listtype": " " - }, { - "id": "8D5C60", - "listtype": " " - }, { - "id": "8D5C70", - "listtype": " " - }, { - "id": "8D4370", - "listtype": " " - }, { - "id": "8D0ED0", - "listtype": " " - }, { - "id": "8D1030", - "listtype": " " - }, { - "id": "8D1080", - "listtype": " " - }, { - "id": "8D1270", - "listtype": " " - }, { - "id": "8D28C0", - "listtype": "E" - }, { - "id": "8D01D0", - "listtype": "J" - }, { - "id": "8D0290", - "listtype": "J" - }, { - "id": "8D02B0", - "listtype": "J" - }, { - "id": "8D02D0", - "listtype": "J" - }, { - "id": "8D02F0", - "listtype": "J" - }, { - "id": "8D0310", - "listtype": "J" - }, { - "id": "8D41E0", - "listtype": "J" - }, { - "id": "8D4CC0", - "listtype": "J" - }, { - "id": "8D4260", - "listtype": "J" - }, { - "id": "8D4220", - "listtype": "J" - }, { - "id": "8D4240", - "listtype": "J" - }, { - "id": "8D4200", - "listtype": "J" - }, { - "id": "8D6F90", - "listtype": "J" - }, { - "id": "8D6FB0", - "listtype": "J" - }, { - "id": "8D6FD0", - "listtype": "J" - }, { - "id": "8D6FF0", - "listtype": "J" - }, { - "id": "8D7010", - "listtype": "J" - }, { - "id": "8D7030", - "listtype": "J" - }, { - "id": "8D7090", - "listtype": "J" - }, { - "id": "8D70F0", - "listtype": "J" - }, { - "id": "8D7110", - "listtype": "J" - }, { - "id": "8D7130", - "listtype": "J" - }, { - "id": "8D42B0", - "listtype": "J" - }, { - "id": "8D5C50", - "listtype": "J" - }, { - "id": "8D0B70", - "listtype": "J" - }, { - "id": "8D47F0", - "listtype": "J" - }, { - "id": "8D4810", - "listtype": "J" - }, { - "id": "8D4830", - "listtype": "J" - }, { - "id": "8D0BE0", - "listtype": "J" - }, { - "id": "8D0C40", - "listtype": "J" - }, { - "id": "8D0CD0", - "listtype": "J" - }, { - "id": "8D0D10", - "listtype": "J" - }, { - "id": "8D4360", - "listtype": "J" - }, { - "id": "8D42D0", - "listtype": "J" - }, { - "id": "8D4300", - "listtype": "J" - }, { - "id": "8D4320", - "listtype": "J" - }, { - "id": "8D4CE0", - "listtype": "J" - }, { - "id": "8D45C0", - "listtype": "J" - }, { - "id": "8D45F0", - "listtype": "J" - }, { - "id": "8D4340", - "listtype": "J" - }, { - "id": "8D5C80", - "listtype": "J" - }, { - "id": "8D4380", - "listtype": "J" - }, { - "id": "8D0EE0", - "listtype": "J" - }, { - "id": "8D1090", - "listtype": "J" - }, { - "id": "8D1280", - "listtype": "J" - }, { - "id": "8D2930", - "listtype": "K" - }, { - "id": "8D29E0", - "listtype": "K" - }, { - "id": "8D29F0", - "listtype": "K" - }, { - "id": "8D2A00", - "listtype": "K" - }, { - "id": "8D2A10", - "listtype": "K" - }, { - "id": "8D2A20", - "listtype": "K" - }, { - "id": "8D2EC0", - "listtype": "K" - }, { - "id": "8D2EF0", - "listtype": "K" - }, { - "id": "8D2F00", - "listtype": "K" - }, { - "id": "8D3120", - "listtype": "K" - }, { - "id": "8D17F0", - "listtype": "P" - }, { - "id": "8D1900", - "listtype": "P" - }, { - "id": "8D1940", - "listtype": "P" - }, { - "id": "8D1980", - "listtype": "P" - }, { - "id": "8D19C0", - "listtype": "P" - }, { - "id": "8D1A00", - "listtype": "P" - }, { - "id": "8D0BA0", - "listtype": "P" - }, { - "id": "8D0C10", - "listtype": "P" - }, { - "id": "8D0C70", - "listtype": "P" - }, { - "id": "8D1060", - "listtype": "P" - }, { - "id": "8D16B0", - "listtype": "R" - }, { - "id": "8D18E0", - "listtype": "R" - }, { - "id": "8D1920", - "listtype": "R" - }, { - "id": "8D1960", - "listtype": "R" - }, { - "id": "8D19A0", - "listtype": "R" - }, { - "id": "8D19E0", - "listtype": "R" - }, { - "id": "8D0B80", - "listtype": "R" - }, { - "id": "8D0BF0", - "listtype": "R" - }, { - "id": "8D0C50", - "listtype": "R" - }, { - "id": "8D1040", - "listtype": "R" - }, { - "id": "8D1750", - "listtype": "S" - }, { - "id": "8D18F0", - "listtype": "S" - }, { - "id": "8D1930", - "listtype": "S" - }, { - "id": "8D1970", - "listtype": "S" - }, { - "id": "8D19B0", - "listtype": "S" - }, { - "id": "8D19F0", - "listtype": "S" - }, { - "id": "8D0B90", - "listtype": "S" - }, { - "id": "8D0C00", - "listtype": "S" - }, { - "id": "8D0C60", - "listtype": "S" - }, { - "id": "8D1050", - "listtype": "S" - }, { - "id": "8D1890", - "listtype": "W" - }, { - "id": "8D1910", - "listtype": "W" - }, { - "id": "8D1950", - "listtype": "W" - }, { - "id": "8D1990", - "listtype": "W" - }, { - "id": "8D19D0", - "listtype": "W" - }, { - "id": "8D1A10", - "listtype": "W" - }, { - "id": "8D0BB0", - "listtype": "W" - }, { - "id": "8D0C20", - "listtype": "W" - }, { - "id": "8D0C80", - "listtype": "W" - }, { - "id": "8D1070", - "listtype": "W" - }] - }, { - "metric": [{ - "id": "8D0140", - "listtype": " " - }, { - "id": "8D01E0", - "listtype": "J" - }, { - "id": "8D2940", - "listtype": "K" - }, { - "id": "8D1800", - "listtype": "P" - }, { - "id": "8D16C0", - "listtype": "R" - }, { - "id": "8D1760", - "listtype": "S" - }, { - "id": "8D18A0", - "listtype": "W" - }] - }, { - "metric": [{ - "id": "8D0160", - "listtype": " " - }, { - "id": "8D1A20", - "listtype": " " - }, { - "id": "8D1A80", - "listtype": " " - }, { - "id": "8D1AE0", - "listtype": " " - }, { - "id": "8D1B40", - "listtype": " " - }, { - "id": "8D1BA0", - "listtype": " " - }, { - "id": "8D1C00", - "listtype": " " - }, { - "id": "8D04A0", - "listtype": " " - }, { - "id": "8D1D40", - "listtype": " " - }, { - "id": "8D1DB0", - "listtype": " " - }, { - "id": "8D0550", - "listtype": " " - }, { - "id": "8D1ED0", - "listtype": " " - }, { - "id": "8D1F30", - "listtype": " " - }, { - "id": "8D0620", - "listtype": " " - }, { - "id": "8D0680", - "listtype": " " - }, { - "id": "8D0D50", - "listtype": " " - }, { - "id": "8D0E40", - "listtype": " " - }, { - "id": "8D5DF0", - "listtype": " " - }, { - "id": "8D0EB0", - "listtype": " " - }, { - "id": "8D0F00", - "listtype": " " - }, { - "id": "8D0FA0", - "listtype": " " - }, { - "id": "8D0E90", - "listtype": " " - }, { - "id": "8D0FE0", - "listtype": " " - }, { - "id": "8D1000", - "listtype": " " - }, { - "id": "8D10A0", - "listtype": " " - }, { - "id": "8D5E50", - "listtype": " " - }, { - "id": "8D1110", - "listtype": " " - }, { - "id": "8D5EC0", - "listtype": " " - }, { - "id": "8D11B0", - "listtype": " " - }, { - "id": "8D5F70", - "listtype": " " - }, { - "id": "8D11D0", - "listtype": " " - }, { - "id": "8D1FB0", - "listtype": " " - }, { - "id": "8D11F0", - "listtype": " " - }, { - "id": "8D1200", - "listtype": " " - }, { - "id": "8D3310", - "listtype": "A" - }, { - "id": "8D2560", - "listtype": "A" - }, { - "id": "8D32E0", - "listtype": "A" - }, { - "id": "8D3340", - "listtype": "A" - }, { - "id": "8D3400", - "listtype": "A" - }, { - "id": "8D25B0", - "listtype": "A" - }, { - "id": "8D47B0", - "listtype": "A" - }, { - "id": "8D47D0", - "listtype": "A" - }, { - "id": "8D24A0", - "listtype": "A" - }, { - "id": "8D25F0", - "listtype": "A" - }, { - "id": "8D43F0", - "listtype": "A" - }, { - "id": "8D4AA0", - "listtype": "A" - }, { - "id": "8D4AC0", - "listtype": "A" - }, { - "id": "8D4540", - "listtype": "A" - }, { - "id": "8D2640", - "listtype": "A" - }, { - "id": "8D2670", - "listtype": "A" - }, { - "id": "8D2690", - "listtype": "A" - }, { - "id": "8D4470", - "listtype": "A" - }, { - "id": "8D4B20", - "listtype": "A" - }, { - "id": "8D4B40", - "listtype": "A" - }, { - "id": "8D4B80", - "listtype": "A" - }, { - "id": "8D4BA0", - "listtype": "A" - }, { - "id": "8D4BE0", - "listtype": "A" - }, { - "id": "8D4C00", - "listtype": "A" - }, { - "id": "8D2760", - "listtype": "B" - }, { - "id": "8D27A0", - "listtype": "B" - }, { - "id": "8D2A30", - "listtype": "B" - }, { - "id": "8D2A80", - "listtype": "B" - }, { - "id": "8D4760", - "listtype": "B" - }, { - "id": "8D2420", - "listtype": "B" - }, { - "id": "8D2440", - "listtype": "B" - }, { - "id": "8D2460", - "listtype": "B" - }, { - "id": "8D34D0", - "listtype": "B" - }, { - "id": "8D3580", - "listtype": "B" - }, { - "id": "8D2480", - "listtype": "B" - }, { - "id": "8D4850", - "listtype": "B" - }, { - "id": "8D4880", - "listtype": "B" - }, { - "id": "8D48B0", - "listtype": "B" - }, { - "id": "8D48E0", - "listtype": "B" - }, { - "id": "8D4910", - "listtype": "B" - }, { - "id": "8D4960", - "listtype": "B" - }, { - "id": "8D4990", - "listtype": "B" - }, { - "id": "8D4A20", - "listtype": "B" - }, { - "id": "8D4A50", - "listtype": "B" - }, { - "id": "8D0070", - "listtype": "C" - }, { - "id": "8D0090", - "listtype": "C" - }, { - "id": "8D2040", - "listtype": "D" - }, { - "id": "8D2090", - "listtype": "D" - }, { - "id": "8D4680", - "listtype": "F" - }, { - "id": "8D2070", - "listtype": "F" - }, { - "id": "8D46A0", - "listtype": "F" - }, { - "id": "8D2010", - "listtype": "F" - }, { - "id": "8D2030", - "listtype": "F" - }, { - "id": "8D46C0", - "listtype": "F" - }, { - "id": "8D46E0", - "listtype": "F" - }, { - "id": "8D4700", - "listtype": "F" - }, { - "id": "8D4720", - "listtype": "F" - }, { - "id": "8D4740", - "listtype": "F" - }, { - "id": "8D21B0", - "listtype": "F" - }, { - "id": "8D4FF0", - "listtype": "G" - }, { - "id": "8D5000", - "listtype": "G" - }, { - "id": "8D5020", - "listtype": "G" - }, { - "id": "8D5030", - "listtype": "G" - }, { - "id": "8D5050", - "listtype": "G" - }, { - "id": "8D5060", - "listtype": "G" - }, { - "id": "8D5080", - "listtype": "G" - }, { - "id": "8D5090", - "listtype": "G" - }, { - "id": "8D50B0", - "listtype": "G" - }, { - "id": "8D50C0", - "listtype": "G" - }, { - "id": "8D50E0", - "listtype": "G" - }, { - "id": "8D50F0", - "listtype": "G" - }, { - "id": "8D5110", - "listtype": "G" - }, { - "id": "8D5120", - "listtype": "G" - }, { - "id": "8D5140", - "listtype": "G" - }, { - "id": "8D5150", - "listtype": "G" - }, { - "id": "8D5170", - "listtype": "G" - }, { - "id": "8D5180", - "listtype": "G" - }, { - "id": "8D51A0", - "listtype": "G" - }, { - "id": "8D51B0", - "listtype": "G" - }, { - "id": "8D51D0", - "listtype": "G" - }, { - "id": "8D51E0", - "listtype": "G" - }, { - "id": "8D5200", - "listtype": "G" - }, { - "id": "8D5210", - "listtype": "G" - }, { - "id": "8D5230", - "listtype": "G" - }, { - "id": "8D5240", - "listtype": "G" - }, { - "id": "8D5260", - "listtype": "G" - }, { - "id": "8D5270", - "listtype": "G" - }, { - "id": "8D5290", - "listtype": "G" - }, { - "id": "8D52A0", - "listtype": "G" - }, { - "id": "8D52C0", - "listtype": "G" - }, { - "id": "8D52D0", - "listtype": "G" - }, { - "id": "8D52F0", - "listtype": "G" - }, { - "id": "8D5300", - "listtype": "G" - }, { - "id": "8D5320", - "listtype": "G" - }, { - "id": "8D5330", - "listtype": "G" - }, { - "id": "8D5350", - "listtype": "G" - }, { - "id": "8D5360", - "listtype": "G" - }, { - "id": "8D5380", - "listtype": "G" - }, { - "id": "8D5390", - "listtype": "G" - }, { - "id": "8D5970", - "listtype": "G" - }, { - "id": "8D5980", - "listtype": "G" - }, { - "id": "8D59A0", - "listtype": "G" - }, { - "id": "8D59B0", - "listtype": "G" - }, { - "id": "8D59D0", - "listtype": "G" - }, { - "id": "8D59E0", - "listtype": "G" - }, { - "id": "8D5A00", - "listtype": "G" - }, { - "id": "8D5A10", - "listtype": "G" - }, { - "id": "8D5A30", - "listtype": "G" - }, { - "id": "8D5A40", - "listtype": "G" - }, { - "id": "8D5A60", - "listtype": "G" - }, { - "id": "8D5A70", - "listtype": "G" - }, { - "id": "8D2960", - "listtype": "K" - }, { - "id": "8D2980", - "listtype": "K" - }, { - "id": "8D2990", - "listtype": "K" - }, { - "id": "8D29A0", - "listtype": "K" - }, { - "id": "8D29B0", - "listtype": "K" - }, { - "id": "8D29C0", - "listtype": "K" - }, { - "id": "8D29D0", - "listtype": "K" - }, { - "id": "8D2B30", - "listtype": "K" - }, { - "id": "8D2B60", - "listtype": "K" - }, { - "id": "8D2B70", - "listtype": "K" - }, { - "id": "8D2B80", - "listtype": "K" - }, { - "id": "8D2BB0", - "listtype": "K" - }, { - "id": "8D7F60", - "listtype": "K" - }, { - "id": "8D2D60", - "listtype": "K" - }, { - "id": "8D2F40", - "listtype": "K" - }, { - "id": "8D5E10", - "listtype": "K" - }, { - "id": "8D2FC0", - "listtype": "K" - }, { - "id": "8D3080", - "listtype": "K" - }, { - "id": "8D3100", - "listtype": "K" - }, { - "id": "8D3110", - "listtype": "K" - }, { - "id": "8D5E70", - "listtype": "K" - }, { - "id": "8D3130", - "listtype": "K" - }, { - "id": "8D5F00", - "listtype": "K" - }, { - "id": "8D31B0", - "listtype": "K" - }, { - "id": "8D3230", - "listtype": "K" - }, { - "id": "8D6EE0", - "listtype": "K" - }, { - "id": "8D0690", - "listtype": "L" - }, { - "id": "8D0EC0", - "listtype": "L" - }, { - "id": "8D1650", - "listtype": "M" - }, { - "id": "8D0220", - "listtype": "M" - }, { - "id": "8D1A70", - "listtype": "M" - }, { - "id": "8D1AD0", - "listtype": "M" - }, { - "id": "8D1B30", - "listtype": "M" - }, { - "id": "8D1B90", - "listtype": "M" - }, { - "id": "8D1BF0", - "listtype": "M" - }, { - "id": "8D1C50", - "listtype": "M" - }, { - "id": "8D0400", - "listtype": "M" - }, { - "id": "8D0490", - "listtype": "M" - }, { - "id": "8D0520", - "listtype": "M" - }, { - "id": "8D1DA0", - "listtype": "M" - }, { - "id": "8D1E00", - "listtype": "M" - }, { - "id": "8D0570", - "listtype": "M" - }, { - "id": "8D1F20", - "listtype": "M" - }, { - "id": "8D1F80", - "listtype": "M" - }, { - "id": "8D0450", - "listtype": "M" - }, { - "id": "8D2410", - "listtype": "M" - }, { - "id": "8D2430", - "listtype": "M" - }, { - "id": "8D2450", - "listtype": "M" - }, { - "id": "8D2470", - "listtype": "M" - }, { - "id": "8D0630", - "listtype": "M" - }, { - "id": "8D7050", - "listtype": "M" - }, { - "id": "8D7070", - "listtype": "M" - }, { - "id": "8D70C0", - "listtype": "M" - }, { - "id": "8D70D0", - "listtype": "M" - }, { - "id": "8D0D60", - "listtype": "M" - }, { - "id": "8D0F10", - "listtype": "M" - }, { - "id": "8D1FA0", - "listtype": "M" - }, { - "id": "8D1210", - "listtype": "M" - }, { - "id": "8D1FE0", - "listtype": "M" - }, { - "id": "8D53B0", - "listtype": "M" - }, { - "id": "8D53D0", - "listtype": "M" - }, { - "id": "8D53F0", - "listtype": "M" - }, { - "id": "8D5410", - "listtype": "M" - }, { - "id": "8D5430", - "listtype": "M" - }, { - "id": "8D5450", - "listtype": "M" - }, { - "id": "8D5470", - "listtype": "M" - }, { - "id": "8D5490", - "listtype": "M" - }, { - "id": "8D54B0", - "listtype": "M" - }, { - "id": "8D54D0", - "listtype": "M" - }, { - "id": "8D54F0", - "listtype": "M" - }, { - "id": "8D5510", - "listtype": "M" - }, { - "id": "8D5530", - "listtype": "M" - }, { - "id": "8D5550", - "listtype": "M" - }, { - "id": "8D5570", - "listtype": "M" - }, { - "id": "8D5590", - "listtype": "M" - }, { - "id": "8D55B0", - "listtype": "M" - }, { - "id": "8D55D0", - "listtype": "M" - }, { - "id": "8D55F0", - "listtype": "M" - }, { - "id": "8D5610", - "listtype": "M" - }, { - "id": "8D5630", - "listtype": "M" - }, { - "id": "8D5650", - "listtype": "M" - }, { - "id": "8D5670", - "listtype": "M" - }, { - "id": "8D5690", - "listtype": "M" - }, { - "id": "8D56B0", - "listtype": "M" - }, { - "id": "8D56D0", - "listtype": "M" - }, { - "id": "8D56F0", - "listtype": "M" - }, { - "id": "8D5710", - "listtype": "M" - }, { - "id": "8D5730", - "listtype": "M" - }, { - "id": "8D5750", - "listtype": "M" - }, { - "id": "8D5770", - "listtype": "M" - }, { - "id": "8D5790", - "listtype": "M" - }, { - "id": "8D57B0", - "listtype": "M" - }, { - "id": "8D57D0", - "listtype": "M" - }, { - "id": "8D57F0", - "listtype": "M" - }, { - "id": "8D5810", - "listtype": "M" - }, { - "id": "8D5830", - "listtype": "M" - }, { - "id": "8D5850", - "listtype": "M" - }, { - "id": "8D5870", - "listtype": "M" - }, { - "id": "8D5890", - "listtype": "M" - }, { - "id": "8D58B0", - "listtype": "M" - }, { - "id": "8D58D0", - "listtype": "M" - }, { - "id": "8D58F0", - "listtype": "M" - }, { - "id": "8D5910", - "listtype": "M" - }, { - "id": "8D5930", - "listtype": "M" - }, { - "id": "8D5950", - "listtype": "M" - }, { - "id": "8D2890", - "listtype": "N" - }, { - "id": "8D2B00", - "listtype": "N" - }, { - "id": "8D1820", - "listtype": "P" - }, { - "id": "8D1A50", - "listtype": "P" - }, { - "id": "8D1AB0", - "listtype": "P" - }, { - "id": "8D1B10", - "listtype": "P" - }, { - "id": "8D1B70", - "listtype": "P" - }, { - "id": "8D1BD0", - "listtype": "P" - }, { - "id": "8D1C30", - "listtype": "P" - }, { - "id": "8D1CE0", - "listtype": "P" - }, { - "id": "8D1D80", - "listtype": "P" - }, { - "id": "8D1DE0", - "listtype": "P" - }, { - "id": "8D05A0", - "listtype": "P" - }, { - "id": "8D1F00", - "listtype": "P" - }, { - "id": "8D1F60", - "listtype": "P" - }, { - "id": "8D0660", - "listtype": "P" - }, { - "id": "8D0D90", - "listtype": "P" - }, { - "id": "8D5E30", - "listtype": "P" - }, { - "id": "8D0E70", - "listtype": "P" - }, { - "id": "8D0F70", - "listtype": "P" - }, { - "id": "8D0FB0", - "listtype": "P" - }, { - "id": "8D2380", - "listtype": "P" - }, { - "id": "8D0FF0", - "listtype": "P" - }, { - "id": "8D1010", - "listtype": "P" - }, { - "id": "8D1020", - "listtype": "P" - }, { - "id": "8D5E90", - "listtype": "P" - }, { - "id": "8D10D0", - "listtype": "P" - }, { - "id": "8D5F40", - "listtype": "P" - }, { - "id": "8D1180", - "listtype": "P" - }, { - "id": "8D5F80", - "listtype": "P" - }, { - "id": "8D11C0", - "listtype": "P" - }, { - "id": "8D11E0", - "listtype": "P" - }, { - "id": "8D1240", - "listtype": "P" - }, { - "id": "8D6F00", - "listtype": "P" - }, { - "id": "8D16E0", - "listtype": "R" - }, { - "id": "8D1A30", - "listtype": "R" - }, { - "id": "8D1A90", - "listtype": "R" - }, { - "id": "8D1AF0", - "listtype": "R" - }, { - "id": "8D1B50", - "listtype": "R" - }, { - "id": "8D1BB0", - "listtype": "R" - }, { - "id": "8D1C10", - "listtype": "R" - }, { - "id": "8D1C60", - "listtype": "R" - }, { - "id": "8D1D60", - "listtype": "R" - }, { - "id": "8D1DC0", - "listtype": "R" - }, { - "id": "8D0580", - "listtype": "R" - }, { - "id": "8D1EE0", - "listtype": "R" - }, { - "id": "8D1F40", - "listtype": "R" - }, { - "id": "8D0640", - "listtype": "R" - }, { - "id": "8D0D70", - "listtype": "R" - }, { - "id": "8D5E00", - "listtype": "R" - }, { - "id": "8D0E50", - "listtype": "R" - }, { - "id": "8D0F30", - "listtype": "R" - }, { - "id": "8D5E60", - "listtype": "R" - }, { - "id": "8D10B0", - "listtype": "R" - }, { - "id": "8D5EE0", - "listtype": "R" - }, { - "id": "8D1140", - "listtype": "R" - }, { - "id": "8D1220", - "listtype": "R" - }, { - "id": "8D6ED0", - "listtype": "R" - }, { - "id": "8D1780", - "listtype": "S" - }, { - "id": "8D1A40", - "listtype": "S" - }, { - "id": "8D1AA0", - "listtype": "S" - }, { - "id": "8D1B00", - "listtype": "S" - }, { - "id": "8D1B60", - "listtype": "S" - }, { - "id": "8D1BC0", - "listtype": "S" - }, { - "id": "8D1C20", - "listtype": "S" - }, { - "id": "8D1CB0", - "listtype": "S" - }, { - "id": "8D1D70", - "listtype": "S" - }, { - "id": "8D1DD0", - "listtype": "S" - }, { - "id": "8D0590", - "listtype": "S" - }, { - "id": "8D1EF0", - "listtype": "S" - }, { - "id": "8D1F50", - "listtype": "S" - }, { - "id": "8D0650", - "listtype": "S" - }, { - "id": "8D0D80", - "listtype": "S" - }, { - "id": "8D5E20", - "listtype": "S" - }, { - "id": "8D0E60", - "listtype": "S" - }, { - "id": "8D0F50", - "listtype": "S" - }, { - "id": "8D6E80", - "listtype": "S" - }, { - "id": "8D6EB0", - "listtype": "S" - }, { - "id": "8D5E80", - "listtype": "S" - }, { - "id": "8D10C0", - "listtype": "S" - }, { - "id": "8D5F20", - "listtype": "S" - }, { - "id": "8D1160", - "listtype": "S" - }, { - "id": "8D1FC0", - "listtype": "S" - }, { - "id": "8D1FD0", - "listtype": "S" - }, { - "id": "8D1230", - "listtype": "S" - }, { - "id": "8D6EF0", - "listtype": "S" - }, { - "id": "8D39D0", - "listtype": "T" - }, { - "id": "8D20B0", - "listtype": "T" - }, { - "id": "8D20F0", - "listtype": "T" - }, { - "id": "8D2130", - "listtype": "T" - }, { - "id": "8D2170", - "listtype": "T" - }, { - "id": "8D0340", - "listtype": "U" - }, { - "id": "8D05D0", - "listtype": "U" - }, { - "id": "8D0020", - "listtype": "V" - }, { - "id": "8D00D0", - "listtype": "V" - }, { - "id": "8D0250", - "listtype": "V" - }, { - "id": "8D0360", - "listtype": "V" - }, { - "id": "8D0440", - "listtype": "V" - }, { - "id": "8D0EA0", - "listtype": "V" - }, { - "id": "8D12A0", - "listtype": "V" - }, { - "id": "8D1120", - "listtype": "V" - }, { - "id": "8D12C0", - "listtype": "V" - }, { - "id": "8D18C0", - "listtype": "W" - }, { - "id": "8D1A60", - "listtype": "W" - }, { - "id": "8D1AC0", - "listtype": "W" - }, { - "id": "8D1B20", - "listtype": "W" - }, { - "id": "8D1B80", - "listtype": "W" - }, { - "id": "8D1BE0", - "listtype": "W" - }, { - "id": "8D1C40", - "listtype": "W" - }, { - "id": "8D1D10", - "listtype": "W" - }, { - "id": "8D1D90", - "listtype": "W" - }, { - "id": "8D1DF0", - "listtype": "W" - }, { - "id": "8D05B0", - "listtype": "W" - }, { - "id": "8D1F10", - "listtype": "W" - }, { - "id": "8D1F70", - "listtype": "W" - }, { - "id": "8D0670", - "listtype": "W" - }, { - "id": "8D0DA0", - "listtype": "W" - }, { - "id": "8D5E40", - "listtype": "W" - }, { - "id": "8D0E80", - "listtype": "W" - }, { - "id": "8D0F90", - "listtype": "W" - }, { - "id": "8D5EA0", - "listtype": "W" - }, { - "id": "8D10E0", - "listtype": "W" - }, { - "id": "8D5F60", - "listtype": "W" - }, { - "id": "8D11A0", - "listtype": "W" - }, { - "id": "8D1250", - "listtype": "W" - }, { - "id": "8D6F10", - "listtype": "W" - }, { - "id": "8D3320", - "listtype": "X" - }, { - "id": "8D2550", - "listtype": "X" - }, { - "id": "8D32F0", - "listtype": "X" - }, { - "id": "8D3350", - "listtype": "X" - }, { - "id": "8D3410", - "listtype": "X" - }, { - "id": "8D33D0", - "listtype": "X" - }, { - "id": "8D3370", - "listtype": "X" - }, { - "id": "8D3390", - "listtype": "X" - }, { - "id": "8D33F0", - "listtype": "X" - }, { - "id": "8D3430", - "listtype": "X" - }, { - "id": "8D25D0", - "listtype": "X" - }, { - "id": "8D3E00", - "listtype": "1" - }, { - "id": "8D3E40", - "listtype": "1" - }, { - "id": "8D3E10", - "listtype": "2" - }, { - "id": "8D3E50", - "listtype": "2" - }, { - "id": "8D38A0", - "listtype": "3" - }, { - "id": "8D3DB0", - "listtype": "3" - }, { - "id": "8D3DC0", - "listtype": "3" - }, { - "id": "8D3DD0", - "listtype": "3" - }, { - "id": "8D3DE0", - "listtype": "3" - }, { - "id": "8D3DF0", - "listtype": "3" - }, { - "id": "8D3E30", - "listtype": "3" - }, { - "id": "8D3E60", - "listtype": "3" - }, { - "id": "8D3E80", - "listtype": "3" - }, { - "id": "8D3E90", - "listtype": "3" - }, { - "id": "8D3EB0", - "listtype": "3" - }, { - "id": "8D3660", - "listtype": "4" - }, { - "id": "8D36F0", - "listtype": "4" - }, { - "id": "8D3700", - "listtype": "4" - }, { - "id": "8D38B0", - "listtype": "4" - }, { - "id": "8D3DA0", - "listtype": "4" - }, { - "id": "8D3E70", - "listtype": "4" - }, { - "id": "8D3EA0", - "listtype": "4" - }, { - "id": "8D3EC0", - "listtype": "4" - }, { - "id": "8D3E20", - "listtype": "5" - }, { - "id": "8D6470", - "listtype": "6" - }, { - "id": "8D6490", - "listtype": "6" - }, { - "id": "8D64B0", - "listtype": "6" - }, { - "id": "8D64D0", - "listtype": "6" - }, { - "id": "8D64F0", - "listtype": "6" - }, { - "id": "8D6510", - "listtype": "6" - }, { - "id": "8D6530", - "listtype": "6" - }, { - "id": "8D6550", - "listtype": "6" - }, { - "id": "8D6570", - "listtype": "6" - }, { - "id": "8D6590", - "listtype": "6" - }, { - "id": "8D65B0", - "listtype": "6" - }, { - "id": "8D65D0", - "listtype": "6" - }, { - "id": "8D65F0", - "listtype": "6" - }, { - "id": "8D6610", - "listtype": "6" - }, { - "id": "8D6630", - "listtype": "6" - }, { - "id": "8D6650", - "listtype": "6" - }, { - "id": "8D6670", - "listtype": "6" - }, { - "id": "8D6690", - "listtype": "6" - }, { - "id": "8D66B0", - "listtype": "6" - }, { - "id": "8D66D0", - "listtype": "6" - }, { - "id": "8D66F0", - "listtype": "6" - }, { - "id": "8D6710", - "listtype": "6" - }, { - "id": "8D6730", - "listtype": "6" - }, { - "id": "8D6750", - "listtype": "6" - }, { - "id": "8D6770", - "listtype": "6" - }, { - "id": "8D6790", - "listtype": "6" - }, { - "id": "8D67B0", - "listtype": "6" - }, { - "id": "8D67D0", - "listtype": "6" - }, { - "id": "8D67E0", - "listtype": "6" - }, { - "id": "8D67F0", - "listtype": "6" - }, { - "id": "8D6830", - "listtype": "6" - }, { - "id": "8D6850", - "listtype": "6" - }, { - "id": "8D6870", - "listtype": "6" - }, { - "id": "8D6890", - "listtype": "6" - }, { - "id": "8D68B0", - "listtype": "6" - }, { - "id": "8D68D0", - "listtype": "6" - }, { - "id": "8D68F0", - "listtype": "6" - }, { - "id": "8D6910", - "listtype": "6" - }, { - "id": "8D6930", - "listtype": "6" - }, { - "id": "8D6950", - "listtype": "6" - }, { - "id": "8D6970", - "listtype": "6" - }, { - "id": "8D6990", - "listtype": "6" - }, { - "id": "8D69B0", - "listtype": "6" - }, { - "id": "8D69D0", - "listtype": "6" - }, { - "id": "8D69F0", - "listtype": "6" - }, { - "id": "8D6A10", - "listtype": "6" - }, { - "id": "8D6A30", - "listtype": "6" - }, { - "id": "8D6A50", - "listtype": "6" - }, { - "id": "8D6A70", - "listtype": "6" - }, { - "id": "8D6A90", - "listtype": "6" - }, { - "id": "8D6AB0", - "listtype": "6" - }, { - "id": "8D6AD0", - "listtype": "6" - }, { - "id": "8D6AF0", - "listtype": "6" - }, { - "id": "8D6B10", - "listtype": "6" - }, { - "id": "8D6B30", - "listtype": "6" - }, { - "id": "8D6B50", - "listtype": "6" - }, { - "id": "8D6B70", - "listtype": "6" - }, { - "id": "8D6B90", - "listtype": "6" - }, { - "id": "8D6BB0", - "listtype": "6" - }, { - "id": "8D6BD0", - "listtype": "6" - }, { - "id": "8D6BF0", - "listtype": "6" - }, { - "id": "8D6C10", - "listtype": "6" - }, { - "id": "8D6C30", - "listtype": "6" - }, { - "id": "8D6C50", - "listtype": "6" - }, { - "id": "8D6C70", - "listtype": "6" - }, { - "id": "8D6C90", - "listtype": "6" - }, { - "id": "8D6CB0", - "listtype": "6" - }, { - "id": "8D6CD0", - "listtype": "6" - }, { - "id": "8D6CF0", - "listtype": "6" - }, { - "id": "8D6D10", - "listtype": "6" - }, { - "id": "8D6D30", - "listtype": "6" - }, { - "id": "8D6D50", - "listtype": "6" - }, { - "id": "8D6D70", - "listtype": "6" - }, { - "id": "8D6D90", - "listtype": "6" - }, { - "id": "8D6DB0", - "listtype": "6" - }, { - "id": "8D6DD0", - "listtype": "6" - }, { - "id": "8D6DF0", - "listtype": "6" - }, { - "id": "8D6E10", - "listtype": "6" - }, { - "id": "8D6E30", - "listtype": "7" - }, { - "id": "8D6E50", - "listtype": "7" - }, { - "id": "8D6E70", - "listtype": "7" - }] - }, { - "metric": [{ - "id": "8D0010", - "listtype": " " - }, { - "id": "8D21F0", - "listtype": " " - }, { - "id": "8D2240", - "listtype": " " - }, { - "id": "8D00B0", - "listtype": " " - }, { - "id": "8D0170", - "listtype": " " - }, { - "id": "8D0240", - "listtype": " " - }, { - "id": "8D2770", - "listtype": " " - }, { - "id": "8D0350", - "listtype": " " - }, { - "id": "8D2A40", - "listtype": " " - }, { - "id": "8D0430", - "listtype": " " - }, { - "id": "8D04C0", - "listtype": " " - }, { - "id": "8D2280", - "listtype": " " - }, { - "id": "8D21C0", - "listtype": " " - }, { - "id": "8D21D0", - "listtype": " " - }, { - "id": "8D2FF0", - "listtype": " " - }, { - "id": "8D3090", - "listtype": " " - }, { - "id": "8D0E90", - "listtype": " " - }, { - "id": "8D1290", - "listtype": " " - }, { - "id": "8D2300", - "listtype": " " - }, { - "id": "8D30D0", - "listtype": " " - }, { - "id": "8D2330", - "listtype": " " - }, { - "id": "8D10F0", - "listtype": " " - }, { - "id": "8D12B0", - "listtype": " " - }, { - "id": "8D0210", - "listtype": "J" - }, { - "id": "8D0500", - "listtype": "J" - }] - }, { - "metric": [{ - "id": "8D5E10", - "listtype": "K" - }, { - "id": "8D3080", - "listtype": "K" - }, { - "id": "8D3110", - "listtype": "K" - }, { - "id": "8D5E70", - "listtype": "K" - }, { - "id": "8D3230", - "listtype": "K" - }, { - "id": "8D6EE0", - "listtype": "K" - }, { - "id": "8D5E30", - "listtype": "P" - }, { - "id": "8D0F60", - "listtype": "P" - }, { - "id": "8D0FF0", - "listtype": "P" - }, { - "id": "8D1020", - "listtype": "P" - }, { - "id": "8D5E90", - "listtype": "P" - }, { - "id": "8D5F40", - "listtype": "P" - }, { - "id": "8D1240", - "listtype": "P" - }, { - "id": "8D6F00", - "listtype": "P" - }, { - "id": "8D5E00", - "listtype": "R" - }, { - "id": "8D0F20", - "listtype": "R" - }, { - "id": "8D5E60", - "listtype": "R" - }, { - "id": "8D1220", - "listtype": "R" - }, { - "id": "8D6ED0", - "listtype": "R" - }, { - "id": "8D5E20", - "listtype": "S" - }, { - "id": "8D0F50", - "listtype": "S" - }, { - "id": "8D6E80", - "listtype": "S" - }, { - "id": "8D6EB0", - "listtype": "S" - }, { - "id": "8D5E80", - "listtype": "S" - }, { - "id": "8D5F20", - "listtype": "S" - }, { - "id": "8D1230", - "listtype": "S" - }, { - "id": "8D6EF0", - "listtype": "S" - }, { - "id": "8D5E40", - "listtype": "W" - }, { - "id": "8D0F80", - "listtype": "W" - }, { - "id": "8D5EA0", - "listtype": "W" - }, { - "id": "8D1250", - "listtype": "W" - }, { - "id": "8D6F10", - "listtype": "W" - }, { - "id": "8D6E30", - "listtype": "7" - }, { - "id": "8D6E50", - "listtype": "7" - }, { - "id": "8D6E70", - "listtype": "7" - }] - }, { - "metric": [{ - "id": "8D5DF0", - "listtype": " " - }, { - "id": "8D0EF0", - "listtype": " " - }, { - "id": "8D6E90", - "listtype": " " - }, { - "id": "8D5E50", - "listtype": " " - }, { - "id": "8D1200", - "listtype": " " - }, { - "id": "8D6EC0", - "listtype": " " - }] - }, { - "metric": [{ - "id": "8D5DF0", - "listtype": " " - }, { - "id": "8D0EF0", - "listtype": " " - }, { - "id": "8D5E50", - "listtype": " " - }, { - "id": "8D1200", - "listtype": " " - }, { - "id": "8D6EC0", - "listtype": " " - }, { - "id": "8D5E10", - "listtype": "K" - }, { - "id": "8D3080", - "listtype": "K" - }, { - "id": "8D6EA0", - "listtype": "K" - }, { - "id": "8D5E70", - "listtype": "K" - }, { - "id": "8D3230", - "listtype": "K" - }, { - "id": "8D6EE0", - "listtype": "K" - }] - }, { - "metric": [{ - "id": "8D6E20", - "listtype": " " - }, { - "id": "8D6E40", - "listtype": " " - }, { - "id": "8D6E60", - "listtype": " " - }] - }, { - "metric": [{ - "id": "8D5DF0", - "listtype": " " - }, { - "id": "8D0EF0", - "listtype": " " - }, { - "id": "8D0FE0", - "listtype": " " - }, { - "id": "8D1000", - "listtype": " " - }, { - "id": "8D5E50", - "listtype": " " - }, { - "id": "8D5EC0", - "listtype": " " - }, { - "id": "8D1200", - "listtype": " " - }, { - "id": "8D6EC0", - "listtype": " " - }] - }, { - "metric": [{ - "id": "8D5DF0", - "listtype": " " - }, { - "id": "8D0EF0", - "listtype": " " - }, { - "id": "8D0FE0", - "listtype": " " - }, { - "id": "8D1000", - "listtype": " " - }, { - "id": "8D5E50", - "listtype": " " - }, { - "id": "8D5EC0", - "listtype": " " - }, { - "id": "8D1200", - "listtype": " " - }, { - "id": "8D6EC0", - "listtype": " " - }, { - "id": "8D5E30", - "listtype": "P" - }, { - "id": "8D0F60", - "listtype": "P" - }, { - "id": "8D0FF0", - "listtype": "P" - }, { - "id": "8D1020", - "listtype": "P" - }, { - "id": "8D5E90", - "listtype": "P" - }, { - "id": "8D5F40", - "listtype": "P" - }, { - "id": "8D1240", - "listtype": "P" - }, { - "id": "8D6F00", - "listtype": "P" - }] - }, { - "metric": [{ - "id": "8D5DF0", - "listtype": " " - }, { - "id": "8D0EF0", - "listtype": " " - }, { - "id": "8D5E50", - "listtype": " " - }, { - "id": "8D1200", - "listtype": " " - }, { - "id": "8D6EC0", - "listtype": " " - }, { - "id": "8D5E30", - "listtype": "P" - }, { - "id": "8D0F60", - "listtype": "P" - }, { - "id": "8D0FF0", - "listtype": "P" - }, { - "id": "8D1020", - "listtype": "P" - }, { - "id": "8D5E90", - "listtype": "P" - }, { - "id": "8D5F40", - "listtype": "P" - }, { - "id": "8D1240", - "listtype": "P" - }, { - "id": "8D6F00", - "listtype": "P" - }, { - "id": "8D5E20", - "listtype": "S" - }, { - "id": "8D0F50", - "listtype": "S" - }, { - "id": "8D6E80", - "listtype": "S" - }, { - "id": "8D6EB0", - "listtype": "S" - }, { - "id": "8D5E80", - "listtype": "S" - }, { - "id": "8D5F20", - "listtype": "S" - }, { - "id": "8D1230", - "listtype": "S" - }, { - "id": "8D6EF0", - "listtype": "S" - }] - }, { - "metric": [{ - "id": "8D0150", - "listtype": " " - }, { - "id": "8D01F0", - "listtype": "J" - }, { - "id": "8D2950", - "listtype": "K" - }, { - "id": "8D1810", - "listtype": "P" - }, { - "id": "8D16D0", - "listtype": "R" - }, { - "id": "8D1770", - "listtype": "S" - }, { - "id": "8D18B0", - "listtype": "W" - }] - }, { - "metric": [{ - "id": "8D53A0", - "listtype": " " - }, { - "id": "8D53C0", - "listtype": " " - }, { - "id": "8D53E0", - "listtype": " " - }, { - "id": "8D5400", - "listtype": " " - }, { - "id": "8D5420", - "listtype": " " - }, { - "id": "8D5440", - "listtype": " " - }, { - "id": "8D5460", - "listtype": " " - }, { - "id": "8D5480", - "listtype": " " - }, { - "id": "8D54A0", - "listtype": " " - }, { - "id": "8D54C0", - "listtype": " " - }, { - "id": "8D54E0", - "listtype": " " - }, { - "id": "8D5500", - "listtype": " " - }, { - "id": "8D5520", - "listtype": " " - }, { - "id": "8D5540", - "listtype": " " - }, { - "id": "8D5560", - "listtype": " " - }, { - "id": "8D5580", - "listtype": " " - }, { - "id": "8D55A0", - "listtype": " " - }, { - "id": "8D55C0", - "listtype": " " - }, { - "id": "8D55E0", - "listtype": " " - }, { - "id": "8D5600", - "listtype": " " - }, { - "id": "8D5620", - "listtype": " " - }, { - "id": "8D5640", - "listtype": " " - }, { - "id": "8D5660", - "listtype": " " - }, { - "id": "8D5680", - "listtype": " " - }, { - "id": "8D56A0", - "listtype": " " - }, { - "id": "8D56C0", - "listtype": " " - }, { - "id": "8D56E0", - "listtype": " " - }, { - "id": "8D5700", - "listtype": " " - }, { - "id": "8D5720", - "listtype": " " - }, { - "id": "8D5740", - "listtype": " " - }, { - "id": "8D5760", - "listtype": " " - }, { - "id": "8D5780", - "listtype": " " - }, { - "id": "8D57A0", - "listtype": " " - }, { - "id": "8D57C0", - "listtype": " " - }, { - "id": "8D57E0", - "listtype": " " - }, { - "id": "8D5800", - "listtype": " " - }, { - "id": "8D5820", - "listtype": " " - }, { - "id": "8D5840", - "listtype": " " - }, { - "id": "8D5860", - "listtype": " " - }, { - "id": "8D5880", - "listtype": " " - }, { - "id": "8D58A0", - "listtype": " " - }, { - "id": "8D58C0", - "listtype": " " - }, { - "id": "8D58E0", - "listtype": " " - }, { - "id": "8D5900", - "listtype": " " - }, { - "id": "8D5920", - "listtype": " " - }, { - "id": "8D5940", - "listtype": " " - }, { - "id": "8D5000", - "listtype": "G" - }, { - "id": "8D5030", - "listtype": "G" - }, { - "id": "8D5060", - "listtype": "G" - }, { - "id": "8D5090", - "listtype": "G" - }, { - "id": "8D50C0", - "listtype": "G" - }, { - "id": "8D50F0", - "listtype": "G" - }, { - "id": "8D5120", - "listtype": "G" - }, { - "id": "8D5150", - "listtype": "G" - }, { - "id": "8D5180", - "listtype": "G" - }, { - "id": "8D51B0", - "listtype": "G" - }, { - "id": "8D51E0", - "listtype": "G" - }, { - "id": "8D5210", - "listtype": "G" - }, { - "id": "8D5240", - "listtype": "G" - }, { - "id": "8D5270", - "listtype": "G" - }, { - "id": "8D52A0", - "listtype": "G" - }, { - "id": "8D52D0", - "listtype": "G" - }, { - "id": "8D5300", - "listtype": "G" - }, { - "id": "8D5330", - "listtype": "G" - }, { - "id": "8D5360", - "listtype": "G" - }, { - "id": "8D5390", - "listtype": "G" - }, { - "id": "8D5980", - "listtype": "G" - }, { - "id": "8D59B0", - "listtype": "G" - }, { - "id": "8D59E0", - "listtype": "G" - }, { - "id": "8D5A10", - "listtype": "G" - }, { - "id": "8D5A40", - "listtype": "G" - }, { - "id": "8D5A70", - "listtype": "G" - }] - }] -} \ No newline at end of file + "metricList": [ + { + "metric": [ + { + "description": "% read (in I/O rate)", + "id": "8D4FE0", + "listtype": " " + }, + { + "description": "% space used", + "id": "8D5010", + "listtype": " " + }, + { + "description": "# cancelled operations", + "id": "8D5040", + "listtype": " " + }, + { + "description": "# disk I/O errors", + "id": "8D5070", + "listtype": " " + }, + { + "description": "# open objects", + "id": "8D50A0", + "listtype": " " + }, + { + "description": "# tokens", + "id": "8D50D0", + "listtype": " " + }, + { + "description": "# vnodes", + "id": "8D5100", + "listtype": " " + }, + { + "description": "# ENOSPC errors", + "id": "8D5130", + "listtype": " " + }, + { + "description": "# USS held vnodes", + "id": "8D5160", + "listtype": " " + }, + { + "description": "# XCF communication failures", + "id": "8D5190", + "listtype": " " + }, + { + "description": "# 4K pages in user cache", + "id": "8D51C0", + "listtype": " " + }, + { + "description": "# 8K pages in metadata cache", + "id": "8D51F0", + "listtype": " " + }, + { + "description": "aggregate read rate", + "id": "8D5220", + "listtype": " " + }, + { + "description": "aggregate write rate", + "id": "8D5250", + "listtype": " " + }, + { + "description": "application read rate", + "id": "8D5280", + "listtype": " " + }, + { + "description": "application read response time", + "id": "8D52B0", + "listtype": " " + }, + { + "description": "application write rate", + "id": "8D52E0", + "listtype": " " + }, + { + "description": "application write response time", + "id": "8D5310", + "listtype": " " + }, + { + "description": "maximum size", + "id": "8D5340", + "listtype": " " + }, + { + "description": "response time (read + write)", + "id": "8D5370", + "listtype": " " + }, + { + "description": "I/O rate (read + write)", + "id": "8D5960", + "listtype": " " + }, + { + "description": "XCF rate (read + write)", + "id": "8D5990", + "listtype": " " + }, + { + "description": "XCF read rate", + "id": "8D59C0", + "listtype": " " + }, + { + "description": "XCF read response time", + "id": "8D59F0", + "listtype": " " + }, + { + "description": "XCF write rate", + "id": "8D5A20", + "listtype": " " + }, + { + "description": "XCF write response time", + "id": "8D5A50", + "listtype": " " + } + ] + }, + { + "metric": [ + { + "description": "% bus utilization by channel path", + "id": "8D2370", + "listtype": "C" + }, + { + "description": "% partition utilization by channel path", + "id": "8D0070", + "listtype": "C" + }, + { + "description": "% total utilization by channel path", + "id": "8D0090", + "listtype": "C" + }, + { + "description": "ficon active operations by channel path", + "id": "8D4410", + "listtype": "C" + }, + { + "description": "ficon deferred operation rate by channel path", + "id": "8D4430", + "listtype": "C" + }, + { + "description": "ficon operation rate by channel path", + "id": "8D4450", + "listtype": "C" + }, + { + "description": "partition bytes read/sec by channel path", + "id": "8D23A0", + "listtype": "C" + }, + { + "description": "partition bytes written/sec by channel path", + "id": "8D23C0", + "listtype": "C" + }, + { + "description": "receive fail/sec by channel path", + "id": "8D3170", + "listtype": "C" + }, + { + "description": "send fail/sec by channel path", + "id": "8D31D0", + "listtype": "C" + }, + { + "description": "total bytes read/sec by channel path", + "id": "8D23E0", + "listtype": "C" + }, + { + "description": "total bytes written/sec by channel path", + "id": "8D2400", + "listtype": "C" + }, + { + "description": "zHPF active operations by channel path", + "id": "8D4490", + "listtype": "C" + }, + { + "description": "zHPF deferred operation rate by channel path", + "id": "8D44B0", + "listtype": "C" + }, + { + "description": "zHPF operation rate by channel path", + "id": "8D44D0", + "listtype": "C" + }, + { + "description": "% director port busy by channel path and CU", + "id": "8D0340", + "listtype": "U" + }, + { + "description": "% CU busy by channel path and CU", + "id": "8D05D0", + "listtype": "U" + } + ] + }, + { + "metric": [ + { + "description": "# delayed i/o requests by LCU", + "id": "8D0690", + "listtype": "L" + }, + { + "description": "average channel subsystem delay time (in mSec) by LCU", + "id": "8D2800", + "listtype": "L" + }, + { + "description": "delayed i/o request rate by LCU", + "id": "8D0EC0", + "listtype": "L" + }, + { + "description": "% director port busy by channel path and CU", + "id": "8D0340", + "listtype": "U" + }, + { + "description": "% CU busy by channel path and CU", + "id": "8D05D0", + "listtype": "U" + }, + { + "description": "average command response time (in mSec) by channel path and CU", + "id": "8D2810", + "listtype": "U" + }, + { + "description": "average CU busy time (in mSec) by channel path and CU", + "id": "8D27E0", + "listtype": "U" + }, + { + "description": "CHPID taken rate by channel path and CU", + "id": "8D05C0", + "listtype": "U" + } + ] + }, + { + "metric": [ + { + "description": "% cache hits by SSID", + "id": "8D2210", + "listtype": "I" + }, + { + "description": "% cache misses by SSID", + "id": "8D2260", + "listtype": "I" + }, + { + "description": "% cache read misses by SSID", + "id": "8D22A0", + "listtype": "I" + }, + { + "description": "% cache write misses by SSID", + "id": "8D22C0", + "listtype": "I" + }, + { + "description": "% of read operations by SSID", + "id": "8D22E0", + "listtype": "I" + }, + { + "description": "i/o rate by SSID", + "id": "8D2310", + "listtype": "I" + } + ] + }, + { + "metric": [ + { + "description": "% freespace", + "id": "8D2A50", + "listtype": " " + }, + { + "description": "capacity", + "id": "8D3000", + "listtype": " " + }, + { + "description": "freespace", + "id": "8D30A0", + "listtype": " " + }, + { + "description": "% freespace by storage group", + "id": "8D2A60", + "listtype": "Q" + }, + { + "description": "capacity by storage group", + "id": "8D3010", + "listtype": "Q" + }, + { + "description": "freespace by storage group", + "id": "8D30B0", + "listtype": "Q" + }, + { + "description": "% active time by volume", + "id": "8D0020", + "listtype": "V" + }, + { + "description": "% cache hits (all systems) by volume", + "id": "8D2200", + "listtype": "V" + }, + { + "description": "% cache misses (all systems) by volume", + "id": "8D2250", + "listtype": "V" + }, + { + "description": "% connect time by volume", + "id": "8D00D0", + "listtype": "V" + }, + { + "description": "% delay by volume", + "id": "8D0230", + "listtype": "V" + }, + { + "description": "% delay device busy by volume", + "id": "8D0250", + "listtype": "V" + }, + { + "description": "% delay due to device command response time by volume", + "id": "8D2780", + "listtype": "V" + }, + { + "description": "% disconnect time by volume", + "id": "8D0360", + "listtype": "V" + }, + { + "description": "% freespace by volume", + "id": "8D2A70", + "listtype": "V" + }, + { + "description": "% pending time by volume", + "id": "8D0440", + "listtype": "V" + }, + { + "description": "capacity by volume", + "id": "8D3020", + "listtype": "V" + }, + { + "description": "freespace by volume", + "id": "8D30C0", + "listtype": "V" + }, + { + "description": "i/o activity rate by volume", + "id": "8D0EA0", + "listtype": "V" + }, + { + "description": "i/o intensity by volume", + "id": "8D12A0", + "listtype": "V" + }, + { + "description": "non-cache dasd i/o rate (all systems) by volume", + "id": "8D2340", + "listtype": "V" + }, + { + "description": "response time by volume", + "id": "8D1120", + "listtype": "V" + }, + { + "description": "IOS queue time by volume", + "id": "8D12C0", + "listtype": "V" + } + ] + }, + { + "metric": [ + { + "description": "active time (ms) by WLM report class period", + "id": "8D5E10", + "listtype": "K" + }, + { + "description": "execution velocity by WLM report class period", + "id": "8D3080", + "listtype": "K" + }, + { + "description": "performance index by WLM report class period", + "id": "8D3110", + "listtype": "K" + }, + { + "description": "queue time (ms) by WLM report class period", + "id": "8D5E70", + "listtype": "K" + }, + { + "description": "transaction ended rate by WLM report class period", + "id": "8D3230", + "listtype": "K" + }, + { + "description": "wait time (ms) by WLM report class period", + "id": "8D6EE0", + "listtype": "K" + }, + { + "description": "active time (ms) by WLM report class", + "id": "8D5E00", + "listtype": "R" + }, + { + "description": "execution velocity by WLM report class", + "id": "8D0F20", + "listtype": "R" + }, + { + "description": "queue time (ms) by WLM report class", + "id": "8D5E60", + "listtype": "R" + }, + { + "description": "transaction ended rate by WLM report class", + "id": "8D1220", + "listtype": "R" + }, + { + "description": "wait time (ms) by WLM report class", + "id": "8D6ED0", + "listtype": "R" + } + ] + }, + { + "metric": [ + { + "description": "capacity actual (# CPs) by WLM resource group", + "id": "8D6E30", + "listtype": "7" + }, + { + "description": "capacity actual (MSU) by WLM resource group", + "id": "8D6E50", + "listtype": "7" + }, + { + "description": "capacity actual (SU/sec) by WLM resource group", + "id": "8D6E70", + "listtype": "7" + } + ] + }, + { + "metric": [ + { + "description": "active time (ms) by WLM service class period", + "id": "8D5E30", + "listtype": "P" + }, + { + "description": "execution velocity by WLM service class period", + "id": "8D0F60", + "listtype": "P" + }, + { + "description": "percentile achieving response time goal by WLM service class period", + "id": "8D0FF0", + "listtype": "P" + }, + { + "description": "performance index by WLM service class period", + "id": "8D1020", + "listtype": "P" + }, + { + "description": "queue time (ms) by WLM service class period", + "id": "8D5E90", + "listtype": "P" + }, + { + "description": "response time (ms) by WLM service class period", + "id": "8D5F40", + "listtype": "P" + }, + { + "description": "transaction ended rate by WLM service class period", + "id": "8D1240", + "listtype": "P" + }, + { + "description": "wait time (ms) by WLM service class period", + "id": "8D6F00", + "listtype": "P" + }, + { + "description": "active time (ms) by WLM service class", + "id": "8D5E20", + "listtype": "S" + }, + { + "description": "execution velocity by WLM service class", + "id": "8D0F50", + "listtype": "S" + }, + { + "description": "percentile achieving response time goal by WLM service class", + "id": "8D6E80", + "listtype": "S" + }, + { + "description": "performance index by WLM service class", + "id": "8D6EB0", + "listtype": "S" + }, + { + "description": "queue time (ms) by WLM service class", + "id": "8D5E80", + "listtype": "S" + }, + { + "description": "response time (ms) by WLM service class", + "id": "8D5F20", + "listtype": "S" + }, + { + "description": "transaction ended rate by WLM service class", + "id": "8D1230", + "listtype": "S" + }, + { + "description": "wait time (ms) by WLM service class", + "id": "8D6EF0", + "listtype": "S" + }, + { + "description": "active time (ms) by WLM workload", + "id": "8D5E40", + "listtype": "W" + }, + { + "description": "execution velocity by WLM workload", + "id": "8D0F80", + "listtype": "W" + }, + { + "description": "queue time (ms) by WLM workload", + "id": "8D5EA0", + "listtype": "W" + }, + { + "description": "transaction ended rate by WLM workload", + "id": "8D1250", + "listtype": "W" + }, + { + "description": "wait time (ms) by WLM workload", + "id": "8D6F10", + "listtype": "W" + } + ] + }, + { + "metric": [ + { + "description": "# slots", + "id": "8D0D30", + "listtype": " " + }, + { + "description": "# slots available", + "id": "8D2F10", + "listtype": " " + }, + { + "description": "# slots by job", + "id": "8D0D40", + "listtype": "J" + } + ] + }, + { + "metric": [ + { + "description": "% frames active", + "id": "8D0370", + "listtype": " " + }, + { + "description": "% frames available", + "id": "8D0380", + "listtype": " " + }, + { + "description": "% frames idle", + "id": "8D0390", + "listtype": " " + }, + { + "description": "% frames CSA", + "id": "8D03A0", + "listtype": " " + }, + { + "description": "% frames LPA", + "id": "8D03B0", + "listtype": " " + }, + { + "description": "% frames NUC", + "id": "8D03C0", + "listtype": " " + }, + { + "description": "% frames SQA", + "id": "8D03D0", + "listtype": " " + }, + { + "description": "# frames available", + "id": "8D2EE0", + "listtype": " " + }, + { + "description": "# frames online", + "id": "8D0CB0", + "listtype": " " + }, + { + "description": "# user region pages allocated above 16 M", + "id": "8D2F20", + "listtype": " " + }, + { + "description": "# user region pages allocated below 16 M", + "id": "8D2F30", + "listtype": " " + }, + { + "description": "# LSQA/SWA/EUKYSP pages allocated above 16 M", + "id": "8D2FA0", + "listtype": " " + }, + { + "description": "# LSQA/SWA/UKYSP pages allocated below 16 M", + "id": "8D2FB0", + "listtype": " " + }, + { + "description": "pagein rate", + "id": "8D30F0", + "listtype": " " + }, + { + "description": "unreferenced interval count", + "id": "8D1260", + "listtype": " " + }, + { + "description": "working set", + "id": "8D1270", + "listtype": " " + }, + { + "description": "working set by job", + "id": "8D1280", + "listtype": "J" + } + ] + }, + { + "metric": [ + { + "description": "% CPU utilization", + "id": "8D39A0", + "listtype": " " + }, + { + "description": "async request rate", + "id": "8D20A0", + "listtype": " " + }, + { + "description": "async service time", + "id": "8D20E0", + "listtype": " " + }, + { + "description": "sync request rate", + "id": "8D2120", + "listtype": " " + }, + { + "description": "sync service time", + "id": "8D2160", + "listtype": " " + }, + { + "description": "async request rate by MVS image", + "id": "8D20C0", + "listtype": "M" + }, + { + "description": "async service time by MVS image", + "id": "8D2100", + "listtype": "M" + }, + { + "description": "sync request rate by MVS image", + "id": "8D2140", + "listtype": "M" + }, + { + "description": "sync service time by MVS image", + "id": "8D2180", + "listtype": "M" + } + ] + }, + { + "metric": [ + { + "description": "% bus utilization", + "id": "8D2360", + "listtype": " " + }, + { + "description": "% partition utilization", + "id": "8D0060", + "listtype": " " + }, + { + "description": "% total utilization", + "id": "8D0080", + "listtype": " " + }, + { + "description": "ficon active operations", + "id": "8D4400", + "listtype": " " + }, + { + "description": "ficon deferred operation rate", + "id": "8D4420", + "listtype": " " + }, + { + "description": "ficon operation rate", + "id": "8D4440", + "listtype": " " + }, + { + "description": "partition bytes read/sec", + "id": "8D2390", + "listtype": " " + }, + { + "description": "partition bytes written/sec", + "id": "8D23B0", + "listtype": " " + }, + { + "description": "receive fail/sec", + "id": "8D3160", + "listtype": " " + }, + { + "description": "send fail/sec", + "id": "8D31C0", + "listtype": " " + }, + { + "description": "total bytes read/sec", + "id": "8D23D0", + "listtype": " " + }, + { + "description": "total bytes written/sec", + "id": "8D23F0", + "listtype": " " + }, + { + "description": "zHPF active operations", + "id": "8D4480", + "listtype": " " + }, + { + "description": "zHPF deferred operation rate", + "id": "8D44A0", + "listtype": " " + }, + { + "description": "zHPF operation rate", + "id": "8D44C0", + "listtype": " " + } + ] + }, + { + "metric": [ + { + "description": "% augmented space in use", + "id": "8D4670", + "listtype": " " + }, + { + "description": "% processor utilization", + "id": "8D2060", + "listtype": " " + }, + { + "description": "% storage class memory in-use", + "id": "8D4690", + "listtype": " " + }, + { + "description": "# effective logical processors", + "id": "8D1FF0", + "listtype": " " + }, + { + "description": "# frames available", + "id": "8D2000", + "listtype": " " + }, + { + "description": "# frames installed", + "id": "8D2020", + "listtype": " " + }, + { + "description": "# of bytes available for augmented space", + "id": "8D46B0", + "listtype": " " + }, + { + "description": "# of bytes available for storage class memory", + "id": "8D46D0", + "listtype": " " + }, + { + "description": "# of bytes configured for augmented space", + "id": "8D46F0", + "listtype": " " + }, + { + "description": "# of bytes configured for storage class memory", + "id": "8D4710", + "listtype": " " + }, + { + "description": "# of maximum bytes for storage class memory", + "id": "8D4730", + "listtype": " " + }, + { + "description": "total request rate", + "id": "8D21A0", + "listtype": " " + }, + { + "description": "% path delay by MVS image", + "id": "8D2050", + "listtype": "M" + }, + { + "description": "% subchannel busy by MVS image", + "id": "8D38C0", + "listtype": "M" + }, + { + "description": "% subchannel delay by MVS image", + "id": "8D2080", + "listtype": "M" + }, + { + "description": "async request rate by MVS image", + "id": "8D20D0", + "listtype": "M" + }, + { + "description": "async service time by MVS image", + "id": "8D2110", + "listtype": "M" + }, + { + "description": "sync request rate by MVS image", + "id": "8D2150", + "listtype": "M" + }, + { + "description": "sync service time by MVS image", + "id": "8D2190", + "listtype": "M" + }, + { + "description": "% CPU utilization by CF structure", + "id": "8D39D0", + "listtype": "T" + }, + { + "description": "async request rate by CF structure", + "id": "8D20B0", + "listtype": "T" + }, + { + "description": "async service time by CF structure", + "id": "8D20F0", + "listtype": "T" + }, + { + "description": "sync request rate by CF structure", + "id": "8D2130", + "listtype": "T" + }, + { + "description": "sync service time by CF structure", + "id": "8D2170", + "listtype": "T" + } + ] + }, + { + "metric": [ + { + "description": "% effective physical utilization (AAP)", + "id": "8D3290", + "listtype": " " + }, + { + "description": "% effective physical utilization (CP)", + "id": "8D24D0", + "listtype": " " + }, + { + "description": "% effective physical utilization (ICF)", + "id": "8D3270", + "listtype": " " + }, + { + "description": "% effective physical utilization (IFL)", + "id": "8D32B0", + "listtype": " " + }, + { + "description": "% effective physical utilization (IIP)", + "id": "8D1C80", + "listtype": " " + }, + { + "description": "% total physical utilization (shared AAP)", + "id": "8D3910", + "listtype": " " + }, + { + "description": "% total physical utilization (shared CP)", + "id": "8D3920", + "listtype": " " + }, + { + "description": "% total physical utilization (shared ICF)", + "id": "8D3930", + "listtype": " " + }, + { + "description": "% total physical utilization (shared IFL)", + "id": "8D3940", + "listtype": " " + }, + { + "description": "% total physical utilization (shared IIP)", + "id": "8D3950", + "listtype": " " + }, + { + "description": "% total physical utilization (AAP)", + "id": "8D3300", + "listtype": " " + }, + { + "description": "% total physical utilization (CP)", + "id": "8D2540", + "listtype": " " + }, + { + "description": "% total physical utilization (ICF)", + "id": "8D32D0", + "listtype": " " + }, + { + "description": "% total physical utilization (IFL)", + "id": "8D3330", + "listtype": " " + }, + { + "description": "% total physical utilization (IIP)", + "id": "8D1C70", + "listtype": " " + }, + { + "description": "% LPAR management time (AAP)", + "id": "8D39F0", + "listtype": " " + }, + { + "description": "% LPAR management time (AAP) for PHYSICAL", + "id": "8D1F90", + "listtype": " " + }, + { + "description": "% LPAR management time (CP)", + "id": "8D3A10", + "listtype": " " + }, + { + "description": "% LPAR management time (CP) for PHYSICAL", + "id": "8D3360", + "listtype": " " + }, + { + "description": "% LPAR management time (ICF)", + "id": "8D3A40", + "listtype": " " + }, + { + "description": "% LPAR management time (ICF) for PHYSICAL", + "id": "8D3380", + "listtype": " " + }, + { + "description": "% LPAR management time (IFL)", + "id": "8D3A90", + "listtype": " " + }, + { + "description": "% LPAR management time (IFL) for PHYSICAL", + "id": "8D33E0", + "listtype": " " + }, + { + "description": "% LPAR management time (IIP)", + "id": "8D3AC0", + "listtype": " " + }, + { + "description": "% LPAR management time (IIP) for PHYSICAL", + "id": "8D3420", + "listtype": " " + }, + { + "description": "# logical processors shared (CP)", + "id": "8D3BA0", + "listtype": " " + }, + { + "description": "# logical processors shared (ICF)", + "id": "8D3BD0", + "listtype": " " + }, + { + "description": "# logical processors shared (IFL)", + "id": "8D3C20", + "listtype": " " + }, + { + "description": "# logical processors/cores shared (AAP)", + "id": "8D3B70", + "listtype": " " + }, + { + "description": "# logical processors/cores shared (IIP)", + "id": "8D3C50", + "listtype": " " + }, + { + "description": "# processors dedicated (CP)", + "id": "8D3B20", + "listtype": " " + }, + { + "description": "# processors online (CP)", + "id": "8D3CA0", + "listtype": " " + }, + { + "description": "# processors online (ICF)", + "id": "8D3CD0", + "listtype": " " + }, + { + "description": "# processors online (IFL)", + "id": "8D3D20", + "listtype": " " + }, + { + "description": "# processors shared (AAP)", + "id": "8D3D70", + "listtype": " " + }, + { + "description": "# processors shared (CP)", + "id": "8D3D80", + "listtype": " " + }, + { + "description": "# processors shared (IIP)", + "id": "8D3D90", + "listtype": " " + }, + { + "description": "# processors/cores dedicated (AAP)", + "id": "8D3B00", + "listtype": " " + }, + { + "description": "# processors/cores dedicated (IIP)", + "id": "8D3B40", + "listtype": " " + }, + { + "description": "# processors/cores online (AAP)", + "id": "8D3C80", + "listtype": " " + }, + { + "description": "# processors/cores online (IIP)", + "id": "8D3D50", + "listtype": " " + }, + { + "description": "capacity (MSU/h)", + "id": "8D25C0", + "listtype": " " + }, + { + "description": "LPAR weight (AAP)", + "id": "8D3F30", + "listtype": " " + }, + { + "description": "LPAR weight (CP)", + "id": "8D3F60", + "listtype": " " + }, + { + "description": "LPAR weight (ICF)", + "id": "8D3F90", + "listtype": " " + }, + { + "description": "LPAR weight (IFL)", + "id": "8D3FE0", + "listtype": " " + }, + { + "description": "LPAR weight (IIP)", + "id": "8D4010", + "listtype": " " + }, + { + "description": "% effective physical utilization (AAP) by partition", + "id": "8D32A0", + "listtype": "A" + }, + { + "description": "% effective physical utilization (CP) by partition", + "id": "8D24E0", + "listtype": "A" + }, + { + "description": "% effective physical utilization (ICF) by partition", + "id": "8D3280", + "listtype": "A" + }, + { + "description": "% effective physical utilization (IFL) by partition", + "id": "8D32C0", + "listtype": "A" + }, + { + "description": "% effective physical utilization (IIP) by partition", + "id": "8D2600", + "listtype": "A" + }, + { + "description": "% logical processor share (AAP) by partition", + "id": "8D4040", + "listtype": "A" + }, + { + "description": "% logical processor share (CP) by partition", + "id": "8D4060", + "listtype": "A" + }, + { + "description": "% logical processor share (IIP) by partition", + "id": "8D4080", + "listtype": "A" + }, + { + "description": "% total physical utilization (AAP) by partition", + "id": "8D3310", + "listtype": "A" + }, + { + "description": "% total physical utilization (CP) by partition", + "id": "8D2560", + "listtype": "A" + }, + { + "description": "% total physical utilization (ICF) by partition", + "id": "8D32E0", + "listtype": "A" + }, + { + "description": "% total physical utilization (IFL) by partition", + "id": "8D3340", + "listtype": "A" + }, + { + "description": "% total physical utilization (IIP) by partition", + "id": "8D3400", + "listtype": "A" + }, + { + "description": "% LPAR management time (AAP) by partition", + "id": "8D3A00", + "listtype": "A" + }, + { + "description": "% LPAR management time (CP) by partition", + "id": "8D3A20", + "listtype": "A" + }, + { + "description": "% LPAR management time (ICF) by partition", + "id": "8D3A50", + "listtype": "A" + }, + { + "description": "% LPAR management time (IFL) by partition", + "id": "8D3AA0", + "listtype": "A" + }, + { + "description": "% LPAR management time (IIP) by partition", + "id": "8D3AD0", + "listtype": "A" + }, + { + "description": "# logical processors shared (CP) by partition", + "id": "8D3BB0", + "listtype": "A" + }, + { + "description": "# logical processors shared (ICF) by partition", + "id": "8D3BE0", + "listtype": "A" + }, + { + "description": "# logical processors shared (IFL) by partition", + "id": "8D3C30", + "listtype": "A" + }, + { + "description": "# logical processors/cores shared (AAP) by partition", + "id": "8D3B80", + "listtype": "A" + }, + { + "description": "# logical processors/cores shared (IIP) by partition", + "id": "8D3C60", + "listtype": "A" + }, + { + "description": "# processors dedicated (CP) by partition", + "id": "8D3B30", + "listtype": "A" + }, + { + "description": "# processors online (CP) by partition", + "id": "8D3CB0", + "listtype": "A" + }, + { + "description": "# processors online (ICF) by partition", + "id": "8D3CE0", + "listtype": "A" + }, + { + "description": "# processors online (IFL) by partition", + "id": "8D3D30", + "listtype": "A" + }, + { + "description": "# processors with high share (CP) by partition", + "id": "8D40C0", + "listtype": "A" + }, + { + "description": "# processors with low share (CP) by partition", + "id": "8D4120", + "listtype": "A" + }, + { + "description": "# processors with medium share (CP) by partition", + "id": "8D4180", + "listtype": "A" + }, + { + "description": "# processors/cores dedicated (AAP) by partition", + "id": "8D3B10", + "listtype": "A" + }, + { + "description": "# processors/cores dedicated (IIP) by partition", + "id": "8D3B50", + "listtype": "A" + }, + { + "description": "# processors/cores online (AAP) by partition", + "id": "8D3C90", + "listtype": "A" + }, + { + "description": "# processors/cores online (IIP) by partition", + "id": "8D3D60", + "listtype": "A" + }, + { + "description": "# processors/cores with high share (AAP) by partition", + "id": "8D40A0", + "listtype": "A" + }, + { + "description": "# processors/cores with high share (IIP) by partition", + "id": "8D40E0", + "listtype": "A" + }, + { + "description": "# processors/cores with low share (AAP) by partition", + "id": "8D4100", + "listtype": "A" + }, + { + "description": "# processors/cores with low share (IIP) by partition", + "id": "8D4140", + "listtype": "A" + }, + { + "description": "# processors/cores with medium share (AAP) by partition", + "id": "8D4160", + "listtype": "A" + }, + { + "description": "# processors/cores with medium share (IIP) by partition", + "id": "8D0040", + "listtype": "A" + }, + { + "description": "actual MSU (CP) by partition", + "id": "8D25F0", + "listtype": "A" + }, + { + "description": "LPAR weight (AAP) by partition", + "id": "8D3F40", + "listtype": "A" + }, + { + "description": "LPAR weight (CP) by partition", + "id": "8D3F70", + "listtype": "A" + }, + { + "description": "LPAR weight (ICF) by partition", + "id": "8D3FA0", + "listtype": "A" + }, + { + "description": "LPAR weight (IFL) by partition", + "id": "8D3FF0", + "listtype": "A" + }, + { + "description": "LPAR weight (IIP) by partition", + "id": "8D4020", + "listtype": "A" + }, + { + "description": "% utilization asym-key generation operations (CPC) by crypto card", + "id": "8D6490", + "listtype": "6" + }, + { + "description": "% utilization complete sym-key operations (CPC) by crypto card", + "id": "8D64D0", + "listtype": "6" + }, + { + "description": "% utilization crypto operations (CPC) by crypto card", + "id": "8D6510", + "listtype": "6" + }, + { + "description": "% utilization fast asym-key operations (CPC) by crypto card", + "id": "8D6550", + "listtype": "6" + }, + { + "description": "% utilization partial sym-key operations (CPC) by crypto card", + "id": "8D6590", + "listtype": "6" + }, + { + "description": "% utilization slow asym-key operations (CPC) by crypto card", + "id": "8D65D0", + "listtype": "6" + }, + { + "description": "% utilization RSA key-generation operations (CPC) by crypto card", + "id": "8D6610", + "listtype": "6" + }, + { + "description": "% utilization RSA CRT 1024 operations (CPC) by crypto card", + "id": "8D6650", + "listtype": "6" + }, + { + "description": "% utilization RSA CRT 2048 operations (CPC) by crypto card", + "id": "8D6690", + "listtype": "6" + }, + { + "description": "% utilization RSA CRT 4096 operations (CPC) by crypto card", + "id": "8D66D0", + "listtype": "6" + }, + { + "description": "% utilization RSA ME 1024 operations (CPC) by crypto card", + "id": "8D6710", + "listtype": "6" + }, + { + "description": "% utilization RSA ME 2048 operations (CPC) by crypto card", + "id": "8D6750", + "listtype": "6" + }, + { + "description": "% utilization RSA ME 4096 operations (CPC) by crypto card", + "id": "8D6790", + "listtype": "6" + }, + { + "description": "asym-key generation operation rate (CPC) by crypto card", + "id": "8D67D0", + "listtype": "6" + }, + { + "description": "average asym-key generation exec time (CPC) by crypto card", + "id": "8D67F0", + "listtype": "6" + }, + { + "description": "average complete sym-key execution time (CPC) by crypto card", + "id": "8D6850", + "listtype": "6" + }, + { + "description": "average crypto execution time (CPC) by crypto card", + "id": "8D6890", + "listtype": "6" + }, + { + "description": "average fast asym-key execution time (CPC) by crypto card", + "id": "8D68D0", + "listtype": "6" + }, + { + "description": "average partial sym-key execution time (CPC) by crypto card", + "id": "8D6910", + "listtype": "6" + }, + { + "description": "average slow asym-key execution time (CPC) by crypto card", + "id": "8D6950", + "listtype": "6" + }, + { + "description": "average RSA key-generation execution time (CPC) by crypto card", + "id": "8D6990", + "listtype": "6" + }, + { + "description": "average RSA CRT 1024 execution time (CPC) by crypto card", + "id": "8D69D0", + "listtype": "6" + }, + { + "description": "average RSA CRT 2048 execution time (CPC) by crypto card", + "id": "8D6A10", + "listtype": "6" + }, + { + "description": "average RSA CRT 4096 execution time (CPC) by crypto card", + "id": "8D6A50", + "listtype": "6" + }, + { + "description": "average RSA ME 1024 execution time (CPC) by crypto card", + "id": "8D6A90", + "listtype": "6" + }, + { + "description": "average RSA ME 2048 execution time (CPC) by crypto card", + "id": "8D6AD0", + "listtype": "6" + }, + { + "description": "average RSA ME 4096 execution time (CPC) by crypto card", + "id": "8D6B10", + "listtype": "6" + }, + { + "description": "complete sym-key operation rate (CPC) by crypto card", + "id": "8D6B50", + "listtype": "6" + }, + { + "description": "crypto operation rate (CPC) by crypto card", + "id": "8D6B90", + "listtype": "6" + }, + { + "description": "fast asym-key operation rate (CPC) by crypto card", + "id": "8D6BD0", + "listtype": "6" + }, + { + "description": "partial sym-key operation rate (CPC) by crypto card", + "id": "8D6C10", + "listtype": "6" + }, + { + "description": "slow asym-key operation rate (CPC) by crypto card", + "id": "8D6C50", + "listtype": "6" + }, + { + "description": "RSA key-generation operation rate (CPC) by crypto card", + "id": "8D6C90", + "listtype": "6" + }, + { + "description": "RSA CRT 1024 operation rate (CPC) by crypto card", + "id": "8D6CD0", + "listtype": "6" + }, + { + "description": "RSA CRT 2048 operation rate (CPC) by crypto card", + "id": "8D6D10", + "listtype": "6" + }, + { + "description": "RSA CRT 4096 operation rate (CPC) by crypto card", + "id": "8D6D50", + "listtype": "6" + }, + { + "description": "RSA ME 1024 operation rate (CPC) by crypto card", + "id": "8D6D90", + "listtype": "6" + }, + { + "description": "RSA ME 2048 operation rate (CPC) by crypto card", + "id": "8D6DD0", + "listtype": "6" + }, + { + "description": "RSA ME 4096 operation rate (CPC) by crypto card", + "id": "8D6E10", + "listtype": "6" + } + ] + }, + { + "metric": [ + { + "description": "% utilization asym-key generation operations (domain) by crypto card", + "id": "8D6470", + "listtype": "6" + }, + { + "description": "% utilization asym-key generation operations (CPC) by crypto card", + "id": "8D6490", + "listtype": "6" + }, + { + "description": "% utilization complete sym-key operations (domain) by crypto card", + "id": "8D64B0", + "listtype": "6" + }, + { + "description": "% utilization complete sym-key operations (CPC) by crypto card", + "id": "8D64D0", + "listtype": "6" + }, + { + "description": "% utilization crypto operations (domain) by crypto card", + "id": "8D64F0", + "listtype": "6" + }, + { + "description": "% utilization crypto operations (CPC) by crypto card", + "id": "8D6510", + "listtype": "6" + }, + { + "description": "% utilization fast asym-key operations (domain) by crypto card", + "id": "8D6530", + "listtype": "6" + }, + { + "description": "% utilization fast asym-key operations (CPC) by crypto card", + "id": "8D6550", + "listtype": "6" + }, + { + "description": "% utilization partial sym-key operations (domain) by crypto card", + "id": "8D6570", + "listtype": "6" + }, + { + "description": "% utilization partial sym-key operations (CPC) by crypto card", + "id": "8D6590", + "listtype": "6" + }, + { + "description": "% utilization slow asym-key operations (domain) by crypto card", + "id": "8D65B0", + "listtype": "6" + }, + { + "description": "% utilization slow asym-key operations (CPC) by crypto card", + "id": "8D65D0", + "listtype": "6" + }, + { + "description": "% utilization RSA key-generation operations (domain) by crypto card", + "id": "8D65F0", + "listtype": "6" + }, + { + "description": "% utilization RSA key-generation operations (CPC) by crypto card", + "id": "8D6610", + "listtype": "6" + }, + { + "description": "% utilization RSA CRT 1024 operations (domain) by crypto card", + "id": "8D6630", + "listtype": "6" + }, + { + "description": "% utilization RSA CRT 1024 operations (CPC) by crypto card", + "id": "8D6650", + "listtype": "6" + }, + { + "description": "% utilization RSA CRT 2048 operations (domain) by crypto card", + "id": "8D6670", + "listtype": "6" + }, + { + "description": "% utilization RSA CRT 2048 operations (CPC) by crypto card", + "id": "8D6690", + "listtype": "6" + }, + { + "description": "% utilization RSA CRT 4096 operations (domain) by crypto card", + "id": "8D66B0", + "listtype": "6" + }, + { + "description": "% utilization RSA CRT 4096 operations (CPC) by crypto card", + "id": "8D66D0", + "listtype": "6" + }, + { + "description": "% utilization RSA ME 1024 operations (domain) by crypto card", + "id": "8D66F0", + "listtype": "6" + }, + { + "description": "% utilization RSA ME 1024 operations (CPC) by crypto card", + "id": "8D6710", + "listtype": "6" + }, + { + "description": "% utilization RSA ME 2048 operations (domain) by crypto card", + "id": "8D6730", + "listtype": "6" + }, + { + "description": "% utilization RSA ME 2048 operations (CPC) by crypto card", + "id": "8D6750", + "listtype": "6" + }, + { + "description": "% utilization RSA ME 4096 operations (domain) by crypto card", + "id": "8D6770", + "listtype": "6" + }, + { + "description": "% utilization RSA ME 4096 operations (CPC) by crypto card", + "id": "8D6790", + "listtype": "6" + }, + { + "description": "asym-key generation operation rate (domain) by crypto card", + "id": "8D67B0", + "listtype": "6" + }, + { + "description": "asym-key generation operation rate (CPC) by crypto card", + "id": "8D67D0", + "listtype": "6" + }, + { + "description": "average asym-key generation exec time (domain) by crypto card", + "id": "8D67E0", + "listtype": "6" + }, + { + "description": "average asym-key generation exec time (CPC) by crypto card", + "id": "8D67F0", + "listtype": "6" + }, + { + "description": "average complete sym-key execution time (domain) by crypto card", + "id": "8D6830", + "listtype": "6" + }, + { + "description": "average complete sym-key execution time (CPC) by crypto card", + "id": "8D6850", + "listtype": "6" + }, + { + "description": "average crypto execution time (domain) by crypto card", + "id": "8D6870", + "listtype": "6" + }, + { + "description": "average crypto execution time (CPC) by crypto card", + "id": "8D6890", + "listtype": "6" + }, + { + "description": "average fast asym-key execution time (domain) by crypto card", + "id": "8D68B0", + "listtype": "6" + }, + { + "description": "average fast asym-key execution time (CPC) by crypto card", + "id": "8D68D0", + "listtype": "6" + }, + { + "description": "average partial sym-key execution time (domain) by crypto card", + "id": "8D68F0", + "listtype": "6" + }, + { + "description": "average partial sym-key execution time (CPC) by crypto card", + "id": "8D6910", + "listtype": "6" + }, + { + "description": "average slow asym-key execution time (domain) by crypto card", + "id": "8D6930", + "listtype": "6" + }, + { + "description": "average slow asym-key execution time (CPC) by crypto card", + "id": "8D6950", + "listtype": "6" + }, + { + "description": "average RSA key-generation execution time (domain) by crypto card", + "id": "8D6970", + "listtype": "6" + }, + { + "description": "average RSA key-generation execution time (CPC) by crypto card", + "id": "8D6990", + "listtype": "6" + }, + { + "description": "average RSA CRT 1024 execution time (domain) by crypto card", + "id": "8D69B0", + "listtype": "6" + }, + { + "description": "average RSA CRT 1024 execution time (CPC) by crypto card", + "id": "8D69D0", + "listtype": "6" + }, + { + "description": "average RSA CRT 2048 execution time (domain) by crypto card", + "id": "8D69F0", + "listtype": "6" + }, + { + "description": "average RSA CRT 2048 execution time (CPC) by crypto card", + "id": "8D6A10", + "listtype": "6" + }, + { + "description": "average RSA CRT 4096 execution time (domain) by crypto card", + "id": "8D6A30", + "listtype": "6" + }, + { + "description": "average RSA CRT 4096 execution time (CPC) by crypto card", + "id": "8D6A50", + "listtype": "6" + }, + { + "description": "average RSA ME 1024 execution time (domain) by crypto card", + "id": "8D6A70", + "listtype": "6" + }, + { + "description": "average RSA ME 1024 execution time (CPC) by crypto card", + "id": "8D6A90", + "listtype": "6" + }, + { + "description": "average RSA ME 2048 execution time (domain) by crypto card", + "id": "8D6AB0", + "listtype": "6" + }, + { + "description": "average RSA ME 2048 execution time (CPC) by crypto card", + "id": "8D6AD0", + "listtype": "6" + }, + { + "description": "average RSA ME 4096 execution time (domain) by crypto card", + "id": "8D6AF0", + "listtype": "6" + }, + { + "description": "average RSA ME 4096 execution time (CPC) by crypto card", + "id": "8D6B10", + "listtype": "6" + }, + { + "description": "complete sym-key operation rate (domain) by crypto card", + "id": "8D6B30", + "listtype": "6" + }, + { + "description": "complete sym-key operation rate (CPC) by crypto card", + "id": "8D6B50", + "listtype": "6" + }, + { + "description": "crypto operation rate (domain) by crypto card", + "id": "8D6B70", + "listtype": "6" + }, + { + "description": "crypto operation rate (CPC) by crypto card", + "id": "8D6B90", + "listtype": "6" + }, + { + "description": "fast asym-key operation rate (domain) by crypto card", + "id": "8D6BB0", + "listtype": "6" + }, + { + "description": "fast asym-key operation rate (CPC) by crypto card", + "id": "8D6BD0", + "listtype": "6" + }, + { + "description": "partial sym-key operation rate (domain) by crypto card", + "id": "8D6BF0", + "listtype": "6" + }, + { + "description": "partial sym-key operation rate (CPC) by crypto card", + "id": "8D6C10", + "listtype": "6" + }, + { + "description": "slow asym-key operation rate (domain) by crypto card", + "id": "8D6C30", + "listtype": "6" + }, + { + "description": "slow asym-key operation rate (CPC) by crypto card", + "id": "8D6C50", + "listtype": "6" + }, + { + "description": "RSA key-generation operation rate (domain) by crypto card", + "id": "8D6C70", + "listtype": "6" + }, + { + "description": "RSA key-generation operation rate (CPC) by crypto card", + "id": "8D6C90", + "listtype": "6" + }, + { + "description": "RSA CRT 1024 operation rate (domain) by crypto card", + "id": "8D6CB0", + "listtype": "6" + }, + { + "description": "RSA CRT 1024 operation rate (CPC) by crypto card", + "id": "8D6CD0", + "listtype": "6" + }, + { + "description": "RSA CRT 2048 operation rate (domain) by crypto card", + "id": "8D6CF0", + "listtype": "6" + }, + { + "description": "RSA CRT 2048 operation rate (CPC) by crypto card", + "id": "8D6D10", + "listtype": "6" + }, + { + "description": "RSA CRT 4096 operation rate (domain) by crypto card", + "id": "8D6D30", + "listtype": "6" + }, + { + "description": "RSA CRT 4096 operation rate (CPC) by crypto card", + "id": "8D6D50", + "listtype": "6" + }, + { + "description": "RSA ME 1024 operation rate (domain) by crypto card", + "id": "8D6D70", + "listtype": "6" + }, + { + "description": "RSA ME 1024 operation rate (CPC) by crypto card", + "id": "8D6D90", + "listtype": "6" + }, + { + "description": "RSA ME 2048 operation rate (domain) by crypto card", + "id": "8D6DB0", + "listtype": "6" + }, + { + "description": "RSA ME 2048 operation rate (CPC) by crypto card", + "id": "8D6DD0", + "listtype": "6" + }, + { + "description": "RSA ME 4096 operation rate (domain) by crypto card", + "id": "8D6DF0", + "listtype": "6" + }, + { + "description": "RSA ME 4096 operation rate (CPC) by crypto card", + "id": "8D6E10", + "listtype": "6" + } + ] + }, + { + "metric": [ + { + "description": "% utilization asym-key generation operations (domain)", + "id": "8D6460", + "listtype": " " + }, + { + "description": "% utilization asym-key generation operations (CPC)", + "id": "8D6480", + "listtype": " " + }, + { + "description": "% utilization complete sym-key operations (domain)", + "id": "8D64A0", + "listtype": " " + }, + { + "description": "% utilization complete sym-key operations (CPC)", + "id": "8D64C0", + "listtype": " " + }, + { + "description": "% utilization crypto operations (domain)", + "id": "8D64E0", + "listtype": " " + }, + { + "description": "% utilization crypto operations (CPC)", + "id": "8D6500", + "listtype": " " + }, + { + "description": "% utilization fast asym-key operations (domain)", + "id": "8D6520", + "listtype": " " + }, + { + "description": "% utilization fast asym-key operations (CPC)", + "id": "8D6540", + "listtype": " " + }, + { + "description": "% utilization partial sym-key operations (domain)", + "id": "8D6560", + "listtype": " " + }, + { + "description": "% utilization partial sym-key operations (CPC)", + "id": "8D6580", + "listtype": " " + }, + { + "description": "% utilization slow asym-key operations (domain)", + "id": "8D65A0", + "listtype": " " + }, + { + "description": "% utilization slow asym-key operations (CPC)", + "id": "8D65C0", + "listtype": " " + }, + { + "description": "% utilization RSA key-generation operations (domain)", + "id": "8D65E0", + "listtype": " " + }, + { + "description": "% utilization RSA key-generation operations (CPC)", + "id": "8D6600", + "listtype": " " + }, + { + "description": "% utilization RSA CRT 1024 operations (domain)", + "id": "8D6620", + "listtype": " " + }, + { + "description": "% utilization RSA CRT 1024 operations (CPC)", + "id": "8D6640", + "listtype": " " + }, + { + "description": "% utilization RSA CRT 2048 operations (domain)", + "id": "8D6660", + "listtype": " " + }, + { + "description": "% utilization RSA CRT 2048 operations (CPC)", + "id": "8D6680", + "listtype": " " + }, + { + "description": "% utilization RSA CRT 4096 operations (domain)", + "id": "8D66A0", + "listtype": " " + }, + { + "description": "% utilization RSA CRT 4096 operations (CPC)", + "id": "8D66C0", + "listtype": " " + }, + { + "description": "% utilization RSA ME 1024 operations (domain)", + "id": "8D66E0", + "listtype": " " + }, + { + "description": "% utilization RSA ME 1024 operations (CPC)", + "id": "8D6700", + "listtype": " " + }, + { + "description": "% utilization RSA ME 2048 operations (domain)", + "id": "8D6720", + "listtype": " " + }, + { + "description": "% utilization RSA ME 2048 operations (CPC)", + "id": "8D6740", + "listtype": " " + }, + { + "description": "% utilization RSA ME 4096 operations (domain)", + "id": "8D6760", + "listtype": " " + }, + { + "description": "% utilization RSA ME 4096 operations (CPC)", + "id": "8D6780", + "listtype": " " + }, + { + "description": "asym-key generation operation rate (domain)", + "id": "8D67A0", + "listtype": " " + }, + { + "description": "asym-key generation operation rate (CPC)", + "id": "8D67C0", + "listtype": " " + }, + { + "description": "average asym-key generation execution time (domain)", + "id": "8D6800", + "listtype": " " + }, + { + "description": "average asym-key generation execution time (CPC)", + "id": "8D6810", + "listtype": " " + }, + { + "description": "average complete sym-key execution time (domain)", + "id": "8D6820", + "listtype": " " + }, + { + "description": "average complete sym-key execution time (CPC)", + "id": "8D6840", + "listtype": " " + }, + { + "description": "average crypto execution time (domain)", + "id": "8D6860", + "listtype": " " + }, + { + "description": "average crypto execution time (CPC)", + "id": "8D6880", + "listtype": " " + }, + { + "description": "average fast asym-key execution time (domain)", + "id": "8D68A0", + "listtype": " " + }, + { + "description": "average fast asym-key execution time (CPC)", + "id": "8D68C0", + "listtype": " " + }, + { + "description": "average partial sym-key execution time (domain)", + "id": "8D68E0", + "listtype": " " + }, + { + "description": "average partial sym-key execution time (CPC)", + "id": "8D6900", + "listtype": " " + }, + { + "description": "average slow asym-key execution time (domain)", + "id": "8D6920", + "listtype": " " + }, + { + "description": "average slow asym-key execution time (CPC)", + "id": "8D6940", + "listtype": " " + }, + { + "description": "average RSA key-generation execution time (domain)", + "id": "8D6960", + "listtype": " " + }, + { + "description": "average RSA key-generation execution time (CPC)", + "id": "8D6980", + "listtype": " " + }, + { + "description": "average RSA CRT 1024 execution time (domain)", + "id": "8D69A0", + "listtype": " " + }, + { + "description": "average RSA CRT 1024 execution time (CPC)", + "id": "8D69C0", + "listtype": " " + }, + { + "description": "average RSA CRT 2048 execution time (domain)", + "id": "8D69E0", + "listtype": " " + }, + { + "description": "average RSA CRT 2048 execution time (CPC)", + "id": "8D6A00", + "listtype": " " + }, + { + "description": "average RSA CRT 4096 execution time (domain)", + "id": "8D6A20", + "listtype": " " + }, + { + "description": "average RSA CRT 4096 execution time (CPC)", + "id": "8D6A40", + "listtype": " " + }, + { + "description": "average RSA ME 1024 execution time (domain)", + "id": "8D6A60", + "listtype": " " + }, + { + "description": "average RSA ME 1024 execution time (CPC)", + "id": "8D6A80", + "listtype": " " + }, + { + "description": "average RSA ME 2048 execution time (domain)", + "id": "8D6AA0", + "listtype": " " + }, + { + "description": "average RSA ME 2048 execution time (CPC)", + "id": "8D6AC0", + "listtype": " " + }, + { + "description": "average RSA ME 4096 execution time (domain)", + "id": "8D6AE0", + "listtype": " " + }, + { + "description": "average RSA ME 4096 execution time (CPC)", + "id": "8D6B00", + "listtype": " " + }, + { + "description": "complete sym-key operation rate (domain)", + "id": "8D6B20", + "listtype": " " + }, + { + "description": "complete sym-key operation rate (CPC)", + "id": "8D6B40", + "listtype": " " + }, + { + "description": "crypto operation rate (domain)", + "id": "8D6B60", + "listtype": " " + }, + { + "description": "crypto operation rate (CPC)", + "id": "8D6B80", + "listtype": " " + }, + { + "description": "fast asym-key operation rate (domain)", + "id": "8D6BA0", + "listtype": " " + }, + { + "description": "fast asym-key operation rate (CPC)", + "id": "8D6BC0", + "listtype": " " + }, + { + "description": "partial sym-key operation rate (domain)", + "id": "8D6BE0", + "listtype": " " + }, + { + "description": "partial sym-key operation rate (CPC)", + "id": "8D6C00", + "listtype": " " + }, + { + "description": "slow asym-key operation rate (domain)", + "id": "8D6C20", + "listtype": " " + }, + { + "description": "slow asym-key operation rate (CPC)", + "id": "8D6C40", + "listtype": " " + }, + { + "description": "RSA key-generation operation rate (domain)", + "id": "8D6C60", + "listtype": " " + }, + { + "description": "RSA key-generation operation rate (CPC)", + "id": "8D6C80", + "listtype": " " + }, + { + "description": "RSA CRT 1024 operation rate (domain)", + "id": "8D6CA0", + "listtype": " " + }, + { + "description": "RSA CRT 1024 operation rate (CPC)", + "id": "8D6CC0", + "listtype": " " + }, + { + "description": "RSA CRT 2048 operation rate (domain)", + "id": "8D6CE0", + "listtype": " " + }, + { + "description": "RSA CRT 2048 operation rate (CPC)", + "id": "8D6D00", + "listtype": " " + }, + { + "description": "RSA CRT 4096 operation rate (domain)", + "id": "8D6D20", + "listtype": " " + }, + { + "description": "RSA CRT 4096 operation rate (CPC)", + "id": "8D6D40", + "listtype": " " + }, + { + "description": "RSA ME 1024 operation rate (domain)", + "id": "8D6D60", + "listtype": " " + }, + { + "description": "RSA ME 1024 operation rate (CPC)", + "id": "8D6D80", + "listtype": " " + }, + { + "description": "RSA ME 2048 operation rate (domain)", + "id": "8D6DA0", + "listtype": " " + }, + { + "description": "RSA ME 2048 operation rate (CPC)", + "id": "8D6DC0", + "listtype": " " + }, + { + "description": "RSA ME 4096 operation rate (domain)", + "id": "8D6DE0", + "listtype": " " + }, + { + "description": "RSA ME 4096 operation rate (CPC)", + "id": "8D6E00", + "listtype": " " + } + ] + }, + { + "metric": [ + { + "description": "% available", + "id": "8D0050", + "listtype": " " + }, + { + "description": "% not released", + "id": "8D0410", + "listtype": " " + }, + { + "description": "% utilization", + "id": "8D0530", + "listtype": " " + }, + { + "description": "# frames defined", + "id": "8D0BC0", + "listtype": " " + }, + { + "description": "# frames not released", + "id": "8D0C90", + "listtype": " " + }, + { + "description": "# frames used", + "id": "8D0CE0", + "listtype": " " + }, + { + "description": "% utilization by job", + "id": "8D0540", + "listtype": "J" + }, + { + "description": "# frames not released by job", + "id": "8D0CA0", + "listtype": "J" + }, + { + "description": "# frames used by job", + "id": "8D0CF0", + "listtype": "J" + } + ] + }, + { + "metric": [ + { + "description": "% available", + "id": "8D0050", + "listtype": " " + }, + { + "description": "% not released", + "id": "8D0410", + "listtype": " " + }, + { + "description": "% utilization", + "id": "8D0530", + "listtype": " " + }, + { + "description": "# frames defined", + "id": "8D0BC0", + "listtype": " " + }, + { + "description": "# frames not released", + "id": "8D0C90", + "listtype": " " + }, + { + "description": "# frames used", + "id": "8D0CE0", + "listtype": " " + }, + { + "description": "% utilization by job", + "id": "8D0540", + "listtype": "J" + }, + { + "description": "# frames not released by job", + "id": "8D0CA0", + "listtype": "J" + }, + { + "description": "# frames used by job", + "id": "8D0CF0", + "listtype": "J" + } + ] + }, + { + "metric": [] + }, + { + "metric": [ + { + "description": "% delay", + "id": "8D00E0", + "listtype": " " + }, + { + "description": "% delay by enclave", + "id": "8D28D0", + "listtype": "E" + }, + { + "description": "% delay by job", + "id": "8D0180", + "listtype": "J" + }, + { + "description": "% delay by WLM report class period", + "id": "8D28E0", + "listtype": "K" + }, + { + "description": "% delay by WLM service class period", + "id": "8D17A0", + "listtype": "P" + }, + { + "description": "% delay by WLM report class", + "id": "8D1660", + "listtype": "R" + }, + { + "description": "% delay by WLM service class", + "id": "8D1700", + "listtype": "S" + }, + { + "description": "% delay by WLM workload", + "id": "8D1840", + "listtype": "W" + } + ] + }, + { + "metric": [ + { + "description": "% available", + "id": "8D0050", + "listtype": " " + }, + { + "description": "% not released", + "id": "8D0410", + "listtype": " " + }, + { + "description": "% utilization", + "id": "8D0530", + "listtype": " " + }, + { + "description": "# frames defined", + "id": "8D0BC0", + "listtype": " " + }, + { + "description": "# frames not released", + "id": "8D0C90", + "listtype": " " + }, + { + "description": "# frames used", + "id": "8D0CE0", + "listtype": " " + }, + { + "description": "% utilization by job", + "id": "8D0540", + "listtype": "J" + }, + { + "description": "# frames not released by job", + "id": "8D0CA0", + "listtype": "J" + }, + { + "description": "# frames used by job", + "id": "8D0CF0", + "listtype": "J" + } + ] + }, + { + "metric": [] + }, + { + "metric": [ + { + "description": "% delay", + "id": "8D00F0", + "listtype": " " + }, + { + "description": "% delay by job", + "id": "8D0190", + "listtype": "J" + }, + { + "description": "% delay by WLM report class period", + "id": "8D28F0", + "listtype": "K" + }, + { + "description": "% delay by WLM service class period", + "id": "8D17B0", + "listtype": "P" + }, + { + "description": "% delay by WLM report class", + "id": "8D1670", + "listtype": "R" + }, + { + "description": "% delay by WLM service class", + "id": "8D1710", + "listtype": "S" + }, + { + "description": "% delay by WLM workload", + "id": "8D1850", + "listtype": "W" + } + ] + }, + { + "metric": [ + { + "description": "% connect time", + "id": "8D00A0", + "listtype": " " + }, + { + "description": "% delay", + "id": "8D0170", + "listtype": " " + }, + { + "description": "% using", + "id": "8D04B0", + "listtype": " " + }, + { + "description": "% workflow", + "id": "8D1E20", + "listtype": " " + }, + { + "description": "# delayed i/o requests", + "id": "8D0680", + "listtype": " " + }, + { + "description": "delayed i/o request rate", + "id": "8D0EB0", + "listtype": " " + }, + { + "description": "device connect time (job)", + "id": "8D4930", + "listtype": " " + }, + { + "description": "i/o activity rate", + "id": "8D0E90", + "listtype": " " + }, + { + "description": "total device connect time (job)", + "id": "8D49B0", + "listtype": " " + }, + { + "description": "EXCP rate (job)", + "id": "8D4C10", + "listtype": " " + }, + { + "description": "% delay by dataset name", + "id": "8D2040", + "listtype": "D" + }, + { + "description": "% using by dataset name", + "id": "8D2090", + "listtype": "D" + }, + { + "description": "% delay by enclave", + "id": "8D28B0", + "listtype": "E" + }, + { + "description": "% using by enclave", + "id": "8D2B20", + "listtype": "E" + }, + { + "description": "% connect time by job", + "id": "8D00C0", + "listtype": "J" + }, + { + "description": "% delay by job", + "id": "8D0210", + "listtype": "J" + }, + { + "description": "% using by job", + "id": "8D04F0", + "listtype": "J" + }, + { + "description": "% workflow by job", + "id": "8D1EC0", + "listtype": "J" + }, + { + "description": "device connect time by job", + "id": "8D4940", + "listtype": "J" + }, + { + "description": "total device connect time by job", + "id": "8D49C0", + "listtype": "J" + }, + { + "description": "EXCP rate by job", + "id": "8D4C20", + "listtype": "J" + }, + { + "description": "% delay by WLM report class period", + "id": "8D2970", + "listtype": "K" + }, + { + "description": "% using by WLM report class period", + "id": "8D2B40", + "listtype": "K" + }, + { + "description": "% workflow by WLM report class period", + "id": "8D2BA0", + "listtype": "K" + }, + { + "description": "% delay by dataset name and job", + "id": "8D2890", + "listtype": "N" + }, + { + "description": "% using by dataset name and job", + "id": "8D2B00", + "listtype": "N" + }, + { + "description": "% delay by WLM service class period", + "id": "8D1830", + "listtype": "P" + }, + { + "description": "% using by WLM service class period", + "id": "8D1CF0", + "listtype": "P" + }, + { + "description": "% workflow by WLM service class period", + "id": "8D1E80", + "listtype": "P" + }, + { + "description": "% delay by WLM report class", + "id": "8D16F0", + "listtype": "R" + }, + { + "description": "% using by WLM report class", + "id": "8D1C90", + "listtype": "R" + }, + { + "description": "% workflow by WLM report class", + "id": "8D1E40", + "listtype": "R" + }, + { + "description": "% delay by WLM service class", + "id": "8D1790", + "listtype": "S" + }, + { + "description": "% using by WLM service class", + "id": "8D1CC0", + "listtype": "S" + }, + { + "description": "% workflow by WLM service class", + "id": "8D1E60", + "listtype": "S" + }, + { + "description": "% delay by WLM workload", + "id": "8D18D0", + "listtype": "W" + }, + { + "description": "% using by WLM workload", + "id": "8D1D20", + "listtype": "W" + }, + { + "description": "% workflow by WLM workload", + "id": "8D1EA0", + "listtype": "W" + } + ] + }, + { + "metric": [ + { + "description": "% delay", + "id": "8D0100", + "listtype": " " + }, + { + "description": "% delay by job", + "id": "8D01A0", + "listtype": "J" + }, + { + "description": "% delay by WLM report class period", + "id": "8D2900", + "listtype": "K" + }, + { + "description": "% delay by WLM service class period", + "id": "8D17C0", + "listtype": "P" + }, + { + "description": "% delay by WLM report class", + "id": "8D1680", + "listtype": "R" + }, + { + "description": "% delay by WLM service class", + "id": "8D1720", + "listtype": "S" + }, + { + "description": "% delay by WLM workload", + "id": "8D1860", + "listtype": "W" + } + ] + }, + { + "metric": [ + { + "description": "# delayed i/o requests", + "id": "8D0680", + "listtype": " " + }, + { + "description": "average channel subsystem delay time (in mSec)", + "id": "8D27F0", + "listtype": " " + }, + { + "description": "delayed i/o request rate", + "id": "8D0EB0", + "listtype": " " + }, + { + "description": "i/o activity rate", + "id": "8D0E90", + "listtype": " " + }, + { + "description": "% director port busy by channel path and CU", + "id": "8D0340", + "listtype": "U" + }, + { + "description": "% CU busy by channel path and CU", + "id": "8D05D0", + "listtype": "U" + }, + { + "description": "average command response time (in mSec) by channel path and CU", + "id": "8D2810", + "listtype": "U" + }, + { + "description": "average CU busy time (in mSec) by channel path and CU", + "id": "8D27E0", + "listtype": "U" + }, + { + "description": "CHPID taken rate by channel path and CU", + "id": "8D05C0", + "listtype": "U" + }, + { + "description": "% active time by volume", + "id": "8D0020", + "listtype": "V" + }, + { + "description": "% connect time by volume", + "id": "8D00D0", + "listtype": "V" + }, + { + "description": "% delay device busy by volume", + "id": "8D0250", + "listtype": "V" + }, + { + "description": "% delay due to device command response time by volume", + "id": "8D2780", + "listtype": "V" + }, + { + "description": "% disconnect time by volume", + "id": "8D0360", + "listtype": "V" + }, + { + "description": "% pending time by volume", + "id": "8D0440", + "listtype": "V" + }, + { + "description": "i/o activity rate by volume", + "id": "8D0EA0", + "listtype": "V" + }, + { + "description": "response time by volume", + "id": "8D1120", + "listtype": "V" + }, + { + "description": "IOS queue time by volume", + "id": "8D12C0", + "listtype": "V" + } + ] + }, + { + "metric": [ + { + "description": "% capacity used", + "id": "8D2870", + "listtype": " " + }, + { + "description": "% effective logical utilization (AAP)", + "id": "8D3670", + "listtype": " " + }, + { + "description": "% effective logical utilization (CP)", + "id": "8D24B0", + "listtype": " " + }, + { + "description": "% effective logical utilization (ICF)", + "id": "8D3680", + "listtype": " " + }, + { + "description": "% effective logical utilization (IFL)", + "id": "8D3690", + "listtype": " " + }, + { + "description": "% effective logical utilization (IIP)", + "id": "8D36A0", + "listtype": " " + }, + { + "description": "% effective physical utilization (AAP)", + "id": "8D36B0", + "listtype": " " + }, + { + "description": "% effective physical utilization (CP)", + "id": "8D24C0", + "listtype": " " + }, + { + "description": "% effective physical utilization (ICF)", + "id": "8D36C0", + "listtype": " " + }, + { + "description": "% effective physical utilization (IFL)", + "id": "8D36D0", + "listtype": " " + }, + { + "description": "% effective physical utilization (IIP)", + "id": "8D36E0", + "listtype": " " + }, + { + "description": "% logical processor share (AAP)", + "id": "8D4030", + "listtype": " " + }, + { + "description": "% logical processor share (CP)", + "id": "8D4050", + "listtype": " " + }, + { + "description": "% logical processor share (IIP)", + "id": "8D4070", + "listtype": " " + }, + { + "description": "% total logical utilization (AAP)", + "id": "8D38D0", + "listtype": " " + }, + { + "description": "% total logical utilization (CP)", + "id": "8D2510", + "listtype": " " + }, + { + "description": "% total logical utilization (ICF)", + "id": "8D38E0", + "listtype": " " + }, + { + "description": "% total logical utilization (IFL)", + "id": "8D38F0", + "listtype": " " + }, + { + "description": "% total logical utilization (IIP)", + "id": "8D3900", + "listtype": " " + }, + { + "description": "% total physical utilization (AAP)", + "id": "8D3960", + "listtype": " " + }, + { + "description": "% total physical utilization (CP)", + "id": "8D2530", + "listtype": " " + }, + { + "description": "% total physical utilization (ICF)", + "id": "8D3970", + "listtype": " " + }, + { + "description": "% total physical utilization (IFL)", + "id": "8D3980", + "listtype": " " + }, + { + "description": "% total physical utilization (IIP)", + "id": "8D3990", + "listtype": " " + }, + { + "description": "% weight of max", + "id": "8D25A0", + "listtype": " " + }, + { + "description": "% LPAR management time (AAP)", + "id": "8D39E0", + "listtype": " " + }, + { + "description": "% LPAR management time (CP)", + "id": "8D2520", + "listtype": " " + }, + { + "description": "% LPAR management time (ICF)", + "id": "8D3A30", + "listtype": " " + }, + { + "description": "% LPAR management time (IFL)", + "id": "8D3A80", + "listtype": " " + }, + { + "description": "% LPAR management time (IIP)", + "id": "8D3AB0", + "listtype": " " + }, + { + "description": "% MT CP core productivity", + "id": "8D47A0", + "listtype": " " + }, + { + "description": "% MT IIP core productivity", + "id": "8D47C0", + "listtype": " " + }, + { + "description": "% WLM capping", + "id": "8D2490", + "listtype": " " + }, + { + "description": "# logical processors shared (CP)", + "id": "8D3B90", + "listtype": " " + }, + { + "description": "# logical processors shared (ICF)", + "id": "8D3BC0", + "listtype": " " + }, + { + "description": "# logical processors shared (IFL)", + "id": "8D3C10", + "listtype": " " + }, + { + "description": "# logical processors/cores shared (AAP)", + "id": "8D3B60", + "listtype": " " + }, + { + "description": "# logical processors/cores shared (IIP)", + "id": "8D3C40", + "listtype": " " + }, + { + "description": "# processors dedicated (CP)", + "id": "8D3B20", + "listtype": " " + }, + { + "description": "# processors online (CP)", + "id": "8D2610", + "listtype": " " + }, + { + "description": "# processors online (ICF)", + "id": "8D3CC0", + "listtype": " " + }, + { + "description": "# processors online (IFL)", + "id": "8D3D10", + "listtype": " " + }, + { + "description": "# processors with high share (CP)", + "id": "8D40B0", + "listtype": " " + }, + { + "description": "# processors with low share (CP)", + "id": "8D4110", + "listtype": " " + }, + { + "description": "# processors with medium share (CP)", + "id": "8D4170", + "listtype": " " + }, + { + "description": "# processors/cores dedicated (AAP)", + "id": "8D3B00", + "listtype": " " + }, + { + "description": "# processors/cores dedicated (IIP)", + "id": "8D3B40", + "listtype": " " + }, + { + "description": "# processors/cores online (AAP)", + "id": "8D3C70", + "listtype": " " + }, + { + "description": "# processors/cores online (IIP)", + "id": "8D3D40", + "listtype": " " + }, + { + "description": "# processors/cores with high share (AAP)", + "id": "8D4090", + "listtype": " " + }, + { + "description": "# processors/cores with high share (IIP)", + "id": "8D40D0", + "listtype": " " + }, + { + "description": "# processors/cores with low share (AAP)", + "id": "8D40F0", + "listtype": " " + }, + { + "description": "# processors/cores with low share (IIP)", + "id": "8D4130", + "listtype": " " + }, + { + "description": "# processors/cores with medium share (AAP)", + "id": "8D4150", + "listtype": " " + }, + { + "description": "# processors/cores with medium share (IIP)", + "id": "8D4190", + "listtype": " " + }, + { + "description": "actual MSU", + "id": "8D25E0", + "listtype": " " + }, + { + "description": "available capacity (MSU/h) for group", + "id": "8D43E0", + "listtype": " " + }, + { + "description": "average thread density for CP", + "id": "8D4A90", + "listtype": " " + }, + { + "description": "average thread density for IIP", + "id": "8D4AB0", + "listtype": " " + }, + { + "description": "defined capacity group limit (MSU/h)", + "id": "8D4530", + "listtype": " " + }, + { + "description": "defined MSU", + "id": "8D2620", + "listtype": " " + }, + { + "description": "four hour MSU average", + "id": "8D2630", + "listtype": " " + }, + { + "description": "four hour MSU maximum", + "id": "8D2650", + "listtype": " " + }, + { + "description": "image capacity (MSU/h)", + "id": "8D2660", + "listtype": " " + }, + { + "description": "remaining time until capping in seconds", + "id": "8D2680", + "listtype": " " + }, + { + "description": "remaining time until group capping in seconds", + "id": "8D4460", + "listtype": " " + }, + { + "description": "LPAR weight (AAP)", + "id": "8D3F20", + "listtype": " " + }, + { + "description": "LPAR weight (CP)", + "id": "8D3F50", + "listtype": " " + }, + { + "description": "LPAR weight (ICF)", + "id": "8D3F80", + "listtype": " " + }, + { + "description": "LPAR weight (IFL)", + "id": "8D3FD0", + "listtype": " " + }, + { + "description": "LPAR weight (IIP)", + "id": "8D4000", + "listtype": " " + }, + { + "description": "MT capacity factor for CP", + "id": "8D4B10", + "listtype": " " + }, + { + "description": "MT capacity factor for IIP", + "id": "8D4B30", + "listtype": " " + }, + { + "description": "MT maximum capacity factor for CP", + "id": "8D4B70", + "listtype": " " + }, + { + "description": "MT maximum capacity factor for IIP", + "id": "8D4B90", + "listtype": " " + }, + { + "description": "MT mode for CP", + "id": "8D4BD0", + "listtype": " " + }, + { + "description": "MT mode for IIP", + "id": "8D4BF0", + "listtype": " " + } + ] + }, + { + "metric": [ + { + "description": "% delay", + "id": "8D0160", + "listtype": " " + }, + { + "description": "% idle", + "id": "8D03E0", + "listtype": " " + }, + { + "description": "% unknown", + "id": "8D0470", + "listtype": " " + }, + { + "description": "% using", + "id": "8D04A0", + "listtype": " " + }, + { + "description": "% workflow", + "id": "8D0550", + "listtype": " " + }, + { + "description": "# active users", + "id": "8D0620", + "listtype": " " + }, + { + "description": "# qscan requests (job)", + "id": "8D4840", + "listtype": " " + }, + { + "description": "# qscan resources (job)", + "id": "8D4870", + "listtype": " " + }, + { + "description": "# qscan resources standard deviation (job)", + "id": "8D48A0", + "listtype": " " + }, + { + "description": "# qscan specific requests (job)", + "id": "8D48D0", + "listtype": " " + }, + { + "description": "# transactions (job)", + "id": "8D4900", + "listtype": " " + }, + { + "description": "# users", + "id": "8D0D50", + "listtype": " " + }, + { + "description": "execution velocity", + "id": "8D0EF0", + "listtype": " " + }, + { + "description": "performance index", + "id": "8D1000", + "listtype": " " + }, + { + "description": "qscan request time (job)", + "id": "8D4950", + "listtype": " " + }, + { + "description": "qscan request time standard deviation (job)", + "id": "8D4980", + "listtype": " " + }, + { + "description": "response time", + "id": "8D1100", + "listtype": " " + }, + { + "description": "response time (ms)", + "id": "8D5EB0", + "listtype": " " + }, + { + "description": "transaction active time (job)", + "id": "8D4A10", + "listtype": " " + }, + { + "description": "transaction ended rate", + "id": "8D1200", + "listtype": " " + }, + { + "description": "transaction resident time (job)", + "id": "8D4A40", + "listtype": " " + }, + { + "description": "% delay by enclave", + "id": "8D28A0", + "listtype": "E" + }, + { + "description": "% idle by enclave", + "id": "8D2A90", + "listtype": "E" + }, + { + "description": "% using by enclave", + "id": "8D2B10", + "listtype": "E" + }, + { + "description": "% delay by job", + "id": "8D0200", + "listtype": "J" + }, + { + "description": "% idle by job", + "id": "8D03F0", + "listtype": "J" + }, + { + "description": "% unknown by job", + "id": "8D0480", + "listtype": "J" + }, + { + "description": "% using by job", + "id": "8D04E0", + "listtype": "J" + }, + { + "description": "% workflow by job", + "id": "8D0560", + "listtype": "J" + }, + { + "description": "# qscan requests by job", + "id": "8D4860", + "listtype": "J" + }, + { + "description": "# qscan resources by job", + "id": "8D4890", + "listtype": "J" + }, + { + "description": "# qscan resources standard deviation by job", + "id": "8D48C0", + "listtype": "J" + }, + { + "description": "# qscan specific requests by job", + "id": "8D48F0", + "listtype": "J" + }, + { + "description": "# transactions by job", + "id": "8D4920", + "listtype": "J" + }, + { + "description": "qscan request time by job", + "id": "8D4970", + "listtype": "J" + }, + { + "description": "qscan request time standard deviation by job", + "id": "8D49A0", + "listtype": "J" + }, + { + "description": "transaction active time by job", + "id": "8D4A30", + "listtype": "J" + }, + { + "description": "transaction resident time by job", + "id": "8D4A60", + "listtype": "J" + }, + { + "description": "% delay by WLM report class period", + "id": "8D2960", + "listtype": "K" + }, + { + "description": "% using by WLM report class period", + "id": "8D2B30", + "listtype": "K" + }, + { + "description": "% workflow by WLM report class period", + "id": "8D2B80", + "listtype": "K" + }, + { + "description": "# active users by WLM report class period", + "id": "8D2D60", + "listtype": "K" + }, + { + "description": "# users by WLM report class period", + "id": "8D2F40", + "listtype": "K" + }, + { + "description": "execution velocity by WLM report class period", + "id": "8D3080", + "listtype": "K" + }, + { + "description": "performance index by WLM report class period", + "id": "8D3110", + "listtype": "K" + }, + { + "description": "response time (ms) by WLM report class period", + "id": "8D5EF0", + "listtype": "K" + }, + { + "description": "response time by WLM report class period", + "id": "8D31A0", + "listtype": "K" + }, + { + "description": "transaction ended rate by WLM report class period", + "id": "8D3230", + "listtype": "K" + }, + { + "description": "% delay by WLM service class period", + "id": "8D1820", + "listtype": "P" + }, + { + "description": "% using by WLM service class period", + "id": "8D1CE0", + "listtype": "P" + }, + { + "description": "% workflow by WLM service class period", + "id": "8D05A0", + "listtype": "P" + }, + { + "description": "# active users by WLM service class period", + "id": "8D0660", + "listtype": "P" + }, + { + "description": "# users by WLM service class period", + "id": "8D0D90", + "listtype": "P" + }, + { + "description": "execution velocity by WLM service class period", + "id": "8D0F60", + "listtype": "P" + }, + { + "description": "performance index by WLM service class period", + "id": "8D1020", + "listtype": "P" + }, + { + "description": "response time (ms) by WLM service class period", + "id": "8D5F30", + "listtype": "P" + }, + { + "description": "response time by WLM service class period", + "id": "8D1170", + "listtype": "P" + }, + { + "description": "transaction ended rate by WLM service class period", + "id": "8D1240", + "listtype": "P" + }, + { + "description": "% delay by WLM report class", + "id": "8D16E0", + "listtype": "R" + }, + { + "description": "% using by WLM report class", + "id": "8D1C60", + "listtype": "R" + }, + { + "description": "% workflow by WLM report class", + "id": "8D0580", + "listtype": "R" + }, + { + "description": "# active users by WLM report class", + "id": "8D0640", + "listtype": "R" + }, + { + "description": "# users by WLM report class", + "id": "8D0D70", + "listtype": "R" + }, + { + "description": "execution velocity by WLM report class", + "id": "8D0F20", + "listtype": "R" + }, + { + "description": "response time (ms) by WLM report class", + "id": "8D5ED0", + "listtype": "R" + }, + { + "description": "response time by WLM report class", + "id": "8D1130", + "listtype": "R" + }, + { + "description": "transaction ended rate by WLM report class", + "id": "8D1220", + "listtype": "R" + }, + { + "description": "% delay by WLM service class", + "id": "8D1780", + "listtype": "S" + }, + { + "description": "% using by WLM service class", + "id": "8D1CB0", + "listtype": "S" + }, + { + "description": "% workflow by WLM service class", + "id": "8D0590", + "listtype": "S" + }, + { + "description": "# active users by WLM service class", + "id": "8D0650", + "listtype": "S" + }, + { + "description": "# users by WLM service class", + "id": "8D0D80", + "listtype": "S" + }, + { + "description": "execution velocity by WLM service class", + "id": "8D0F40", + "listtype": "S" + }, + { + "description": "response time (ms) by WLM service class", + "id": "8D5F10", + "listtype": "S" + }, + { + "description": "response time by WLM service class", + "id": "8D1150", + "listtype": "S" + }, + { + "description": "transaction ended rate by WLM service class", + "id": "8D1230", + "listtype": "S" + }, + { + "description": "% delay by WLM workload", + "id": "8D18C0", + "listtype": "W" + }, + { + "description": "% using by WLM workload", + "id": "8D1D10", + "listtype": "W" + }, + { + "description": "% workflow by WLM workload", + "id": "8D05B0", + "listtype": "W" + }, + { + "description": "# active users by WLM workload", + "id": "8D0670", + "listtype": "W" + }, + { + "description": "# users by WLM workload", + "id": "8D0DA0", + "listtype": "W" + }, + { + "description": "execution velocity by WLM workload", + "id": "8D0F80", + "listtype": "W" + }, + { + "description": "response time (ms) by WLM workload", + "id": "8D5F50", + "listtype": "W" + }, + { + "description": "response time by WLM workload", + "id": "8D1190", + "listtype": "W" + }, + { + "description": "transaction ended rate by WLM workload", + "id": "8D1250", + "listtype": "W" + }, + { + "description": "signals received by XCF group and member", + "id": "8D3E10", + "listtype": "2" + }, + { + "description": "signals sent by XCF group and member", + "id": "8D3E50", + "listtype": "2" + }, + { + "description": "% retry by XCF systems and path", + "id": "8D38A0", + "listtype": "3" + }, + { + "description": "i/o transfer time by XCF systems and path", + "id": "8D3DB0", + "listtype": "3" + }, + { + "description": "message limit by XCF systems and path", + "id": "8D3DC0", + "listtype": "3" + }, + { + "description": "restart count by XCF systems and path", + "id": "8D3DD0", + "listtype": "3" + }, + { + "description": "retry limit by XCF systems and path", + "id": "8D3DE0", + "listtype": "3" + }, + { + "description": "signals pending transfer by XCF systems and path", + "id": "8D3DF0", + "listtype": "3" + }, + { + "description": "signals received by XCF systems and path", + "id": "8D3E30", + "listtype": "3" + }, + { + "description": "signals sent by XCF systems and path", + "id": "8D3E60", + "listtype": "3" + }, + { + "description": "storage in use by XCF systems and path", + "id": "8D3E80", + "listtype": "3" + }, + { + "description": "times buffer unavailable by XCF systems and path", + "id": "8D3E90", + "listtype": "3" + }, + { + "description": "times path busy by XCF systems and path", + "id": "8D3EB0", + "listtype": "3" + }, + { + "description": "% degraded by XCF systems and transport class", + "id": "8D3660", + "listtype": "4" + }, + { + "description": "% fit by XCF systems and transport class", + "id": "8D36F0", + "listtype": "4" + }, + { + "description": "% large by XCF systems and transport class", + "id": "8D3700", + "listtype": "4" + }, + { + "description": "% small by XCF systems and transport class", + "id": "8D38B0", + "listtype": "4" + }, + { + "description": "buffer length by XCF systems and transport class", + "id": "8D3DA0", + "listtype": "4" + }, + { + "description": "signals sent by XCF systems and transport class", + "id": "8D3E70", + "listtype": "4" + }, + { + "description": "times buffer unavailable by XCF systems and transport class", + "id": "8D3EA0", + "listtype": "4" + }, + { + "description": "times path unavailable by XCF systems and transport class", + "id": "8D3EC0", + "listtype": "4" + } + ] + }, + { + "metric": [ + { + "description": "% delay", + "id": "8D0110", + "listtype": " " + }, + { + "description": "% delay by job", + "id": "8D01B0", + "listtype": "J" + }, + { + "description": "% delay by WLM report class period", + "id": "8D2910", + "listtype": "K" + }, + { + "description": "% delay by WLM service class period", + "id": "8D17D0", + "listtype": "P" + }, + { + "description": "% delay by WLM report class", + "id": "8D1690", + "listtype": "R" + }, + { + "description": "% delay by WLM service class", + "id": "8D1730", + "listtype": "S" + }, + { + "description": "% delay by WLM workload", + "id": "8D1870", + "listtype": "W" + } + ] + }, + { + "metric": [ + { + "description": "% allocation time by PCIE function", + "id": "8D4C60", + "listtype": "H" + }, + { + "description": "% buffer pool utilization by PCIE function", + "id": "8D4C80", + "listtype": "H" + }, + { + "description": "% synchronous I/O successful requests (CPC) by PCIE function", + "id": "8D5CB0", + "listtype": "H" + }, + { + "description": "% synchronous I/O successful requests by PCIE function", + "id": "8D5CC0", + "listtype": "H" + }, + { + "description": "% synchronous I/O time busy (CPC) by PCIE function", + "id": "8D5CE0", + "listtype": "H" + }, + { + "description": "% time busy by PCIE function", + "id": "8D4CA0", + "listtype": "H" + }, + { + "description": "adapter utilization by PCIE function", + "id": "8D4D00", + "listtype": "H" + }, + { + "description": "buffer pool memory size by PCIE function", + "id": "8D4D20", + "listtype": "H" + }, + { + "description": "compression ratio by PCIE function", + "id": "8D4D40", + "listtype": "H" + }, + { + "description": "compression request rate by PCIE function", + "id": "8D4D60", + "listtype": "H" + }, + { + "description": "compression throughput by PCIE function", + "id": "8D4D80", + "listtype": "H" + }, + { + "description": "decompression ratio by PCIE function", + "id": "8D4DA0", + "listtype": "H" + }, + { + "description": "decompression request rate by PCIE function", + "id": "8D4DC0", + "listtype": "H" + }, + { + "description": "decompression throughput by PCIE function", + "id": "8D4DE0", + "listtype": "H" + }, + { + "description": "received packets rate by PCIE function", + "id": "8D4E00", + "listtype": "H" + }, + { + "description": "request execution time by PCIE function", + "id": "8D4E20", + "listtype": "H" + }, + { + "description": "request execution time standard deviation by PCIE function", + "id": "8D4E40", + "listtype": "H" + }, + { + "description": "request queue time by PCIE function", + "id": "8D4E60", + "listtype": "H" + }, + { + "description": "request queue time standard deviation by PCIE function", + "id": "8D4E80", + "listtype": "H" + }, + { + "description": "request size by PCIE function", + "id": "8D4EA0", + "listtype": "H" + }, + { + "description": "synchronous I/O request rate (CPC) by PCIE function", + "id": "8D5D10", + "listtype": "H" + }, + { + "description": "synchronous I/O request rate by PCIE function", + "id": "8D5D20", + "listtype": "H" + }, + { + "description": "synchronous I/O transfer read rate (CPC) by PCIE function", + "id": "8D5D40", + "listtype": "H" + }, + { + "description": "synchronous I/O transfer read ratio (CPC) by PCIE function", + "id": "8D5D70", + "listtype": "H" + }, + { + "description": "synchronous I/O transfer read ratio by PCIE function", + "id": "8D5D80", + "listtype": "H" + }, + { + "description": "synchronous I/O transfer write rate (CPC) by PCIE function", + "id": "8D5DA0", + "listtype": "H" + }, + { + "description": "synchronous I/O transfer write ratio (CPC) by PCIE function", + "id": "8D5DD0", + "listtype": "H" + }, + { + "description": "synchronous I/O transfer write ratio by PCIE function", + "id": "8D5DE0", + "listtype": "H" + }, + { + "description": "transfer rate by PCIE function", + "id": "8D4EC0", + "listtype": "H" + }, + { + "description": "transfer read rate by PCIE function", + "id": "8D4EE0", + "listtype": "H" + }, + { + "description": "transfer write rate by PCIE function", + "id": "8D4F00", + "listtype": "H" + }, + { + "description": "transmitted packets rate by PCIE function", + "id": "8D4F20", + "listtype": "H" + }, + { + "description": "work unit rate by PCIE function", + "id": "8D4F40", + "listtype": "H" + }, + { + "description": "PCI load operations rate by PCIE function", + "id": "8D4F70", + "listtype": "H" + }, + { + "description": "PCI refresh operations rate by PCIE function", + "id": "8D4F90", + "listtype": "H" + }, + { + "description": "PCI store block operations rate by PCIE function", + "id": "8D4FB0", + "listtype": "H" + }, + { + "description": "PCI store operations rate by PCIE function", + "id": "8D4FD0", + "listtype": "H" + } + ] + }, + { + "metric": [ + { + "description": "% allocation time", + "id": "8D4C50", + "listtype": " " + }, + { + "description": "% buffer pool utilization", + "id": "8D4C70", + "listtype": " " + }, + { + "description": "% synchronous I/O successful requests", + "id": "8D5C90", + "listtype": " " + }, + { + "description": "% synchronous I/O successful requests (CPC)", + "id": "8D5CA0", + "listtype": " " + }, + { + "description": "% synchronous I/O time busy (CPC)", + "id": "8D5CD0", + "listtype": " " + }, + { + "description": "% time busy", + "id": "8D4C90", + "listtype": " " + }, + { + "description": "buffer pool memory size", + "id": "8D4D10", + "listtype": " " + }, + { + "description": "compression ratio", + "id": "8D4D30", + "listtype": " " + }, + { + "description": "compression request rate", + "id": "8D4D50", + "listtype": " " + }, + { + "description": "compression throughput", + "id": "8D4D70", + "listtype": " " + }, + { + "description": "decompression ratio", + "id": "8D4D90", + "listtype": " " + }, + { + "description": "decompression request rate", + "id": "8D4DB0", + "listtype": " " + }, + { + "description": "decompression throughput", + "id": "8D4DD0", + "listtype": " " + }, + { + "description": "received packets rate", + "id": "8D4DF0", + "listtype": " " + }, + { + "description": "request execution time", + "id": "8D4E10", + "listtype": " " + }, + { + "description": "request execution time standard deviation", + "id": "8D4E30", + "listtype": " " + }, + { + "description": "request queue time", + "id": "8D4E50", + "listtype": " " + }, + { + "description": "request queue time standard deviation", + "id": "8D4E70", + "listtype": " " + }, + { + "description": "request size", + "id": "8D4E90", + "listtype": " " + }, + { + "description": "synchronous I/O request rate", + "id": "8D5CF0", + "listtype": " " + }, + { + "description": "synchronous I/O request rate (CPC)", + "id": "8D5D00", + "listtype": " " + }, + { + "description": "synchronous I/O transfer read rate (CPC)", + "id": "8D5D30", + "listtype": " " + }, + { + "description": "synchronous I/O transfer read ratio", + "id": "8D5D50", + "listtype": " " + }, + { + "description": "synchronous I/O transfer read ratio (CPC)", + "id": "8D5D60", + "listtype": " " + }, + { + "description": "synchronous I/O transfer write rate (CPC)", + "id": "8D5D90", + "listtype": " " + }, + { + "description": "synchronous I/O transfer write ratio", + "id": "8D5DB0", + "listtype": " " + }, + { + "description": "synchronous I/O transfer write ratio (CPC)", + "id": "8D5DC0", + "listtype": " " + }, + { + "description": "transfer rate", + "id": "8D4EB0", + "listtype": " " + }, + { + "description": "transfer read rate", + "id": "8D4ED0", + "listtype": " " + }, + { + "description": "transfer write rate", + "id": "8D4EF0", + "listtype": " " + }, + { + "description": "transmitted packets rate", + "id": "8D4F10", + "listtype": " " + }, + { + "description": "work unit rate", + "id": "8D4F30", + "listtype": " " + }, + { + "description": "PCI adapter utilization", + "id": "8D4F50", + "listtype": " " + }, + { + "description": "PCI load operations rate", + "id": "8D4F60", + "listtype": " " + }, + { + "description": "PCI refresh operations rate", + "id": "8D4F80", + "listtype": " " + }, + { + "description": "PCI store block operations rate", + "id": "8D4FA0", + "listtype": " " + }, + { + "description": "PCI store operations rate", + "id": "8D4FC0", + "listtype": " " + } + ] + }, + { + "metric": [ + { + "description": "% appl", + "id": "8D0600", + "listtype": " " + }, + { + "description": "% appl (total) (job)", + "id": "8D2750", + "listtype": " " + }, + { + "description": "% delay", + "id": "8D0120", + "listtype": " " + }, + { + "description": "% eappl", + "id": "8D2790", + "listtype": " " + }, + { + "description": "% eappl (job)", + "id": "8D26A0", + "listtype": " " + }, + { + "description": "% using", + "id": "8D04D0", + "listtype": " " + }, + { + "description": "% workflow", + "id": "8D1E10", + "listtype": " " + }, + { + "description": "% AAP", + "id": "8D2BF0", + "listtype": " " + }, + { + "description": "% AAP (job)", + "id": "8D2C00", + "listtype": " " + }, + { + "description": "% AAP on CP", + "id": "8D2C90", + "listtype": " " + }, + { + "description": "% AAP on CP (job)", + "id": "8D2CA0", + "listtype": " " + }, + { + "description": "% CP (job)", + "id": "8D4750", + "listtype": " " + }, + { + "description": "% CPU utilization (AAP)", + "id": "8D39B0", + "listtype": " " + }, + { + "description": "% CPU utilization (CP)", + "id": "8D0460", + "listtype": " " + }, + { + "description": "% CPU utilization (IIP)", + "id": "8D39C0", + "listtype": " " + }, + { + "description": "% IIP", + "id": "8D34A0", + "listtype": " " + }, + { + "description": "% IIP (job)", + "id": "8D34B0", + "listtype": " " + }, + { + "description": "% IIP on CP", + "id": "8D3550", + "listtype": " " + }, + { + "description": "% IIP on CP (job)", + "id": "8D3560", + "listtype": " " + }, + { + "description": "% MVS utilization (AAP)", + "id": "8D3AE0", + "listtype": " " + }, + { + "description": "% MVS utilization (CP)", + "id": "8D0420", + "listtype": " " + }, + { + "description": "% MVS utilization (IIP)", + "id": "8D3AF0", + "listtype": " " + }, + { + "description": "% SRB", + "id": "8D05E0", + "listtype": " " + }, + { + "description": "% TCB", + "id": "8D05F0", + "listtype": " " + }, + { + "description": "# AAP processors online", + "id": "8D2F90", + "listtype": " " + }, + { + "description": "# AAP processors parked", + "id": "8D4500", + "listtype": " " + }, + { + "description": "# CP processors online", + "id": "8D0D20", + "listtype": " " + }, + { + "description": "# CP processors parked", + "id": "8D4510", + "listtype": " " + }, + { + "description": "# IIP processors online", + "id": "8D3610", + "listtype": " " + }, + { + "description": "# IIP processors parked", + "id": "8D4520", + "listtype": " " + }, + { + "description": "captured time", + "id": "8D3030", + "listtype": " " + }, + { + "description": "load average", + "id": "8D30E0", + "listtype": " " + }, + { + "description": "total time", + "id": "8D31F0", + "listtype": " " + }, + { + "description": "total CPU time (job)", + "id": "8D49D0", + "listtype": " " + }, + { + "description": "total TCB time (job)", + "id": "8D49F0", + "listtype": " " + }, + { + "description": "uncaptured time", + "id": "8D3240", + "listtype": " " + }, + { + "description": "CPU time (job)", + "id": "8D4AD0", + "listtype": " " + }, + { + "description": "TCB time (job)", + "id": "8D4C30", + "listtype": " " + }, + { + "description": "% capping delay by enclave", + "id": "8D2880", + "listtype": "E" + }, + { + "description": "% AAP by enclave", + "id": "8D2C10", + "listtype": "E" + }, + { + "description": "% AAP delay by enclave", + "id": "8D2C80", + "listtype": "E" + }, + { + "description": "% AAP on CP by enclave", + "id": "8D2CB0", + "listtype": "E" + }, + { + "description": "% AAP using by enclave", + "id": "8D2D20", + "listtype": "E" + }, + { + "description": "% AAP using on CP by enclave", + "id": "8D2D30", + "listtype": "E" + }, + { + "description": "% CP by enclave", + "id": "8D2BC0", + "listtype": "E" + }, + { + "description": "% CP delay by enclave", + "id": "8D2BD0", + "listtype": "E" + }, + { + "description": "% CP using by enclave", + "id": "8D2BE0", + "listtype": "E" + }, + { + "description": "% IIP by enclave", + "id": "8D34C0", + "listtype": "E" + }, + { + "description": "% IIP delay by enclave", + "id": "8D3540", + "listtype": "E" + }, + { + "description": "% IIP on CP by enclave", + "id": "8D3570", + "listtype": "E" + }, + { + "description": "% IIP using by enclave", + "id": "8D35F0", + "listtype": "E" + }, + { + "description": "% IIP using on CP by enclave", + "id": "8D3600", + "listtype": "E" + }, + { + "description": "delta AAP on CP seconds by enclave", + "id": "8D3050", + "listtype": "E" + }, + { + "description": "delta AAP seconds by enclave", + "id": "8D3060", + "listtype": "E" + }, + { + "description": "delta CP seconds by enclave", + "id": "8D3040", + "listtype": "E" + }, + { + "description": "delta IIP on CP seconds by enclave", + "id": "8D3620", + "listtype": "E" + }, + { + "description": "delta IIP seconds by enclave", + "id": "8D3630", + "listtype": "E" + }, + { + "description": "total AAP on CP seconds by enclave", + "id": "8D3210", + "listtype": "E" + }, + { + "description": "total AAP seconds by enclave", + "id": "8D3220", + "listtype": "E" + }, + { + "description": "total CP seconds by enclave", + "id": "8D3200", + "listtype": "E" + }, + { + "description": "total IIP on CP seconds by enclave", + "id": "8D3640", + "listtype": "E" + }, + { + "description": "total IIP seconds by enclave", + "id": "8D3650", + "listtype": "E" + }, + { + "description": "% appl (total) by job", + "id": "8D0610", + "listtype": "J" + }, + { + "description": "% delay (AAP) by job", + "id": "8D33A0", + "listtype": "J" + }, + { + "description": "% delay (CP) by job", + "id": "8D14D0", + "listtype": "J" + }, + { + "description": "% delay (IIP) by job", + "id": "8D33C0", + "listtype": "J" + }, + { + "description": "% delay by job", + "id": "8D01C0", + "listtype": "J" + }, + { + "description": "% eappl (total) by job", + "id": "8D26B0", + "listtype": "J" + }, + { + "description": "% using (AAP) by job", + "id": "8D3440", + "listtype": "J" + }, + { + "description": "% using (CP) by job", + "id": "8D3450", + "listtype": "J" + }, + { + "description": "% using (IIP) by job", + "id": "8D3460", + "listtype": "J" + }, + { + "description": "% using by job", + "id": "8D0510", + "listtype": "J" + }, + { + "description": "% workflow (AAP) by job", + "id": "8D3470", + "listtype": "J" + }, + { + "description": "% workflow (CP) by job", + "id": "8D3480", + "listtype": "J" + }, + { + "description": "% workflow (IIP) by job", + "id": "8D3490", + "listtype": "J" + }, + { + "description": "% workflow by job", + "id": "8D1EB0", + "listtype": "J" + }, + { + "description": "% AAP by job", + "id": "8D2C20", + "listtype": "J" + }, + { + "description": "% AAP on CP by job", + "id": "8D2CC0", + "listtype": "J" + }, + { + "description": "% CP by job", + "id": "8D4770", + "listtype": "J" + }, + { + "description": "% IIP by job", + "id": "8D34E0", + "listtype": "J" + }, + { + "description": "% IIP on CP by job", + "id": "8D3590", + "listtype": "J" + }, + { + "description": "eappl time by job", + "id": "8D3070", + "listtype": "J" + }, + { + "description": "total CPU time by job", + "id": "8D49E0", + "listtype": "J" + }, + { + "description": "total TCB time by job", + "id": "8D4A00", + "listtype": "J" + }, + { + "description": "CPU time by job", + "id": "8D4AE0", + "listtype": "J" + }, + { + "description": "TCB time by job", + "id": "8D4C40", + "listtype": "J" + }, + { + "description": "% delay by WLM report class period", + "id": "8D2920", + "listtype": "K" + }, + { + "description": "% of standard CP delay samples by WLM report class period", + "id": "8D3720", + "listtype": "K" + }, + { + "description": "% of total delay samples by WLM report class period", + "id": "8D3770", + "listtype": "K" + }, + { + "description": "% of AAP delay samples by WLM report class period", + "id": "8D37C0", + "listtype": "K" + }, + { + "description": "% of IIP delay samples by WLM report class period", + "id": "8D3810", + "listtype": "K" + }, + { + "description": "% of RG capping delay samples by WLM report class period", + "id": "8D3860", + "listtype": "K" + }, + { + "description": "% using by WLM report class period", + "id": "8D2B50", + "listtype": "K" + }, + { + "description": "% workflow by WLM report class period", + "id": "8D2B90", + "listtype": "K" + }, + { + "description": "% AAP by WLM report class period", + "id": "8D2C40", + "listtype": "K" + }, + { + "description": "% AAP on CP by WLM report class period", + "id": "8D2CE0", + "listtype": "K" + }, + { + "description": "% IIP by WLM report class period", + "id": "8D3500", + "listtype": "K" + }, + { + "description": "% IIP on CP by WLM report class period", + "id": "8D35B0", + "listtype": "K" + }, + { + "description": "# of total delay samples by WLM report class period", + "id": "8D43A0", + "listtype": "K" + }, + { + "description": "CPU time at promoted DP by WLM report class period", + "id": "8D3EE0", + "listtype": "K" + }, + { + "description": "% appl by uss pid and jobname", + "id": "8D2830", + "listtype": "O" + }, + { + "description": "total cpu seconds by uss pid and jobname", + "id": "8D31E0", + "listtype": "O" + }, + { + "description": "% appl by WLM service class period", + "id": "8D2820", + "listtype": "P" + }, + { + "description": "% delay by WLM service class period", + "id": "8D17E0", + "listtype": "P" + }, + { + "description": "% eappl by WLM service class period", + "id": "8D0FC0", + "listtype": "P" + }, + { + "description": "% of standard CP delay samples by WLM service class period", + "id": "8D3740", + "listtype": "P" + }, + { + "description": "% of total delay samples by WLM service class period", + "id": "8D3790", + "listtype": "P" + }, + { + "description": "% of AAP delay samples by WLM service class period", + "id": "8D37E0", + "listtype": "P" + }, + { + "description": "% of IIP delay samples by WLM service class period", + "id": "8D3830", + "listtype": "P" + }, + { + "description": "% of RG capping delay samples by WLM service class period", + "id": "8D3880", + "listtype": "P" + }, + { + "description": "% using by WLM service class period", + "id": "8D1D00", + "listtype": "P" + }, + { + "description": "% workflow by WLM service class period", + "id": "8D1E70", + "listtype": "P" + }, + { + "description": "% AAP by WLM service class period", + "id": "8D2C60", + "listtype": "P" + }, + { + "description": "% AAP on CP by WLM service class period", + "id": "8D2D00", + "listtype": "P" + }, + { + "description": "% IIP by WLM service class period", + "id": "8D3520", + "listtype": "P" + }, + { + "description": "% IIP on CP by WLM service class period", + "id": "8D35D0", + "listtype": "P" + }, + { + "description": "% SRB by WLM service class period", + "id": "8D2D40", + "listtype": "P" + }, + { + "description": "% TCB by WLM service class period", + "id": "8D2D50", + "listtype": "P" + }, + { + "description": "# of total delay samples by WLM service class period", + "id": "8D43C0", + "listtype": "P" + }, + { + "description": "CPU time at promoted DP by WLM service class period", + "id": "8D3F00", + "listtype": "P" + }, + { + "description": "% appl by WLM report class", + "id": "8D2720", + "listtype": "R" + }, + { + "description": "% delay by WLM report class", + "id": "8D16A0", + "listtype": "R" + }, + { + "description": "% eappl by WLM report class", + "id": "8D27B0", + "listtype": "R" + }, + { + "description": "% of standard CP delay samples by WLM report class", + "id": "8D3710", + "listtype": "R" + }, + { + "description": "% of total delay samples by WLM report class", + "id": "8D3760", + "listtype": "R" + }, + { + "description": "% of AAP delay samples by WLM report class", + "id": "8D37B0", + "listtype": "R" + }, + { + "description": "% of IIP delay samples by WLM report class", + "id": "8D3800", + "listtype": "R" + }, + { + "description": "% of RG capping delay samples by WLM report class", + "id": "8D3850", + "listtype": "R" + }, + { + "description": "% using by WLM report class", + "id": "8D1CA0", + "listtype": "R" + }, + { + "description": "% workflow by WLM report class", + "id": "8D1E30", + "listtype": "R" + }, + { + "description": "% AAP by WLM report class", + "id": "8D2C30", + "listtype": "R" + }, + { + "description": "% AAP on CP by WLM report class", + "id": "8D2CD0", + "listtype": "R" + }, + { + "description": "% IIP by WLM report class", + "id": "8D34F0", + "listtype": "R" + }, + { + "description": "% IIP on CP by WLM report class", + "id": "8D35A0", + "listtype": "R" + }, + { + "description": "% SRB by WLM report class", + "id": "8D26C0", + "listtype": "R" + }, + { + "description": "% TCB by WLM report class", + "id": "8D26F0", + "listtype": "R" + }, + { + "description": "# of total delay samples by WLM report class", + "id": "8D4390", + "listtype": "R" + }, + { + "description": "CPU time at promoted DP by WLM report class", + "id": "8D3ED0", + "listtype": "R" + }, + { + "description": "% appl by WLM service class", + "id": "8D2730", + "listtype": "S" + }, + { + "description": "% delay by WLM service class", + "id": "8D1740", + "listtype": "S" + }, + { + "description": "% eappl by WLM service class", + "id": "8D27C0", + "listtype": "S" + }, + { + "description": "% of standard CP delay samples by WLM service class", + "id": "8D3730", + "listtype": "S" + }, + { + "description": "% of total delay samples by WLM service class", + "id": "8D3780", + "listtype": "S" + }, + { + "description": "% of AAP delay samples by WLM service class", + "id": "8D37D0", + "listtype": "S" + }, + { + "description": "% of IIP delay samples by WLM service class", + "id": "8D3820", + "listtype": "S" + }, + { + "description": "% of RG capping delay samples by WLM service class", + "id": "8D3870", + "listtype": "S" + }, + { + "description": "% using by WLM service class", + "id": "8D1CD0", + "listtype": "S" + }, + { + "description": "% workflow by WLM service class", + "id": "8D1E50", + "listtype": "S" + }, + { + "description": "% AAP by WLM service class", + "id": "8D2C50", + "listtype": "S" + }, + { + "description": "% AAP on CP by WLM service class", + "id": "8D2CF0", + "listtype": "S" + }, + { + "description": "% IIP by WLM service class", + "id": "8D3510", + "listtype": "S" + }, + { + "description": "% IIP on CP by WLM service class", + "id": "8D35C0", + "listtype": "S" + }, + { + "description": "% SRB by WLM service class", + "id": "8D26D0", + "listtype": "S" + }, + { + "description": "% TCB by WLM service class", + "id": "8D2700", + "listtype": "S" + }, + { + "description": "# of total delay samples by WLM service class", + "id": "8D43B0", + "listtype": "S" + }, + { + "description": "CPU time at promoted DP by WLM service class", + "id": "8D3EF0", + "listtype": "S" + }, + { + "description": "% appl by WLM workload", + "id": "8D2740", + "listtype": "W" + }, + { + "description": "% delay by WLM workload", + "id": "8D1880", + "listtype": "W" + }, + { + "description": "% eappl by WLM workload", + "id": "8D27D0", + "listtype": "W" + }, + { + "description": "% of standard CP delay samples by WLM workload", + "id": "8D3750", + "listtype": "W" + }, + { + "description": "% of total delay samples by WLM workload", + "id": "8D37A0", + "listtype": "W" + }, + { + "description": "% of AAP delay samples by WLM workload", + "id": "8D37F0", + "listtype": "W" + }, + { + "description": "% of IIP delay samples by WLM workload", + "id": "8D3840", + "listtype": "W" + }, + { + "description": "% of RG capping delay samples by WLM workload", + "id": "8D3890", + "listtype": "W" + }, + { + "description": "% using by WLM workload", + "id": "8D1D30", + "listtype": "W" + }, + { + "description": "% workflow by WLM workload", + "id": "8D1E90", + "listtype": "W" + }, + { + "description": "% AAP by WLM workload", + "id": "8D2C70", + "listtype": "W" + }, + { + "description": "% AAP on CP by WLM workload", + "id": "8D2D10", + "listtype": "W" + }, + { + "description": "% IIP by WLM workload", + "id": "8D3530", + "listtype": "W" + }, + { + "description": "% IIP on CP by WLM workload", + "id": "8D35E0", + "listtype": "W" + }, + { + "description": "% SRB by WLM workload", + "id": "8D26E0", + "listtype": "W" + }, + { + "description": "% TCB by WLM workload", + "id": "8D2710", + "listtype": "W" + }, + { + "description": "# of total delay samples by WLM workload", + "id": "8D43D0", + "listtype": "W" + }, + { + "description": "CPU time at promoted DP by WLM workload", + "id": "8D3F10", + "listtype": "W" + } + ] + }, + { + "metric": [ + { + "description": "# of SSCH", + "id": "8D5AC0", + "listtype": " " + }, + { + "description": "compression ratio", + "id": "8D6F20", + "listtype": " " + }, + { + "description": "compression request rate", + "id": "8D6F30", + "listtype": " " + }, + { + "description": "compression throughput", + "id": "8D6F40", + "listtype": " " + }, + { + "description": "decompression ratio", + "id": "8D6F50", + "listtype": " " + }, + { + "description": "decompression request rate", + "id": "8D6F60", + "listtype": " " + }, + { + "description": "decompression throughput", + "id": "8D6F70", + "listtype": " " + }, + { + "description": "function pending time", + "id": "8D5B30", + "listtype": " " + }, + { + "description": "initial command response time", + "id": "8D5B40", + "listtype": " " + }, + { + "description": "IOP queue time", + "id": "8D5C10", + "listtype": " " + }, + { + "description": "SSCH rate", + "id": "8D5C20", + "listtype": " " + }, + { + "description": "% partition utilization by card", + "id": "8D5A90", + "listtype": "Z" + }, + { + "description": "% total utilization by card", + "id": "8D5AB0", + "listtype": "Z" + }, + { + "description": "average partition response time by card", + "id": "8D5AE0", + "listtype": "Z" + }, + { + "description": "average total response time by card", + "id": "8D5B00", + "listtype": "Z" + }, + { + "description": "average total IOP queue time by card", + "id": "8D5B20", + "listtype": "Z" + }, + { + "description": "partition byte read rate by card", + "id": "8D5B60", + "listtype": "Z" + }, + { + "description": "partition byte write rate by card", + "id": "8D5B80", + "listtype": "Z" + }, + { + "description": "partition request rate by card", + "id": "8D5BA0", + "listtype": "Z" + }, + { + "description": "total byte read rate by card", + "id": "8D5BC0", + "listtype": "Z" + }, + { + "description": "total byte write rate by card", + "id": "8D5BE0", + "listtype": "Z" + }, + { + "description": "total request rate by card", + "id": "8D5C00", + "listtype": "Z" + } + ] + }, + { + "metric": [ + { + "description": "% partition utilization", + "id": "8D5A80", + "listtype": " " + }, + { + "description": "% total utilization", + "id": "8D5AA0", + "listtype": " " + }, + { + "description": "average partition response time", + "id": "8D5AD0", + "listtype": " " + }, + { + "description": "average total response time", + "id": "8D5AF0", + "listtype": " " + }, + { + "description": "average total IOP queue time", + "id": "8D5B10", + "listtype": " " + }, + { + "description": "partition byte read rate", + "id": "8D5B50", + "listtype": " " + }, + { + "description": "partition byte write rate", + "id": "8D5B70", + "listtype": " " + }, + { + "description": "partition request rate", + "id": "8D5B90", + "listtype": " " + }, + { + "description": "total byte read rate", + "id": "8D5BB0", + "listtype": " " + }, + { + "description": "total byte write rate", + "id": "8D5BD0", + "listtype": " " + }, + { + "description": "total request rate", + "id": "8D5BF0", + "listtype": " " + } + ] + }, + { + "metric": [ + { + "description": "% available", + "id": "8D0050", + "listtype": " " + }, + { + "description": "% not released", + "id": "8D0410", + "listtype": " " + }, + { + "description": "% utilization", + "id": "8D0530", + "listtype": " " + }, + { + "description": "# frames defined", + "id": "8D0BC0", + "listtype": " " + }, + { + "description": "# frames not released", + "id": "8D0C90", + "listtype": " " + }, + { + "description": "# frames used", + "id": "8D0CE0", + "listtype": " " + }, + { + "description": "% utilization by job", + "id": "8D0540", + "listtype": "J" + }, + { + "description": "# frames not released by job", + "id": "8D0CA0", + "listtype": "J" + }, + { + "description": "# frames used by job", + "id": "8D0CF0", + "listtype": "J" + } + ] + }, + { + "metric": [ + { + "description": "% cache hits", + "id": "8D21E0", + "listtype": " " + }, + { + "description": "% cache misses", + "id": "8D2230", + "listtype": " " + }, + { + "description": "% cache read misses", + "id": "8D2290", + "listtype": " " + }, + { + "description": "% cache write misses", + "id": "8D22B0", + "listtype": " " + }, + { + "description": "% of read operations", + "id": "8D22D0", + "listtype": " " + }, + { + "description": "i/o rate", + "id": "8D22F0", + "listtype": " " + }, + { + "description": "% cache hits by volume", + "id": "8D2220", + "listtype": "V" + }, + { + "description": "% cache misses by volume", + "id": "8D2270", + "listtype": "V" + }, + { + "description": "i/o rate by volume", + "id": "8D2320", + "listtype": "V" + }, + { + "description": "non-cache dasd i/o rate by volume", + "id": "8D2350", + "listtype": "V" + } + ] + }, + { + "metric": [ + { + "description": "% delay", + "id": "8D0130", + "listtype": " " + }, + { + "description": "% delay for COMM", + "id": "8D0280", + "listtype": " " + }, + { + "description": "% delay for LOCL", + "id": "8D02A0", + "listtype": " " + }, + { + "description": "% delay for OTHR", + "id": "8D02C0", + "listtype": " " + }, + { + "description": "% delay for OUTR", + "id": "8D02E0", + "listtype": " " + }, + { + "description": "% delay for SWAP", + "id": "8D0300", + "listtype": " " + }, + { + "description": "% high virtual common memory in-use", + "id": "8D41A0", + "listtype": " " + }, + { + "description": "% high virtual shared memory in-use", + "id": "8D41B0", + "listtype": " " + }, + { + "description": "% 1 MB frames used for pageable/DREF memory objects", + "id": "8D4550", + "listtype": " " + }, + { + "description": "% 1 MB frames used from LFAREA maximum", + "id": "8D4560", + "listtype": " " + }, + { + "description": "% 1 MB frames used from LFAREA maximum for fixed 1 MB pages", + "id": "8D41C0", + "listtype": " " + }, + { + "description": "% 1 MB frames used in central storage", + "id": "8D5F90", + "listtype": " " + }, + { + "description": "% 2 GB frames used from LFAREA maximum", + "id": "8D5C30", + "listtype": " " + }, + { + "description": "# bytes (high water mark) in high virtual common memory", + "id": "8D41D0", + "listtype": " " + }, + { + "description": "# bytes (high water mark) in high virtual shared memory", + "id": "8D4CB0", + "listtype": " " + }, + { + "description": "# bytes in high virtual common memory", + "id": "8D4250", + "listtype": " " + }, + { + "description": "# bytes in high virtual private memory", + "id": "8D4210", + "listtype": " " + }, + { + "description": "# bytes in high virtual shared memory", + "id": "8D4230", + "listtype": " " + }, + { + "description": "# bytes in memory objects", + "id": "8D41F0", + "listtype": " " + }, + { + "description": "# dedicated memory minimum 2G frames requested", + "id": "8D6F80", + "listtype": " " + }, + { + "description": "# dedicated memory 1M fixed frames used", + "id": "8D6FA0", + "listtype": " " + }, + { + "description": "# dedicated memory 1M frames not used", + "id": "8D6FC0", + "listtype": " " + }, + { + "description": "# dedicated memory 1M pageable frames used", + "id": "8D6FE0", + "listtype": " " + }, + { + "description": "# dedicated memory 2G fixed frames used", + "id": "8D7000", + "listtype": " " + }, + { + "description": "# dedicated memory 2G frames assigned", + "id": "8D7020", + "listtype": " " + }, + { + "description": "# dedicated memory 2G frames at IPL time excl system", + "id": "8D7040", + "listtype": " " + }, + { + "description": "# dedicated memory 2G frames avail for address spaces", + "id": "8D7060", + "listtype": " " + }, + { + "description": "# dedicated memory 2G frames not used", + "id": "8D7080", + "listtype": " " + }, + { + "description": "# dedicated memory 2G frames online", + "id": "8D70A0", + "listtype": " " + }, + { + "description": "# dedicated memory 2G frames online and offline", + "id": "8D70B0", + "listtype": " " + }, + { + "description": "# dedicated memory 2G frames requested", + "id": "8D70E0", + "listtype": " " + }, + { + "description": "# dedicated memory 4K frames not used", + "id": "8D7100", + "listtype": " " + }, + { + "description": "# dedicated memory 4K frames used", + "id": "8D7120", + "listtype": " " + }, + { + "description": "# fixed memory objects backed in 1 MB frames", + "id": "8D42A0", + "listtype": " " + }, + { + "description": "# fixed memory objects backed in 2 GB frames", + "id": "8D5C40", + "listtype": " " + }, + { + "description": "# frames active", + "id": "8D0B60", + "listtype": " " + }, + { + "description": "# frames and slots available", + "id": "8D2ED0", + "listtype": " " + }, + { + "description": "# frames fixed", + "id": "8D0BD0", + "listtype": " " + }, + { + "description": "# frames fixed above 16 MB (job)", + "id": "8D47E0", + "listtype": " " + }, + { + "description": "# frames fixed above 2 GB (job)", + "id": "8D4800", + "listtype": " " + }, + { + "description": "# frames fixed below 16 MB (job)", + "id": "8D4820", + "listtype": " " + }, + { + "description": "# frames idle", + "id": "8D0C30", + "listtype": " " + }, + { + "description": "# frames total", + "id": "8D0CC0", + "listtype": " " + }, + { + "description": "# frames DIV", + "id": "8D0D00", + "listtype": " " + }, + { + "description": "# high virtual common memory objects", + "id": "8D4350", + "listtype": " " + }, + { + "description": "# high virtual common memory pages backed in central storage", + "id": "8D4270", + "listtype": " " + }, + { + "description": "# high virtual common memory pages fixed in central storage", + "id": "8D4280", + "listtype": " " + }, + { + "description": "# high virtual common memory AUX slots", + "id": "8D4290", + "listtype": " " + }, + { + "description": "# high virtual private memory objects", + "id": "8D42C0", + "listtype": " " + }, + { + "description": "# high virtual shared memory objects", + "id": "8D42F0", + "listtype": " " + }, + { + "description": "# high virtual shared memory pages backed in central storage", + "id": "8D42E0", + "listtype": " " + }, + { + "description": "# high virtual shared memory AUX slots", + "id": "8D4570", + "listtype": " " + }, + { + "description": "# memory objects", + "id": "8D4310", + "listtype": " " + }, + { + "description": "# shared memory objects backed in 1 MB frames", + "id": "8D4CD0", + "listtype": " " + }, + { + "description": "# 1 MB common memory objects with owner no longer active", + "id": "8D4620", + "listtype": " " + }, + { + "description": "# 1 MB common memory pages backed in central storage", + "id": "8D4580", + "listtype": " " + }, + { + "description": "# 1 MB common memory pages with owner no longer active", + "id": "8D4630", + "listtype": " " + }, + { + "description": "# 1 MB fixed pages for 4K page requests", + "id": "8D4650", + "listtype": " " + }, + { + "description": "# 1 MB frames fixed for 1 MB pageable requests", + "id": "8D4640", + "listtype": " " + }, + { + "description": "# 1 MB frames in central storage", + "id": "8D5FA0", + "listtype": " " + }, + { + "description": "# 1 MB frames pageable converted to 4K", + "id": "8D4600", + "listtype": " " + }, + { + "description": "# 1 MB frames usable for fixed 1 MB pages", + "id": "8D4590", + "listtype": " " + }, + { + "description": "# 1 MB frames usable for pageable/DREF memory objects", + "id": "8D45A0", + "listtype": " " + }, + { + "description": "# 1 MB frames used for pageable/DREF memory objects", + "id": "8D45B0", + "listtype": " " + }, + { + "description": "# 1 MB memory objects in high virtual common storage", + "id": "8D45D0", + "listtype": " " + }, + { + "description": "# 1 MB memory objects in high virtual shared storage", + "id": "8D4CF0", + "listtype": " " + }, + { + "description": "# 1 MB page-fixed frames", + "id": "8D45E0", + "listtype": " " + }, + { + "description": "# 1 MB pageable pages failed", + "id": "8D4610", + "listtype": " " + }, + { + "description": "# 1 MB pageable pages for 4K page requests", + "id": "8D4660", + "listtype": " " + }, + { + "description": "# 1 MB pages fixed in central storage", + "id": "8D4330", + "listtype": " " + }, + { + "description": "# 2 GB frames usable for fixed memory objects", + "id": "8D5C60", + "listtype": " " + }, + { + "description": "# 2 GB pages fixed in central storage", + "id": "8D5C70", + "listtype": " " + }, + { + "description": "address space memory limit", + "id": "8D4370", + "listtype": " " + }, + { + "description": "es rate per residency time", + "id": "8D0ED0", + "listtype": " " + }, + { + "description": "pgin rate", + "id": "8D1030", + "listtype": " " + }, + { + "description": "pgin rate per residency time", + "id": "8D1080", + "listtype": " " + }, + { + "description": "working set", + "id": "8D1270", + "listtype": " " + }, + { + "description": "% delay by enclave", + "id": "8D28C0", + "listtype": "E" + }, + { + "description": "% delay by job", + "id": "8D01D0", + "listtype": "J" + }, + { + "description": "% delay for COMM by job", + "id": "8D0290", + "listtype": "J" + }, + { + "description": "% delay for LOCL by job", + "id": "8D02B0", + "listtype": "J" + }, + { + "description": "% delay for OTHR by job", + "id": "8D02D0", + "listtype": "J" + }, + { + "description": "% delay for OUTR by job", + "id": "8D02F0", + "listtype": "J" + }, + { + "description": "% delay for SWAP by job", + "id": "8D0310", + "listtype": "J" + }, + { + "description": "# bytes (high water mark) in high virtual common memory by job", + "id": "8D41E0", + "listtype": "J" + }, + { + "description": "# bytes (high water mark) in high virtual shared memory by job", + "id": "8D4CC0", + "listtype": "J" + }, + { + "description": "# bytes in high virtual common memory by job", + "id": "8D4260", + "listtype": "J" + }, + { + "description": "# bytes in high virtual private memory by job", + "id": "8D4220", + "listtype": "J" + }, + { + "description": "# bytes in high virtual shared memory by job", + "id": "8D4240", + "listtype": "J" + }, + { + "description": "# bytes in memory objects by job", + "id": "8D4200", + "listtype": "J" + }, + { + "description": "# dedicated memory minimum 2G frames requested by job", + "id": "8D6F90", + "listtype": "J" + }, + { + "description": "# dedicated memory 1M fixed frames used by job", + "id": "8D6FB0", + "listtype": "J" + }, + { + "description": "# dedicated memory 1M frames not used by job", + "id": "8D6FD0", + "listtype": "J" + }, + { + "description": "# dedicated memory 1M pageable frames used by job", + "id": "8D6FF0", + "listtype": "J" + }, + { + "description": "# dedicated memory 2G fixed frames used by job", + "id": "8D7010", + "listtype": "J" + }, + { + "description": "# dedicated memory 2G frames assigned by job", + "id": "8D7030", + "listtype": "J" + }, + { + "description": "# dedicated memory 2G frames not used by job", + "id": "8D7090", + "listtype": "J" + }, + { + "description": "# dedicated memory 2G frames requested by job", + "id": "8D70F0", + "listtype": "J" + }, + { + "description": "# dedicated memory 4K frames not used by job", + "id": "8D7110", + "listtype": "J" + }, + { + "description": "# dedicated memory 4K frames used by job", + "id": "8D7130", + "listtype": "J" + }, + { + "description": "# fixed memory objects backed in 1 MB frames by job", + "id": "8D42B0", + "listtype": "J" + }, + { + "description": "# fixed memory objects backed in 2 GB frames by job", + "id": "8D5C50", + "listtype": "J" + }, + { + "description": "# frames active by job", + "id": "8D0B70", + "listtype": "J" + }, + { + "description": "# frames fixed above 16 MB by job", + "id": "8D47F0", + "listtype": "J" + }, + { + "description": "# frames fixed above 2 GB by job", + "id": "8D4810", + "listtype": "J" + }, + { + "description": "# frames fixed below 16 MB by job", + "id": "8D4830", + "listtype": "J" + }, + { + "description": "# frames fixed by job", + "id": "8D0BE0", + "listtype": "J" + }, + { + "description": "# frames idle by job", + "id": "8D0C40", + "listtype": "J" + }, + { + "description": "# frames total by job", + "id": "8D0CD0", + "listtype": "J" + }, + { + "description": "# frames DIV by job", + "id": "8D0D10", + "listtype": "J" + }, + { + "description": "# high virtual common memory objects by job", + "id": "8D4360", + "listtype": "J" + }, + { + "description": "# high virtual private memory objects by job", + "id": "8D42D0", + "listtype": "J" + }, + { + "description": "# high virtual shared memory objects by job", + "id": "8D4300", + "listtype": "J" + }, + { + "description": "# memory objects by job", + "id": "8D4320", + "listtype": "J" + }, + { + "description": "# shared memory objects backed in 1 MB frames by job", + "id": "8D4CE0", + "listtype": "J" + }, + { + "description": "# 1 MB frames used for pageable/DREF memory objects by job", + "id": "8D45C0", + "listtype": "J" + }, + { + "description": "# 1 MB page-fixed frames by job", + "id": "8D45F0", + "listtype": "J" + }, + { + "description": "# 1 MB pages fixed in central storage by job", + "id": "8D4340", + "listtype": "J" + }, + { + "description": "# 2 GB pages fixed in central storage by job", + "id": "8D5C80", + "listtype": "J" + }, + { + "description": "address space memory limit by job", + "id": "8D4380", + "listtype": "J" + }, + { + "description": "es rate per residency time by job", + "id": "8D0EE0", + "listtype": "J" + }, + { + "description": "pgin rate per residency time by job", + "id": "8D1090", + "listtype": "J" + }, + { + "description": "working set by job", + "id": "8D1280", + "listtype": "J" + }, + { + "description": "% delay by WLM report class period", + "id": "8D2930", + "listtype": "K" + }, + { + "description": "% delay for COMM by WLM report class period", + "id": "8D29E0", + "listtype": "K" + }, + { + "description": "% delay for LOCL by WLM report class period", + "id": "8D29F0", + "listtype": "K" + }, + { + "description": "% delay for OTHR by WLM report class period", + "id": "8D2A00", + "listtype": "K" + }, + { + "description": "% delay for OUTR by WLM report class period", + "id": "8D2A10", + "listtype": "K" + }, + { + "description": "% delay for SWAP by WLM report class period", + "id": "8D2A20", + "listtype": "K" + }, + { + "description": "# frames active by WLM report class period", + "id": "8D2EC0", + "listtype": "K" + }, + { + "description": "# frames fixed by WLM report class period", + "id": "8D2EF0", + "listtype": "K" + }, + { + "description": "# frames idle by WLM report class period", + "id": "8D2F00", + "listtype": "K" + }, + { + "description": "pgin rate by WLM report class period", + "id": "8D3120", + "listtype": "K" + }, + { + "description": "% delay by WLM service class period", + "id": "8D17F0", + "listtype": "P" + }, + { + "description": "% delay for COMM by WLM service class period", + "id": "8D1900", + "listtype": "P" + }, + { + "description": "% delay for LOCL by WLM service class period", + "id": "8D1940", + "listtype": "P" + }, + { + "description": "% delay for OTHR by WLM service class period", + "id": "8D1980", + "listtype": "P" + }, + { + "description": "% delay for OUTR by WLM service class period", + "id": "8D19C0", + "listtype": "P" + }, + { + "description": "% delay for SWAP by WLM service class period", + "id": "8D1A00", + "listtype": "P" + }, + { + "description": "# frames active by WLM service class period", + "id": "8D0BA0", + "listtype": "P" + }, + { + "description": "# frames fixed by WLM service class period", + "id": "8D0C10", + "listtype": "P" + }, + { + "description": "# frames idle by WLM service class period", + "id": "8D0C70", + "listtype": "P" + }, + { + "description": "pgin rate by WLM service class period", + "id": "8D1060", + "listtype": "P" + }, + { + "description": "% delay by WLM report class", + "id": "8D16B0", + "listtype": "R" + }, + { + "description": "% delay for COMM by WLM report class", + "id": "8D18E0", + "listtype": "R" + }, + { + "description": "% delay for LOCL by WLM report class", + "id": "8D1920", + "listtype": "R" + }, + { + "description": "% delay for OTHR by WLM report class", + "id": "8D1960", + "listtype": "R" + }, + { + "description": "% delay for OUTR by WLM report class", + "id": "8D19A0", + "listtype": "R" + }, + { + "description": "% delay for SWAP by WLM report class", + "id": "8D19E0", + "listtype": "R" + }, + { + "description": "# frames active by WLM report class", + "id": "8D0B80", + "listtype": "R" + }, + { + "description": "# frames fixed by WLM report class", + "id": "8D0BF0", + "listtype": "R" + }, + { + "description": "# frames idle by WLM report class", + "id": "8D0C50", + "listtype": "R" + }, + { + "description": "pgin rate by WLM report class", + "id": "8D1040", + "listtype": "R" + }, + { + "description": "% delay by WLM service class", + "id": "8D1750", + "listtype": "S" + }, + { + "description": "% delay for COMM by WLM service class", + "id": "8D18F0", + "listtype": "S" + }, + { + "description": "% delay for LOCL by WLM service class", + "id": "8D1930", + "listtype": "S" + }, + { + "description": "% delay for OTHR by WLM service class", + "id": "8D1970", + "listtype": "S" + }, + { + "description": "% delay for OUTR by WLM service class", + "id": "8D19B0", + "listtype": "S" + }, + { + "description": "% delay for SWAP by WLM service class", + "id": "8D19F0", + "listtype": "S" + }, + { + "description": "# frames active by WLM service class", + "id": "8D0B90", + "listtype": "S" + }, + { + "description": "# frames fixed by WLM service class", + "id": "8D0C00", + "listtype": "S" + }, + { + "description": "# frames idle by WLM service class", + "id": "8D0C60", + "listtype": "S" + }, + { + "description": "pgin rate by WLM service class", + "id": "8D1050", + "listtype": "S" + }, + { + "description": "% delay by WLM workload", + "id": "8D1890", + "listtype": "W" + }, + { + "description": "% delay for COMM by WLM workload", + "id": "8D1910", + "listtype": "W" + }, + { + "description": "% delay for LOCL by WLM workload", + "id": "8D1950", + "listtype": "W" + }, + { + "description": "% delay for OTHR by WLM workload", + "id": "8D1990", + "listtype": "W" + }, + { + "description": "% delay for OUTR by WLM workload", + "id": "8D19D0", + "listtype": "W" + }, + { + "description": "% delay for SWAP by WLM workload", + "id": "8D1A10", + "listtype": "W" + }, + { + "description": "# frames active by WLM workload", + "id": "8D0BB0", + "listtype": "W" + }, + { + "description": "# frames fixed by WLM workload", + "id": "8D0C20", + "listtype": "W" + }, + { + "description": "# frames idle by WLM workload", + "id": "8D0C80", + "listtype": "W" + }, + { + "description": "pgin rate by WLM workload", + "id": "8D1070", + "listtype": "W" + } + ] + }, + { + "metric": [ + { + "description": "% delay", + "id": "8D0140", + "listtype": " " + }, + { + "description": "% delay by job", + "id": "8D01E0", + "listtype": "J" + }, + { + "description": "% delay by WLM report class period", + "id": "8D2940", + "listtype": "K" + }, + { + "description": "% delay by WLM service class period", + "id": "8D1800", + "listtype": "P" + }, + { + "description": "% delay by WLM report class", + "id": "8D16C0", + "listtype": "R" + }, + { + "description": "% delay by WLM service class", + "id": "8D1760", + "listtype": "S" + }, + { + "description": "% delay by WLM workload", + "id": "8D18A0", + "listtype": "W" + } + ] + }, + { + "metric": [ + { + "description": "% delay", + "id": "8D0160", + "listtype": " " + }, + { + "description": "% delay for enqueue", + "id": "8D1A20", + "listtype": " " + }, + { + "description": "% delay for i/o", + "id": "8D1A80", + "listtype": " " + }, + { + "description": "% delay for operator", + "id": "8D1AE0", + "listtype": " " + }, + { + "description": "% delay for processor", + "id": "8D1B40", + "listtype": " " + }, + { + "description": "% delay for storage", + "id": "8D1BA0", + "listtype": " " + }, + { + "description": "% delay for swsub", + "id": "8D1C00", + "listtype": " " + }, + { + "description": "% using", + "id": "8D04A0", + "listtype": " " + }, + { + "description": "% using for i/o", + "id": "8D1D40", + "listtype": " " + }, + { + "description": "% using for processor", + "id": "8D1DB0", + "listtype": " " + }, + { + "description": "% workflow", + "id": "8D0550", + "listtype": " " + }, + { + "description": "% workflow for i/o", + "id": "8D1ED0", + "listtype": " " + }, + { + "description": "% workflow for processor", + "id": "8D1F30", + "listtype": " " + }, + { + "description": "# active users", + "id": "8D0620", + "listtype": " " + }, + { + "description": "# delayed i/o requests", + "id": "8D0680", + "listtype": " " + }, + { + "description": "# users", + "id": "8D0D50", + "listtype": " " + }, + { + "description": "active time", + "id": "8D0E40", + "listtype": " " + }, + { + "description": "active time (ms)", + "id": "8D5DF0", + "listtype": " " + }, + { + "description": "delayed i/o request rate", + "id": "8D0EB0", + "listtype": " " + }, + { + "description": "execution velocity", + "id": "8D0F00", + "listtype": " " + }, + { + "description": "execution velocity goal", + "id": "8D0FA0", + "listtype": " " + }, + { + "description": "i/o activity rate", + "id": "8D0E90", + "listtype": " " + }, + { + "description": "percentile achieving response time goal", + "id": "8D0FE0", + "listtype": " " + }, + { + "description": "performance index", + "id": "8D1000", + "listtype": " " + }, + { + "description": "queue time", + "id": "8D10A0", + "listtype": " " + }, + { + "description": "queue time (ms)", + "id": "8D5E50", + "listtype": " " + }, + { + "description": "response time", + "id": "8D1110", + "listtype": " " + }, + { + "description": "response time (ms)", + "id": "8D5EC0", + "listtype": " " + }, + { + "description": "response time goal", + "id": "8D11B0", + "listtype": " " + }, + { + "description": "response time goal (ms)", + "id": "8D5F70", + "listtype": " " + }, + { + "description": "response time goal percentile", + "id": "8D11D0", + "listtype": " " + }, + { + "description": "service rate", + "id": "8D1FB0", + "listtype": " " + }, + { + "description": "service units / transaction", + "id": "8D11F0", + "listtype": " " + }, + { + "description": "transaction ended rate", + "id": "8D1200", + "listtype": " " + }, + { + "description": "% total physical utilization (AAP) by partition", + "id": "8D3310", + "listtype": "A" + }, + { + "description": "% total physical utilization (CP) by partition", + "id": "8D2560", + "listtype": "A" + }, + { + "description": "% total physical utilization (ICF) by partition", + "id": "8D32E0", + "listtype": "A" + }, + { + "description": "% total physical utilization (IFL) by partition", + "id": "8D3340", + "listtype": "A" + }, + { + "description": "% total physical utilization (IIP) by partition", + "id": "8D3400", + "listtype": "A" + }, + { + "description": "% weight of max by partition", + "id": "8D25B0", + "listtype": "A" + }, + { + "description": "% MT CP core productivity by partition", + "id": "8D47B0", + "listtype": "A" + }, + { + "description": "% MT IIP core productivity by partition", + "id": "8D47D0", + "listtype": "A" + }, + { + "description": "% WLM capping by partition", + "id": "8D24A0", + "listtype": "A" + }, + { + "description": "actual MSU (CP) by partition", + "id": "8D25F0", + "listtype": "A" + }, + { + "description": "available capacity (MSU/h) for group by partition", + "id": "8D43F0", + "listtype": "A" + }, + { + "description": "average thread density for CP by partition", + "id": "8D4AA0", + "listtype": "A" + }, + { + "description": "average thread density for IIP by partition", + "id": "8D4AC0", + "listtype": "A" + }, + { + "description": "defined capacity group limit (MSU/h) by partition", + "id": "8D4540", + "listtype": "A" + }, + { + "description": "four hour MSU average by partition", + "id": "8D2640", + "listtype": "A" + }, + { + "description": "image capacity (MSU/h) by partition", + "id": "8D2670", + "listtype": "A" + }, + { + "description": "remaining time until capping in seconds by partition", + "id": "8D2690", + "listtype": "A" + }, + { + "description": "remaining time until group capping in seconds by partition", + "id": "8D4470", + "listtype": "A" + }, + { + "description": "MT capacity factor for CP by partition", + "id": "8D4B20", + "listtype": "A" + }, + { + "description": "MT capacity factor for IIP by partition", + "id": "8D4B40", + "listtype": "A" + }, + { + "description": "MT maximum capacity factor for CP by partition", + "id": "8D4B80", + "listtype": "A" + }, + { + "description": "MT maximum capacity factor for IIP by partition", + "id": "8D4BA0", + "listtype": "A" + }, + { + "description": "MT mode for CP by partition", + "id": "8D4BE0", + "listtype": "A" + }, + { + "description": "MT mode for IIP by partition", + "id": "8D4C00", + "listtype": "A" + }, + { + "description": "% appl (total) by job", + "id": "8D2760", + "listtype": "B" + }, + { + "description": "% eappl (total) by job", + "id": "8D27A0", + "listtype": "B" + }, + { + "description": "% AAP by job", + "id": "8D2A30", + "listtype": "B" + }, + { + "description": "% AAP on CP by job", + "id": "8D2A80", + "listtype": "B" + }, + { + "description": "% CP by job", + "id": "8D4760", + "listtype": "B" + }, + { + "description": "% CSA utilization by job", + "id": "8D2420", + "listtype": "B" + }, + { + "description": "% ECSA utilization by job", + "id": "8D2440", + "listtype": "B" + }, + { + "description": "% ESQA utilization by job", + "id": "8D2460", + "listtype": "B" + }, + { + "description": "% IIP by job", + "id": "8D34D0", + "listtype": "B" + }, + { + "description": "% IIP on CP by job", + "id": "8D3580", + "listtype": "B" + }, + { + "description": "% SQA utilization by job", + "id": "8D2480", + "listtype": "B" + }, + { + "description": "# qscan requests by job", + "id": "8D4850", + "listtype": "B" + }, + { + "description": "# qscan resources by job", + "id": "8D4880", + "listtype": "B" + }, + { + "description": "# qscan resources standard deviation by job", + "id": "8D48B0", + "listtype": "B" + }, + { + "description": "# qscan specific requests by job", + "id": "8D48E0", + "listtype": "B" + }, + { + "description": "# transactions by job", + "id": "8D4910", + "listtype": "B" + }, + { + "description": "qscan request time by job", + "id": "8D4960", + "listtype": "B" + }, + { + "description": "qscan request time standard deviation by job", + "id": "8D4990", + "listtype": "B" + }, + { + "description": "transaction active time by job", + "id": "8D4A20", + "listtype": "B" + }, + { + "description": "transaction resident time by job", + "id": "8D4A50", + "listtype": "B" + }, + { + "description": "% partition utilization by channel path", + "id": "8D0070", + "listtype": "C" + }, + { + "description": "% total utilization by channel path", + "id": "8D0090", + "listtype": "C" + }, + { + "description": "% delay by dataset name", + "id": "8D2040", + "listtype": "D" + }, + { + "description": "% using by dataset name", + "id": "8D2090", + "listtype": "D" + }, + { + "description": "% augmented space in use by coupling facility", + "id": "8D4680", + "listtype": "F" + }, + { + "description": "% processor utilization by coupling facility", + "id": "8D2070", + "listtype": "F" + }, + { + "description": "% storage class memory in-use by coupling facility", + "id": "8D46A0", + "listtype": "F" + }, + { + "description": "# frames available by coupling facility", + "id": "8D2010", + "listtype": "F" + }, + { + "description": "# frames installed by coupling facility", + "id": "8D2030", + "listtype": "F" + }, + { + "description": "# of bytes available for augmented space by coupling facility", + "id": "8D46C0", + "listtype": "F" + }, + { + "description": "# of bytes available for storage class memory by coupling facility", + "id": "8D46E0", + "listtype": "F" + }, + { + "description": "# of bytes configured for augmented space by coupling facility", + "id": "8D4700", + "listtype": "F" + }, + { + "description": "# of bytes configured for storage class memory by coupling facility", + "id": "8D4720", + "listtype": "F" + }, + { + "description": "# of maximum bytes for storage class memory by coupling facility", + "id": "8D4740", + "listtype": "F" + }, + { + "description": "total request rate by coupling facility", + "id": "8D21B0", + "listtype": "F" + }, + { + "description": "% read (in I/O rate) (sysplex) by aggregate", + "id": "8D4FF0", + "listtype": "G" + }, + { + "description": "% read (in I/O rate) by aggregate", + "id": "8D5000", + "listtype": "G" + }, + { + "description": "% space used (sysplex) by aggregate", + "id": "8D5020", + "listtype": "G" + }, + { + "description": "% space used by aggregate", + "id": "8D5030", + "listtype": "G" + }, + { + "description": "# cancelled operations (sysplex) by aggregate", + "id": "8D5050", + "listtype": "G" + }, + { + "description": "# cancelled operations by aggregate", + "id": "8D5060", + "listtype": "G" + }, + { + "description": "# disk I/O errors (sysplex) by aggregate", + "id": "8D5080", + "listtype": "G" + }, + { + "description": "# disk I/O errors by aggregate", + "id": "8D5090", + "listtype": "G" + }, + { + "description": "# open objects (sysplex) by aggregate", + "id": "8D50B0", + "listtype": "G" + }, + { + "description": "# open objects by aggregate", + "id": "8D50C0", + "listtype": "G" + }, + { + "description": "# tokens (sysplex) by aggregate", + "id": "8D50E0", + "listtype": "G" + }, + { + "description": "# tokens by aggregate", + "id": "8D50F0", + "listtype": "G" + }, + { + "description": "# vnodes (sysplex) by aggregate", + "id": "8D5110", + "listtype": "G" + }, + { + "description": "# vnodes by aggregate", + "id": "8D5120", + "listtype": "G" + }, + { + "description": "# ENOSPC errors (sysplex) by aggregate", + "id": "8D5140", + "listtype": "G" + }, + { + "description": "# ENOSPC errors by aggregate", + "id": "8D5150", + "listtype": "G" + }, + { + "description": "# USS held vnodes (sysplex) by aggregate", + "id": "8D5170", + "listtype": "G" + }, + { + "description": "# USS held vnodes by aggregate", + "id": "8D5180", + "listtype": "G" + }, + { + "description": "# XCF communication failures (sysplex) by aggregate", + "id": "8D51A0", + "listtype": "G" + }, + { + "description": "# XCF communication failures by aggregate", + "id": "8D51B0", + "listtype": "G" + }, + { + "description": "# 4K pages in user cache (sysplex) by aggregate", + "id": "8D51D0", + "listtype": "G" + }, + { + "description": "# 4K pages in user cache by aggregate", + "id": "8D51E0", + "listtype": "G" + }, + { + "description": "# 8K pages in metadata cache (sysplex) by aggregate", + "id": "8D5200", + "listtype": "G" + }, + { + "description": "# 8K pages in metadata cache by aggregate", + "id": "8D5210", + "listtype": "G" + }, + { + "description": "aggregate read rate (sysplex) by aggregate", + "id": "8D5230", + "listtype": "G" + }, + { + "description": "aggregate read rate by aggregate", + "id": "8D5240", + "listtype": "G" + }, + { + "description": "aggregate write rate (sysplex) by aggregate", + "id": "8D5260", + "listtype": "G" + }, + { + "description": "aggregate write rate by aggregate", + "id": "8D5270", + "listtype": "G" + }, + { + "description": "application read rate (sysplex) by aggregate", + "id": "8D5290", + "listtype": "G" + }, + { + "description": "application read rate by aggregate", + "id": "8D52A0", + "listtype": "G" + }, + { + "description": "application read response time (sysplex) by aggregate", + "id": "8D52C0", + "listtype": "G" + }, + { + "description": "application read response time by aggregate", + "id": "8D52D0", + "listtype": "G" + }, + { + "description": "application write rate (sysplex) by aggregate", + "id": "8D52F0", + "listtype": "G" + }, + { + "description": "application write rate by aggregate", + "id": "8D5300", + "listtype": "G" + }, + { + "description": "application write response time (sysplex) by aggregate", + "id": "8D5320", + "listtype": "G" + }, + { + "description": "application write response time by aggregate", + "id": "8D5330", + "listtype": "G" + }, + { + "description": "maximum size (sysplex) by aggregate", + "id": "8D5350", + "listtype": "G" + }, + { + "description": "maximum size by aggregate", + "id": "8D5360", + "listtype": "G" + }, + { + "description": "response time (read + write) (sysplex) by aggregate", + "id": "8D5380", + "listtype": "G" + }, + { + "description": "response time (read + write) by aggregate", + "id": "8D5390", + "listtype": "G" + }, + { + "description": "I/O rate (read + write) (sysplex) by aggregate", + "id": "8D5970", + "listtype": "G" + }, + { + "description": "I/O rate (read + write) by aggregate", + "id": "8D5980", + "listtype": "G" + }, + { + "description": "XCF rate (read + write) (sysplex) by aggregate", + "id": "8D59A0", + "listtype": "G" + }, + { + "description": "XCF rate (read + write) by aggregate", + "id": "8D59B0", + "listtype": "G" + }, + { + "description": "XCF read rate (sysplex) by aggregate", + "id": "8D59D0", + "listtype": "G" + }, + { + "description": "XCF read rate by aggregate", + "id": "8D59E0", + "listtype": "G" + }, + { + "description": "XCF read response time (sysplex) by aggregate", + "id": "8D5A00", + "listtype": "G" + }, + { + "description": "XCF read response time by aggregate", + "id": "8D5A10", + "listtype": "G" + }, + { + "description": "XCF write rate (sysplex) by aggregate", + "id": "8D5A30", + "listtype": "G" + }, + { + "description": "XCF write rate by aggregate", + "id": "8D5A40", + "listtype": "G" + }, + { + "description": "XCF write response time (sysplex) by aggregate", + "id": "8D5A60", + "listtype": "G" + }, + { + "description": "XCF write response time by aggregate", + "id": "8D5A70", + "listtype": "G" + }, + { + "description": "% delay by WLM report class period", + "id": "8D2960", + "listtype": "K" + }, + { + "description": "% delay for enqueue by WLM report class period", + "id": "8D2980", + "listtype": "K" + }, + { + "description": "% delay for i/o by WLM report class period", + "id": "8D2990", + "listtype": "K" + }, + { + "description": "% delay for operator by WLM report class period", + "id": "8D29A0", + "listtype": "K" + }, + { + "description": "% delay for processor by WLM report class period", + "id": "8D29B0", + "listtype": "K" + }, + { + "description": "% delay for storage by WLM report class period", + "id": "8D29C0", + "listtype": "K" + }, + { + "description": "% delay for swsub by WLM report class period", + "id": "8D29D0", + "listtype": "K" + }, + { + "description": "% using by WLM report class period", + "id": "8D2B30", + "listtype": "K" + }, + { + "description": "% using for i/o by WLM report class period", + "id": "8D2B60", + "listtype": "K" + }, + { + "description": "% using for processor by WLM report class period", + "id": "8D2B70", + "listtype": "K" + }, + { + "description": "% workflow by WLM report class period", + "id": "8D2B80", + "listtype": "K" + }, + { + "description": "% workflow for i/o by WLM report class period", + "id": "8D2BB0", + "listtype": "K" + }, + { + "description": "% workflow for processor by WLM report class period", + "id": "8D7F60", + "listtype": "K" + }, + { + "description": "# active users by WLM report class period", + "id": "8D2D60", + "listtype": "K" + }, + { + "description": "# users by WLM report class period", + "id": "8D2F40", + "listtype": "K" + }, + { + "description": "active time (ms) by WLM report class period", + "id": "8D5E10", + "listtype": "K" + }, + { + "description": "active time by WLM report class period", + "id": "8D2FC0", + "listtype": "K" + }, + { + "description": "execution velocity by WLM report class period", + "id": "8D3080", + "listtype": "K" + }, + { + "description": "percentile achieving response time goal by WLM report class period", + "id": "8D3100", + "listtype": "K" + }, + { + "description": "performance index by WLM report class period", + "id": "8D3110", + "listtype": "K" + }, + { + "description": "queue time (ms) by WLM report class period", + "id": "8D5E70", + "listtype": "K" + }, + { + "description": "queue time by WLM report class period", + "id": "8D3130", + "listtype": "K" + }, + { + "description": "response time (ms) by WLM report class period", + "id": "8D5F00", + "listtype": "K" + }, + { + "description": "response time by WLM report class period", + "id": "8D31B0", + "listtype": "K" + }, + { + "description": "transaction ended rate by WLM report class period", + "id": "8D3230", + "listtype": "K" + }, + { + "description": "wait time (ms) by WLM report class period", + "id": "8D6EE0", + "listtype": "K" + }, + { + "description": "# delayed i/o requests by LCU", + "id": "8D0690", + "listtype": "L" + }, + { + "description": "delayed i/o request rate by LCU", + "id": "8D0EC0", + "listtype": "L" + }, + { + "description": "% central storage frames active by MVS image", + "id": "8D1650", + "listtype": "M" + }, + { + "description": "% delay by MVS image", + "id": "8D0220", + "listtype": "M" + }, + { + "description": "% delay for enqueue by MVS image", + "id": "8D1A70", + "listtype": "M" + }, + { + "description": "% delay for i/o by MVS image", + "id": "8D1AD0", + "listtype": "M" + }, + { + "description": "% delay for operator by MVS image", + "id": "8D1B30", + "listtype": "M" + }, + { + "description": "% delay for processor by MVS image", + "id": "8D1B90", + "listtype": "M" + }, + { + "description": "% delay for storage by MVS image", + "id": "8D1BF0", + "listtype": "M" + }, + { + "description": "% delay for swsub by MVS image", + "id": "8D1C50", + "listtype": "M" + }, + { + "description": "% idle by MVS image", + "id": "8D0400", + "listtype": "M" + }, + { + "description": "% unknown by MVS image", + "id": "8D0490", + "listtype": "M" + }, + { + "description": "% using by MVS image", + "id": "8D0520", + "listtype": "M" + }, + { + "description": "% using for i/o by MVS image", + "id": "8D1DA0", + "listtype": "M" + }, + { + "description": "% using for processor by MVS image", + "id": "8D1E00", + "listtype": "M" + }, + { + "description": "% workflow by MVS image", + "id": "8D0570", + "listtype": "M" + }, + { + "description": "% workflow for i/o by MVS image", + "id": "8D1F20", + "listtype": "M" + }, + { + "description": "% workflow for processor by MVS image", + "id": "8D1F80", + "listtype": "M" + }, + { + "description": "% CPU utilization (CP) by MVS image", + "id": "8D0450", + "listtype": "M" + }, + { + "description": "% CSA utilization by MVS image", + "id": "8D2410", + "listtype": "M" + }, + { + "description": "% ECSA utilization by MVS image", + "id": "8D2430", + "listtype": "M" + }, + { + "description": "% ESQA utilization by MVS image", + "id": "8D2450", + "listtype": "M" + }, + { + "description": "% SQA utilization by MVS image", + "id": "8D2470", + "listtype": "M" + }, + { + "description": "# active users by MVS image", + "id": "8D0630", + "listtype": "M" + }, + { + "description": "# dedicated memory 2G frames at IPL time excl system by MVS image", + "id": "8D7050", + "listtype": "M" + }, + { + "description": "# dedicated memory 2G frames avail for address spaces by MVS image", + "id": "8D7070", + "listtype": "M" + }, + { + "description": "# dedicated memory 2G frames online and offline by MVS image", + "id": "8D70C0", + "listtype": "M" + }, + { + "description": "# dedicated memory 2G frames online by MVS image", + "id": "8D70D0", + "listtype": "M" + }, + { + "description": "# users by MVS image", + "id": "8D0D60", + "listtype": "M" + }, + { + "description": "execution velocity by MVS image", + "id": "8D0F10", + "listtype": "M" + }, + { + "description": "response time by MVS image", + "id": "8D1FA0", + "listtype": "M" + }, + { + "description": "transaction ended rate by MVS image", + "id": "8D1210", + "listtype": "M" + }, + { + "description": "unreferenced interval count by MVS image", + "id": "8D1FE0", + "listtype": "M" + }, + { + "description": "zFS % avg response time lock by MVS image", + "id": "8D53B0", + "listtype": "M" + }, + { + "description": "zFS % avg response time sleep by MVS image", + "id": "8D53D0", + "listtype": "M" + }, + { + "description": "zFS % avg response time I/O by MVS image", + "id": "8D53F0", + "listtype": "M" + }, + { + "description": "zFS kernel local request rate by MVS image", + "id": "8D5410", + "listtype": "M" + }, + { + "description": "zFS kernel local response time by MVS image", + "id": "8D5430", + "listtype": "M" + }, + { + "description": "zFS kernel local XCF rate by MVS image", + "id": "8D5450", + "listtype": "M" + }, + { + "description": "zFS kernel remote request rate by MVS image", + "id": "8D5470", + "listtype": "M" + }, + { + "description": "zFS kernel remote response time by MVS image", + "id": "8D5490", + "listtype": "M" + }, + { + "description": "zFS kernel remote XCF rate by MVS image", + "id": "8D54B0", + "listtype": "M" + }, + { + "description": "zFS metadata cache % hit by MVS image", + "id": "8D54D0", + "listtype": "M" + }, + { + "description": "zFS metadata cache # partial writes by MVS image", + "id": "8D54F0", + "listtype": "M" + }, + { + "description": "zFS metadata cache # requests by MVS image", + "id": "8D5510", + "listtype": "M" + }, + { + "description": "zFS metadata cache # updates by MVS image", + "id": "8D5530", + "listtype": "M" + }, + { + "description": "zFS metadata cache # 8K buffers by MVS image", + "id": "8D5550", + "listtype": "M" + }, + { + "description": "zFS metadata cache request rate by MVS image", + "id": "8D5570", + "listtype": "M" + }, + { + "description": "zFS metadata cache size by MVS image", + "id": "8D5590", + "listtype": "M" + }, + { + "description": "zFS user cache % delay by MVS image", + "id": "8D55B0", + "listtype": "M" + }, + { + "description": "zFS user cache % delayed reads by MVS image", + "id": "8D55D0", + "listtype": "M" + }, + { + "description": "zFS user cache % delayed writes by MVS image", + "id": "8D55F0", + "listtype": "M" + }, + { + "description": "zFS user cache % hit by MVS image", + "id": "8D5610", + "listtype": "M" + }, + { + "description": "zFS user cache % read by MVS image", + "id": "8D5630", + "listtype": "M" + }, + { + "description": "zFS user cache # allocated segments by MVS image", + "id": "8D5650", + "listtype": "M" + }, + { + "description": "zFS user cache # free pages by MVS image", + "id": "8D5670", + "listtype": "M" + }, + { + "description": "zFS user cache # fsynchs by MVS image", + "id": "8D5690", + "listtype": "M" + }, + { + "description": "zFS user cache # page reclaim writes by MVS image", + "id": "8D56B0", + "listtype": "M" + }, + { + "description": "zFS user cache # pages by MVS image", + "id": "8D56D0", + "listtype": "M" + }, + { + "description": "zFS user cache read rate by MVS image", + "id": "8D56F0", + "listtype": "M" + }, + { + "description": "zFS user cache read request % hit by MVS image", + "id": "8D5710", + "listtype": "M" + }, + { + "description": "zFS user cache read-ahead (async) rate by MVS image", + "id": "8D5730", + "listtype": "M" + }, + { + "description": "zFS user cache request rate by MVS image", + "id": "8D5750", + "listtype": "M" + }, + { + "description": "zFS user cache scheduled write rate by MVS image", + "id": "8D5770", + "listtype": "M" + }, + { + "description": "zFS user cache total size by MVS image", + "id": "8D5790", + "listtype": "M" + }, + { + "description": "zFS user cache write rate by MVS image", + "id": "8D57B0", + "listtype": "M" + }, + { + "description": "zFS user cache write request % hit by MVS image", + "id": "8D57D0", + "listtype": "M" + }, + { + "description": "zFS vnode cache % hit by MVS image", + "id": "8D57F0", + "listtype": "M" + }, + { + "description": "zFS vnode cache # allocated vnodes by MVS image", + "id": "8D5810", + "listtype": "M" + }, + { + "description": "zFS vnode cache # extended vnodes by MVS image", + "id": "8D5830", + "listtype": "M" + }, + { + "description": "zFS vnode cache # open vnodes by MVS image", + "id": "8D5850", + "listtype": "M" + }, + { + "description": "zFS vnode cache # requests by MVS image", + "id": "8D5870", + "listtype": "M" + }, + { + "description": "zFS vnode cache # requests for allocs by MVS image", + "id": "8D5890", + "listtype": "M" + }, + { + "description": "zFS vnode cache # requests for deletes by MVS image", + "id": "8D58B0", + "listtype": "M" + }, + { + "description": "zFS vnode cache # USS held vnodes by MVS image", + "id": "8D58D0", + "listtype": "M" + }, + { + "description": "zFS vnode cache extended vnode size by MVS image", + "id": "8D58F0", + "listtype": "M" + }, + { + "description": "zFS vnode cache request rate by MVS image", + "id": "8D5910", + "listtype": "M" + }, + { + "description": "zFS vnode cache size by MVS image", + "id": "8D5930", + "listtype": "M" + }, + { + "description": "zFS vnode cache vnode structure size by MVS image", + "id": "8D5950", + "listtype": "M" + }, + { + "description": "% delay by dataset name and job", + "id": "8D2890", + "listtype": "N" + }, + { + "description": "% using by dataset name and job", + "id": "8D2B00", + "listtype": "N" + }, + { + "description": "% delay by WLM service class period", + "id": "8D1820", + "listtype": "P" + }, + { + "description": "% delay for enqueue by WLM service class period", + "id": "8D1A50", + "listtype": "P" + }, + { + "description": "% delay for i/o by WLM service class period", + "id": "8D1AB0", + "listtype": "P" + }, + { + "description": "% delay for operator by WLM service class period", + "id": "8D1B10", + "listtype": "P" + }, + { + "description": "% delay for processor by WLM service class period", + "id": "8D1B70", + "listtype": "P" + }, + { + "description": "% delay for storage by WLM service class period", + "id": "8D1BD0", + "listtype": "P" + }, + { + "description": "% delay for swsub by WLM service class period", + "id": "8D1C30", + "listtype": "P" + }, + { + "description": "% using by WLM service class period", + "id": "8D1CE0", + "listtype": "P" + }, + { + "description": "% using for i/o by WLM service class period", + "id": "8D1D80", + "listtype": "P" + }, + { + "description": "% using for processor by WLM service class period", + "id": "8D1DE0", + "listtype": "P" + }, + { + "description": "% workflow by WLM service class period", + "id": "8D05A0", + "listtype": "P" + }, + { + "description": "% workflow for i/o by WLM service class period", + "id": "8D1F00", + "listtype": "P" + }, + { + "description": "% workflow for processor by WLM service class period", + "id": "8D1F60", + "listtype": "P" + }, + { + "description": "# active users by WLM service class period", + "id": "8D0660", + "listtype": "P" + }, + { + "description": "# users by WLM service class period", + "id": "8D0D90", + "listtype": "P" + }, + { + "description": "active time (ms) by WLM service class period", + "id": "8D5E30", + "listtype": "P" + }, + { + "description": "active time by WLM service class period", + "id": "8D0E70", + "listtype": "P" + }, + { + "description": "execution velocity by WLM service class period", + "id": "8D0F70", + "listtype": "P" + }, + { + "description": "execution velocity goal by WLM service class period", + "id": "8D0FB0", + "listtype": "P" + }, + { + "description": "importance by WLM service class period", + "id": "8D2380", + "listtype": "P" + }, + { + "description": "percentile achieving response time goal by WLM service class period", + "id": "8D0FF0", + "listtype": "P" + }, + { + "description": "performance index by important WLM service class period", + "id": "8D1010", + "listtype": "P" + }, + { + "description": "performance index by WLM service class period", + "id": "8D1020", + "listtype": "P" + }, + { + "description": "queue time (ms) by WLM service class period", + "id": "8D5E90", + "listtype": "P" + }, + { + "description": "queue time by WLM service class period", + "id": "8D10D0", + "listtype": "P" + }, + { + "description": "response time (ms) by WLM service class period", + "id": "8D5F40", + "listtype": "P" + }, + { + "description": "response time by WLM service class period", + "id": "8D1180", + "listtype": "P" + }, + { + "description": "response time goal (ms) by WLM service class period", + "id": "8D5F80", + "listtype": "P" + }, + { + "description": "response time goal by WLM service class period", + "id": "8D11C0", + "listtype": "P" + }, + { + "description": "response time goal percentile by WLM service class period", + "id": "8D11E0", + "listtype": "P" + }, + { + "description": "transaction ended rate by WLM service class period", + "id": "8D1240", + "listtype": "P" + }, + { + "description": "wait time (ms) by WLM service class period", + "id": "8D6F00", + "listtype": "P" + }, + { + "description": "% delay by WLM report class", + "id": "8D16E0", + "listtype": "R" + }, + { + "description": "% delay for enqueue by WLM report class", + "id": "8D1A30", + "listtype": "R" + }, + { + "description": "% delay for i/o by WLM report class", + "id": "8D1A90", + "listtype": "R" + }, + { + "description": "% delay for operator by WLM report class", + "id": "8D1AF0", + "listtype": "R" + }, + { + "description": "% delay for processor by WLM report class", + "id": "8D1B50", + "listtype": "R" + }, + { + "description": "% delay for storage by WLM report class", + "id": "8D1BB0", + "listtype": "R" + }, + { + "description": "% delay for swsub by WLM report class", + "id": "8D1C10", + "listtype": "R" + }, + { + "description": "% using by WLM report class", + "id": "8D1C60", + "listtype": "R" + }, + { + "description": "% using for i/o by WLM report class", + "id": "8D1D60", + "listtype": "R" + }, + { + "description": "% using for processor by WLM report class", + "id": "8D1DC0", + "listtype": "R" + }, + { + "description": "% workflow by WLM report class", + "id": "8D0580", + "listtype": "R" + }, + { + "description": "% workflow for i/o by WLM report class", + "id": "8D1EE0", + "listtype": "R" + }, + { + "description": "% workflow for processor by WLM report class", + "id": "8D1F40", + "listtype": "R" + }, + { + "description": "# active users by WLM report class", + "id": "8D0640", + "listtype": "R" + }, + { + "description": "# users by WLM report class", + "id": "8D0D70", + "listtype": "R" + }, + { + "description": "active time (ms) by WLM report class", + "id": "8D5E00", + "listtype": "R" + }, + { + "description": "active time by WLM report class", + "id": "8D0E50", + "listtype": "R" + }, + { + "description": "execution velocity by WLM report class", + "id": "8D0F30", + "listtype": "R" + }, + { + "description": "queue time (ms) by WLM report class", + "id": "8D5E60", + "listtype": "R" + }, + { + "description": "queue time by WLM report class", + "id": "8D10B0", + "listtype": "R" + }, + { + "description": "response time (ms) by WLM report class", + "id": "8D5EE0", + "listtype": "R" + }, + { + "description": "response time by WLM report class", + "id": "8D1140", + "listtype": "R" + }, + { + "description": "transaction ended rate by WLM report class", + "id": "8D1220", + "listtype": "R" + }, + { + "description": "wait time (ms) by WLM report class", + "id": "8D6ED0", + "listtype": "R" + }, + { + "description": "% delay by WLM service class", + "id": "8D1780", + "listtype": "S" + }, + { + "description": "% delay for enqueue by WLM service class", + "id": "8D1A40", + "listtype": "S" + }, + { + "description": "% delay for i/o by WLM service class", + "id": "8D1AA0", + "listtype": "S" + }, + { + "description": "% delay for operator by WLM service class", + "id": "8D1B00", + "listtype": "S" + }, + { + "description": "% delay for processor by WLM service class", + "id": "8D1B60", + "listtype": "S" + }, + { + "description": "% delay for storage by WLM service class", + "id": "8D1BC0", + "listtype": "S" + }, + { + "description": "% delay for swsub by WLM service class", + "id": "8D1C20", + "listtype": "S" + }, + { + "description": "% using by WLM service class", + "id": "8D1CB0", + "listtype": "S" + }, + { + "description": "% using for i/o by WLM service class", + "id": "8D1D70", + "listtype": "S" + }, + { + "description": "% using for processor by WLM service class", + "id": "8D1DD0", + "listtype": "S" + }, + { + "description": "% workflow by WLM service class", + "id": "8D0590", + "listtype": "S" + }, + { + "description": "% workflow for i/o by WLM service class", + "id": "8D1EF0", + "listtype": "S" + }, + { + "description": "% workflow for processor by WLM service class", + "id": "8D1F50", + "listtype": "S" + }, + { + "description": "# active users by WLM service class", + "id": "8D0650", + "listtype": "S" + }, + { + "description": "# users by WLM service class", + "id": "8D0D80", + "listtype": "S" + }, + { + "description": "active time (ms) by WLM service class", + "id": "8D5E20", + "listtype": "S" + }, + { + "description": "active time by WLM service class", + "id": "8D0E60", + "listtype": "S" + }, + { + "description": "execution velocity by WLM service class", + "id": "8D0F50", + "listtype": "S" + }, + { + "description": "percentile achieving response time goal by WLM service class", + "id": "8D6E80", + "listtype": "S" + }, + { + "description": "performance index by WLM service class", + "id": "8D6EB0", + "listtype": "S" + }, + { + "description": "queue time (ms) by WLM service class", + "id": "8D5E80", + "listtype": "S" + }, + { + "description": "queue time by WLM service class", + "id": "8D10C0", + "listtype": "S" + }, + { + "description": "response time (ms) by WLM service class", + "id": "8D5F20", + "listtype": "S" + }, + { + "description": "response time by WLM service class", + "id": "8D1160", + "listtype": "S" + }, + { + "description": "service rate by WLM service class", + "id": "8D1FC0", + "listtype": "S" + }, + { + "description": "service units / transaction by WLM service class", + "id": "8D1FD0", + "listtype": "S" + }, + { + "description": "transaction ended rate by WLM service class", + "id": "8D1230", + "listtype": "S" + }, + { + "description": "wait time (ms) by WLM service class", + "id": "8D6EF0", + "listtype": "S" + }, + { + "description": "% CPU utilization by CF structure", + "id": "8D39D0", + "listtype": "T" + }, + { + "description": "async request rate by CF structure", + "id": "8D20B0", + "listtype": "T" + }, + { + "description": "async service time by CF structure", + "id": "8D20F0", + "listtype": "T" + }, + { + "description": "sync request rate by CF structure", + "id": "8D2130", + "listtype": "T" + }, + { + "description": "sync service time by CF structure", + "id": "8D2170", + "listtype": "T" + }, + { + "description": "% director port busy by channel path and CU", + "id": "8D0340", + "listtype": "U" + }, + { + "description": "% CU busy by channel path and CU", + "id": "8D05D0", + "listtype": "U" + }, + { + "description": "% active time by volume", + "id": "8D0020", + "listtype": "V" + }, + { + "description": "% connect time by volume", + "id": "8D00D0", + "listtype": "V" + }, + { + "description": "% delay device busy by volume", + "id": "8D0250", + "listtype": "V" + }, + { + "description": "% disconnect time by volume", + "id": "8D0360", + "listtype": "V" + }, + { + "description": "% pending time by volume", + "id": "8D0440", + "listtype": "V" + }, + { + "description": "i/o activity rate by volume", + "id": "8D0EA0", + "listtype": "V" + }, + { + "description": "i/o intensity by volume", + "id": "8D12A0", + "listtype": "V" + }, + { + "description": "response time by volume", + "id": "8D1120", + "listtype": "V" + }, + { + "description": "IOS queue time by volume", + "id": "8D12C0", + "listtype": "V" + }, + { + "description": "% delay by WLM workload", + "id": "8D18C0", + "listtype": "W" + }, + { + "description": "% delay for enqueue by WLM workload", + "id": "8D1A60", + "listtype": "W" + }, + { + "description": "% delay for i/o by WLM workload", + "id": "8D1AC0", + "listtype": "W" + }, + { + "description": "% delay for operator by WLM workload", + "id": "8D1B20", + "listtype": "W" + }, + { + "description": "% delay for processor by WLM workload", + "id": "8D1B80", + "listtype": "W" + }, + { + "description": "% delay for storage by WLM workload", + "id": "8D1BE0", + "listtype": "W" + }, + { + "description": "% delay for swsub by WLM workload", + "id": "8D1C40", + "listtype": "W" + }, + { + "description": "% using by WLM workload", + "id": "8D1D10", + "listtype": "W" + }, + { + "description": "% using for i/o by WLM workload", + "id": "8D1D90", + "listtype": "W" + }, + { + "description": "% using for processor by WLM workload", + "id": "8D1DF0", + "listtype": "W" + }, + { + "description": "% workflow by WLM workload", + "id": "8D05B0", + "listtype": "W" + }, + { + "description": "% workflow for i/o by WLM workload", + "id": "8D1F10", + "listtype": "W" + }, + { + "description": "% workflow for processor by WLM workload", + "id": "8D1F70", + "listtype": "W" + }, + { + "description": "# active users by WLM workload", + "id": "8D0670", + "listtype": "W" + }, + { + "description": "# users by WLM workload", + "id": "8D0DA0", + "listtype": "W" + }, + { + "description": "active time (ms) by WLM workload", + "id": "8D5E40", + "listtype": "W" + }, + { + "description": "active time by WLM workload", + "id": "8D0E80", + "listtype": "W" + }, + { + "description": "execution velocity by WLM workload", + "id": "8D0F90", + "listtype": "W" + }, + { + "description": "queue time (ms) by WLM workload", + "id": "8D5EA0", + "listtype": "W" + }, + { + "description": "queue time by WLM workload", + "id": "8D10E0", + "listtype": "W" + }, + { + "description": "response time (ms) by WLM workload", + "id": "8D5F60", + "listtype": "W" + }, + { + "description": "response time by WLM workload", + "id": "8D11A0", + "listtype": "W" + }, + { + "description": "transaction ended rate by WLM workload", + "id": "8D1250", + "listtype": "W" + }, + { + "description": "wait time (ms) by WLM workload", + "id": "8D6F10", + "listtype": "W" + }, + { + "description": "% total physical utilization (AAP) by CPC", + "id": "8D3320", + "listtype": "X" + }, + { + "description": "% total physical utilization (CP) by CPC", + "id": "8D2550", + "listtype": "X" + }, + { + "description": "% total physical utilization (ICF) by CPC", + "id": "8D32F0", + "listtype": "X" + }, + { + "description": "% total physical utilization (IFL) by CPC", + "id": "8D3350", + "listtype": "X" + }, + { + "description": "% total physical utilization (IIP) by CPC", + "id": "8D3410", + "listtype": "X" + }, + { + "description": "% LPAR management time (AAP) for PHYSICAL by CPC", + "id": "8D33D0", + "listtype": "X" + }, + { + "description": "% LPAR management time (CP) for PHYSICAL by CPC", + "id": "8D3370", + "listtype": "X" + }, + { + "description": "% LPAR management time (ICF) for PHYSICAL by CPC", + "id": "8D3390", + "listtype": "X" + }, + { + "description": "% LPAR management time (IFL) for PHYSICAL by CPC", + "id": "8D33F0", + "listtype": "X" + }, + { + "description": "% LPAR management time (IIP) for PHYSICAL by CPC", + "id": "8D3430", + "listtype": "X" + }, + { + "description": "capacity (MSU/h) by CPC", + "id": "8D25D0", + "listtype": "X" + }, + { + "description": "signals received by XCF group", + "id": "8D3E00", + "listtype": "1" + }, + { + "description": "signals sent by XCF group", + "id": "8D3E40", + "listtype": "1" + }, + { + "description": "signals received by XCF group and member", + "id": "8D3E10", + "listtype": "2" + }, + { + "description": "signals sent by XCF group and member", + "id": "8D3E50", + "listtype": "2" + }, + { + "description": "% retry by XCF systems and path", + "id": "8D38A0", + "listtype": "3" + }, + { + "description": "i/o transfer time by XCF systems and path", + "id": "8D3DB0", + "listtype": "3" + }, + { + "description": "message limit by XCF systems and path", + "id": "8D3DC0", + "listtype": "3" + }, + { + "description": "restart count by XCF systems and path", + "id": "8D3DD0", + "listtype": "3" + }, + { + "description": "retry limit by XCF systems and path", + "id": "8D3DE0", + "listtype": "3" + }, + { + "description": "signals pending transfer by XCF systems and path", + "id": "8D3DF0", + "listtype": "3" + }, + { + "description": "signals received by XCF systems and path", + "id": "8D3E30", + "listtype": "3" + }, + { + "description": "signals sent by XCF systems and path", + "id": "8D3E60", + "listtype": "3" + }, + { + "description": "storage in use by XCF systems and path", + "id": "8D3E80", + "listtype": "3" + }, + { + "description": "times buffer unavailable by XCF systems and path", + "id": "8D3E90", + "listtype": "3" + }, + { + "description": "times path busy by XCF systems and path", + "id": "8D3EB0", + "listtype": "3" + }, + { + "description": "% degraded by XCF systems and transport class", + "id": "8D3660", + "listtype": "4" + }, + { + "description": "% fit by XCF systems and transport class", + "id": "8D36F0", + "listtype": "4" + }, + { + "description": "% large by XCF systems and transport class", + "id": "8D3700", + "listtype": "4" + }, + { + "description": "% small by XCF systems and transport class", + "id": "8D38B0", + "listtype": "4" + }, + { + "description": "buffer length by XCF systems and transport class", + "id": "8D3DA0", + "listtype": "4" + }, + { + "description": "signals sent by XCF systems and transport class", + "id": "8D3E70", + "listtype": "4" + }, + { + "description": "times buffer unavailable by XCF systems and transport class", + "id": "8D3EA0", + "listtype": "4" + }, + { + "description": "times path unavailable by XCF systems and transport class", + "id": "8D3EC0", + "listtype": "4" + }, + { + "description": "signals received by XCF systems", + "id": "8D3E20", + "listtype": "5" + }, + { + "description": "% utilization asym-key generation operations (domain) by crypto card", + "id": "8D6470", + "listtype": "6" + }, + { + "description": "% utilization asym-key generation operations (CPC) by crypto card", + "id": "8D6490", + "listtype": "6" + }, + { + "description": "% utilization complete sym-key operations (domain) by crypto card", + "id": "8D64B0", + "listtype": "6" + }, + { + "description": "% utilization complete sym-key operations (CPC) by crypto card", + "id": "8D64D0", + "listtype": "6" + }, + { + "description": "% utilization crypto operations (domain) by crypto card", + "id": "8D64F0", + "listtype": "6" + }, + { + "description": "% utilization crypto operations (CPC) by crypto card", + "id": "8D6510", + "listtype": "6" + }, + { + "description": "% utilization fast asym-key operations (domain) by crypto card", + "id": "8D6530", + "listtype": "6" + }, + { + "description": "% utilization fast asym-key operations (CPC) by crypto card", + "id": "8D6550", + "listtype": "6" + }, + { + "description": "% utilization partial sym-key operations (domain) by crypto card", + "id": "8D6570", + "listtype": "6" + }, + { + "description": "% utilization partial sym-key operations (CPC) by crypto card", + "id": "8D6590", + "listtype": "6" + }, + { + "description": "% utilization slow asym-key operations (domain) by crypto card", + "id": "8D65B0", + "listtype": "6" + }, + { + "description": "% utilization slow asym-key operations (CPC) by crypto card", + "id": "8D65D0", + "listtype": "6" + }, + { + "description": "% utilization RSA key-generation operations (domain) by crypto card", + "id": "8D65F0", + "listtype": "6" + }, + { + "description": "% utilization RSA key-generation operations (CPC) by crypto card", + "id": "8D6610", + "listtype": "6" + }, + { + "description": "% utilization RSA CRT 1024 operations (domain) by crypto card", + "id": "8D6630", + "listtype": "6" + }, + { + "description": "% utilization RSA CRT 1024 operations (CPC) by crypto card", + "id": "8D6650", + "listtype": "6" + }, + { + "description": "% utilization RSA CRT 2048 operations (domain) by crypto card", + "id": "8D6670", + "listtype": "6" + }, + { + "description": "% utilization RSA CRT 2048 operations (CPC) by crypto card", + "id": "8D6690", + "listtype": "6" + }, + { + "description": "% utilization RSA CRT 4096 operations (domain) by crypto card", + "id": "8D66B0", + "listtype": "6" + }, + { + "description": "% utilization RSA CRT 4096 operations (CPC) by crypto card", + "id": "8D66D0", + "listtype": "6" + }, + { + "description": "% utilization RSA ME 1024 operations (domain) by crypto card", + "id": "8D66F0", + "listtype": "6" + }, + { + "description": "% utilization RSA ME 1024 operations (CPC) by crypto card", + "id": "8D6710", + "listtype": "6" + }, + { + "description": "% utilization RSA ME 2048 operations (domain) by crypto card", + "id": "8D6730", + "listtype": "6" + }, + { + "description": "% utilization RSA ME 2048 operations (CPC) by crypto card", + "id": "8D6750", + "listtype": "6" + }, + { + "description": "% utilization RSA ME 4096 operations (domain) by crypto card", + "id": "8D6770", + "listtype": "6" + }, + { + "description": "% utilization RSA ME 4096 operations (CPC) by crypto card", + "id": "8D6790", + "listtype": "6" + }, + { + "description": "asym-key generation operation rate (domain) by crypto card", + "id": "8D67B0", + "listtype": "6" + }, + { + "description": "asym-key generation operation rate (CPC) by crypto card", + "id": "8D67D0", + "listtype": "6" + }, + { + "description": "average asym-key generation exec time (domain) by crypto card", + "id": "8D67E0", + "listtype": "6" + }, + { + "description": "average asym-key generation exec time (CPC) by crypto card", + "id": "8D67F0", + "listtype": "6" + }, + { + "description": "average complete sym-key execution time (domain) by crypto card", + "id": "8D6830", + "listtype": "6" + }, + { + "description": "average complete sym-key execution time (CPC) by crypto card", + "id": "8D6850", + "listtype": "6" + }, + { + "description": "average crypto execution time (domain) by crypto card", + "id": "8D6870", + "listtype": "6" + }, + { + "description": "average crypto execution time (CPC) by crypto card", + "id": "8D6890", + "listtype": "6" + }, + { + "description": "average fast asym-key execution time (domain) by crypto card", + "id": "8D68B0", + "listtype": "6" + }, + { + "description": "average fast asym-key execution time (CPC) by crypto card", + "id": "8D68D0", + "listtype": "6" + }, + { + "description": "average partial sym-key execution time (domain) by crypto card", + "id": "8D68F0", + "listtype": "6" + }, + { + "description": "average partial sym-key execution time (CPC) by crypto card", + "id": "8D6910", + "listtype": "6" + }, + { + "description": "average slow asym-key execution time (domain) by crypto card", + "id": "8D6930", + "listtype": "6" + }, + { + "description": "average slow asym-key execution time (CPC) by crypto card", + "id": "8D6950", + "listtype": "6" + }, + { + "description": "average RSA key-generation execution time (domain) by crypto card", + "id": "8D6970", + "listtype": "6" + }, + { + "description": "average RSA key-generation execution time (CPC) by crypto card", + "id": "8D6990", + "listtype": "6" + }, + { + "description": "average RSA CRT 1024 execution time (domain) by crypto card", + "id": "8D69B0", + "listtype": "6" + }, + { + "description": "average RSA CRT 1024 execution time (CPC) by crypto card", + "id": "8D69D0", + "listtype": "6" + }, + { + "description": "average RSA CRT 2048 execution time (domain) by crypto card", + "id": "8D69F0", + "listtype": "6" + }, + { + "description": "average RSA CRT 2048 execution time (CPC) by crypto card", + "id": "8D6A10", + "listtype": "6" + }, + { + "description": "average RSA CRT 4096 execution time (domain) by crypto card", + "id": "8D6A30", + "listtype": "6" + }, + { + "description": "average RSA CRT 4096 execution time (CPC) by crypto card", + "id": "8D6A50", + "listtype": "6" + }, + { + "description": "average RSA ME 1024 execution time (domain) by crypto card", + "id": "8D6A70", + "listtype": "6" + }, + { + "description": "average RSA ME 1024 execution time (CPC) by crypto card", + "id": "8D6A90", + "listtype": "6" + }, + { + "description": "average RSA ME 2048 execution time (domain) by crypto card", + "id": "8D6AB0", + "listtype": "6" + }, + { + "description": "average RSA ME 2048 execution time (CPC) by crypto card", + "id": "8D6AD0", + "listtype": "6" + }, + { + "description": "average RSA ME 4096 execution time (domain) by crypto card", + "id": "8D6AF0", + "listtype": "6" + }, + { + "description": "average RSA ME 4096 execution time (CPC) by crypto card", + "id": "8D6B10", + "listtype": "6" + }, + { + "description": "complete sym-key operation rate (domain) by crypto card", + "id": "8D6B30", + "listtype": "6" + }, + { + "description": "complete sym-key operation rate (CPC) by crypto card", + "id": "8D6B50", + "listtype": "6" + }, + { + "description": "crypto operation rate (domain) by crypto card", + "id": "8D6B70", + "listtype": "6" + }, + { + "description": "crypto operation rate (CPC) by crypto card", + "id": "8D6B90", + "listtype": "6" + }, + { + "description": "fast asym-key operation rate (domain) by crypto card", + "id": "8D6BB0", + "listtype": "6" + }, + { + "description": "fast asym-key operation rate (CPC) by crypto card", + "id": "8D6BD0", + "listtype": "6" + }, + { + "description": "partial sym-key operation rate (domain) by crypto card", + "id": "8D6BF0", + "listtype": "6" + }, + { + "description": "partial sym-key operation rate (CPC) by crypto card", + "id": "8D6C10", + "listtype": "6" + }, + { + "description": "slow asym-key operation rate (domain) by crypto card", + "id": "8D6C30", + "listtype": "6" + }, + { + "description": "slow asym-key operation rate (CPC) by crypto card", + "id": "8D6C50", + "listtype": "6" + }, + { + "description": "RSA key-generation operation rate (domain) by crypto card", + "id": "8D6C70", + "listtype": "6" + }, + { + "description": "RSA key-generation operation rate (CPC) by crypto card", + "id": "8D6C90", + "listtype": "6" + }, + { + "description": "RSA CRT 1024 operation rate (domain) by crypto card", + "id": "8D6CB0", + "listtype": "6" + }, + { + "description": "RSA CRT 1024 operation rate (CPC) by crypto card", + "id": "8D6CD0", + "listtype": "6" + }, + { + "description": "RSA CRT 2048 operation rate (domain) by crypto card", + "id": "8D6CF0", + "listtype": "6" + }, + { + "description": "RSA CRT 2048 operation rate (CPC) by crypto card", + "id": "8D6D10", + "listtype": "6" + }, + { + "description": "RSA CRT 4096 operation rate (domain) by crypto card", + "id": "8D6D30", + "listtype": "6" + }, + { + "description": "RSA CRT 4096 operation rate (CPC) by crypto card", + "id": "8D6D50", + "listtype": "6" + }, + { + "description": "RSA ME 1024 operation rate (domain) by crypto card", + "id": "8D6D70", + "listtype": "6" + }, + { + "description": "RSA ME 1024 operation rate (CPC) by crypto card", + "id": "8D6D90", + "listtype": "6" + }, + { + "description": "RSA ME 2048 operation rate (domain) by crypto card", + "id": "8D6DB0", + "listtype": "6" + }, + { + "description": "RSA ME 2048 operation rate (CPC) by crypto card", + "id": "8D6DD0", + "listtype": "6" + }, + { + "description": "RSA ME 4096 operation rate (domain) by crypto card", + "id": "8D6DF0", + "listtype": "6" + }, + { + "description": "RSA ME 4096 operation rate (CPC) by crypto card", + "id": "8D6E10", + "listtype": "6" + }, + { + "description": "capacity actual (# CPs) by WLM resource group", + "id": "8D6E30", + "listtype": "7" + }, + { + "description": "capacity actual (MSU) by WLM resource group", + "id": "8D6E50", + "listtype": "7" + }, + { + "description": "capacity actual (SU/sec) by WLM resource group", + "id": "8D6E70", + "listtype": "7" + } + ] + }, + { + "metric": [] + }, + { + "metric": [ + { + "description": "% active time", + "id": "8D0010", + "listtype": " " + }, + { + "description": "% cache hits (all systems)", + "id": "8D21F0", + "listtype": " " + }, + { + "description": "% cache misses (all systems)", + "id": "8D2240", + "listtype": " " + }, + { + "description": "% connect time", + "id": "8D00B0", + "listtype": " " + }, + { + "description": "% delay", + "id": "8D0170", + "listtype": " " + }, + { + "description": "% delay device busy", + "id": "8D0240", + "listtype": " " + }, + { + "description": "% delay due to device command response time", + "id": "8D2770", + "listtype": " " + }, + { + "description": "% disconnect time", + "id": "8D0350", + "listtype": " " + }, + { + "description": "% freespace", + "id": "8D2A40", + "listtype": " " + }, + { + "description": "% pending time", + "id": "8D0430", + "listtype": " " + }, + { + "description": "% using", + "id": "8D04C0", + "listtype": " " + }, + { + "description": "cache read hits (all systems)", + "id": "8D2280", + "listtype": " " + }, + { + "description": "cache CFW hits (all systems)", + "id": "8D21C0", + "listtype": " " + }, + { + "description": "cache DFW hits (all systems)", + "id": "8D21D0", + "listtype": " " + }, + { + "description": "capacity", + "id": "8D2FF0", + "listtype": " " + }, + { + "description": "freespace", + "id": "8D3090", + "listtype": " " + }, + { + "description": "i/o activity rate", + "id": "8D0E90", + "listtype": " " + }, + { + "description": "i/o intensity", + "id": "8D1290", + "listtype": " " + }, + { + "description": "i/o rate (all systems)", + "id": "8D2300", + "listtype": " " + }, + { + "description": "largest extent", + "id": "8D30D0", + "listtype": " " + }, + { + "description": "non-cache dasd i/o rate (all systems)", + "id": "8D2330", + "listtype": " " + }, + { + "description": "response time", + "id": "8D10F0", + "listtype": " " + }, + { + "description": "IOS queue time", + "id": "8D12B0", + "listtype": " " + }, + { + "description": "% delay by job", + "id": "8D0210", + "listtype": "J" + }, + { + "description": "% using by job", + "id": "8D0500", + "listtype": "J" + } + ] + }, + { + "metric": [ + { + "description": "active time (ms) by WLM report class period", + "id": "8D5E10", + "listtype": "K" + }, + { + "description": "execution velocity by WLM report class period", + "id": "8D3080", + "listtype": "K" + }, + { + "description": "performance index by WLM report class period", + "id": "8D3110", + "listtype": "K" + }, + { + "description": "queue time (ms) by WLM report class period", + "id": "8D5E70", + "listtype": "K" + }, + { + "description": "transaction ended rate by WLM report class period", + "id": "8D3230", + "listtype": "K" + }, + { + "description": "wait time (ms) by WLM report class period", + "id": "8D6EE0", + "listtype": "K" + }, + { + "description": "active time (ms) by WLM service class period", + "id": "8D5E30", + "listtype": "P" + }, + { + "description": "execution velocity by WLM service class period", + "id": "8D0F60", + "listtype": "P" + }, + { + "description": "percentile achieving response time goal by WLM service class period", + "id": "8D0FF0", + "listtype": "P" + }, + { + "description": "performance index by WLM service class period", + "id": "8D1020", + "listtype": "P" + }, + { + "description": "queue time (ms) by WLM service class period", + "id": "8D5E90", + "listtype": "P" + }, + { + "description": "response time (ms) by WLM service class period", + "id": "8D5F40", + "listtype": "P" + }, + { + "description": "transaction ended rate by WLM service class period", + "id": "8D1240", + "listtype": "P" + }, + { + "description": "wait time (ms) by WLM service class period", + "id": "8D6F00", + "listtype": "P" + }, + { + "description": "active time (ms) by WLM report class", + "id": "8D5E00", + "listtype": "R" + }, + { + "description": "execution velocity by WLM report class", + "id": "8D0F20", + "listtype": "R" + }, + { + "description": "queue time (ms) by WLM report class", + "id": "8D5E60", + "listtype": "R" + }, + { + "description": "transaction ended rate by WLM report class", + "id": "8D1220", + "listtype": "R" + }, + { + "description": "wait time (ms) by WLM report class", + "id": "8D6ED0", + "listtype": "R" + }, + { + "description": "active time (ms) by WLM service class", + "id": "8D5E20", + "listtype": "S" + }, + { + "description": "execution velocity by WLM service class", + "id": "8D0F50", + "listtype": "S" + }, + { + "description": "percentile achieving response time goal by WLM service class", + "id": "8D6E80", + "listtype": "S" + }, + { + "description": "performance index by WLM service class", + "id": "8D6EB0", + "listtype": "S" + }, + { + "description": "queue time (ms) by WLM service class", + "id": "8D5E80", + "listtype": "S" + }, + { + "description": "response time (ms) by WLM service class", + "id": "8D5F20", + "listtype": "S" + }, + { + "description": "transaction ended rate by WLM service class", + "id": "8D1230", + "listtype": "S" + }, + { + "description": "wait time (ms) by WLM service class", + "id": "8D6EF0", + "listtype": "S" + }, + { + "description": "active time (ms) by WLM workload", + "id": "8D5E40", + "listtype": "W" + }, + { + "description": "execution velocity by WLM workload", + "id": "8D0F80", + "listtype": "W" + }, + { + "description": "queue time (ms) by WLM workload", + "id": "8D5EA0", + "listtype": "W" + }, + { + "description": "transaction ended rate by WLM workload", + "id": "8D1250", + "listtype": "W" + }, + { + "description": "wait time (ms) by WLM workload", + "id": "8D6F10", + "listtype": "W" + }, + { + "description": "capacity actual (# CPs) by WLM resource group", + "id": "8D6E30", + "listtype": "7" + }, + { + "description": "capacity actual (MSU) by WLM resource group", + "id": "8D6E50", + "listtype": "7" + }, + { + "description": "capacity actual (SU/sec) by WLM resource group", + "id": "8D6E70", + "listtype": "7" + } + ] + }, + { + "metric": [ + { + "description": "active time (ms)", + "id": "8D5DF0", + "listtype": " " + }, + { + "description": "execution velocity", + "id": "8D0EF0", + "listtype": " " + }, + { + "description": "performance index", + "id": "8D6E90", + "listtype": " " + }, + { + "description": "queue time (ms)", + "id": "8D5E50", + "listtype": " " + }, + { + "description": "transaction ended rate", + "id": "8D1200", + "listtype": " " + }, + { + "description": "wait time (ms)", + "id": "8D6EC0", + "listtype": " " + } + ] + }, + { + "metric": [ + { + "description": "active time (ms)", + "id": "8D5DF0", + "listtype": " " + }, + { + "description": "execution velocity", + "id": "8D0EF0", + "listtype": " " + }, + { + "description": "queue time (ms)", + "id": "8D5E50", + "listtype": " " + }, + { + "description": "transaction ended rate", + "id": "8D1200", + "listtype": " " + }, + { + "description": "wait time (ms)", + "id": "8D6EC0", + "listtype": " " + }, + { + "description": "active time (ms) by WLM report class period", + "id": "8D5E10", + "listtype": "K" + }, + { + "description": "execution velocity by WLM report class period", + "id": "8D3080", + "listtype": "K" + }, + { + "description": "performance index by WLM report class period", + "id": "8D6EA0", + "listtype": "K" + }, + { + "description": "queue time (ms) by WLM report class period", + "id": "8D5E70", + "listtype": "K" + }, + { + "description": "transaction ended rate by WLM report class period", + "id": "8D3230", + "listtype": "K" + }, + { + "description": "wait time (ms) by WLM report class period", + "id": "8D6EE0", + "listtype": "K" + } + ] + }, + { + "metric": [ + { + "description": "capacity actual (# CPs)", + "id": "8D6E20", + "listtype": " " + }, + { + "description": "capacity actual (MSU)", + "id": "8D6E40", + "listtype": " " + }, + { + "description": "capacity actual (SU/sec)", + "id": "8D6E60", + "listtype": " " + } + ] + }, + { + "metric": [ + { + "description": "active time (ms)", + "id": "8D5DF0", + "listtype": " " + }, + { + "description": "execution velocity", + "id": "8D0EF0", + "listtype": " " + }, + { + "description": "percentile achieving response time goal", + "id": "8D0FE0", + "listtype": " " + }, + { + "description": "performance index", + "id": "8D1000", + "listtype": " " + }, + { + "description": "queue time (ms)", + "id": "8D5E50", + "listtype": " " + }, + { + "description": "response time (ms)", + "id": "8D5EC0", + "listtype": " " + }, + { + "description": "transaction ended rate", + "id": "8D1200", + "listtype": " " + }, + { + "description": "wait time (ms)", + "id": "8D6EC0", + "listtype": " " + } + ] + }, + { + "metric": [ + { + "description": "active time (ms)", + "id": "8D5DF0", + "listtype": " " + }, + { + "description": "execution velocity", + "id": "8D0EF0", + "listtype": " " + }, + { + "description": "percentile achieving response time goal", + "id": "8D0FE0", + "listtype": " " + }, + { + "description": "performance index", + "id": "8D1000", + "listtype": " " + }, + { + "description": "queue time (ms)", + "id": "8D5E50", + "listtype": " " + }, + { + "description": "response time (ms)", + "id": "8D5EC0", + "listtype": " " + }, + { + "description": "transaction ended rate", + "id": "8D1200", + "listtype": " " + }, + { + "description": "wait time (ms)", + "id": "8D6EC0", + "listtype": " " + }, + { + "description": "active time (ms) by WLM service class period", + "id": "8D5E30", + "listtype": "P" + }, + { + "description": "execution velocity by WLM service class period", + "id": "8D0F60", + "listtype": "P" + }, + { + "description": "percentile achieving response time goal by WLM service class period", + "id": "8D0FF0", + "listtype": "P" + }, + { + "description": "performance index by WLM service class period", + "id": "8D1020", + "listtype": "P" + }, + { + "description": "queue time (ms) by WLM service class period", + "id": "8D5E90", + "listtype": "P" + }, + { + "description": "response time (ms) by WLM service class period", + "id": "8D5F40", + "listtype": "P" + }, + { + "description": "transaction ended rate by WLM service class period", + "id": "8D1240", + "listtype": "P" + }, + { + "description": "wait time (ms) by WLM service class period", + "id": "8D6F00", + "listtype": "P" + } + ] + }, + { + "metric": [ + { + "description": "active time (ms)", + "id": "8D5DF0", + "listtype": " " + }, + { + "description": "execution velocity", + "id": "8D0EF0", + "listtype": " " + }, + { + "description": "queue time (ms)", + "id": "8D5E50", + "listtype": " " + }, + { + "description": "transaction ended rate", + "id": "8D1200", + "listtype": " " + }, + { + "description": "wait time (ms)", + "id": "8D6EC0", + "listtype": " " + }, + { + "description": "active time (ms) by WLM service class period", + "id": "8D5E30", + "listtype": "P" + }, + { + "description": "execution velocity by WLM service class period", + "id": "8D0F60", + "listtype": "P" + }, + { + "description": "percentile achieving response time goal by WLM service class period", + "id": "8D0FF0", + "listtype": "P" + }, + { + "description": "performance index by WLM service class period", + "id": "8D1020", + "listtype": "P" + }, + { + "description": "queue time (ms) by WLM service class period", + "id": "8D5E90", + "listtype": "P" + }, + { + "description": "response time (ms) by WLM service class period", + "id": "8D5F40", + "listtype": "P" + }, + { + "description": "transaction ended rate by WLM service class period", + "id": "8D1240", + "listtype": "P" + }, + { + "description": "wait time (ms) by WLM service class period", + "id": "8D6F00", + "listtype": "P" + }, + { + "description": "active time (ms) by WLM service class", + "id": "8D5E20", + "listtype": "S" + }, + { + "description": "execution velocity by WLM service class", + "id": "8D0F50", + "listtype": "S" + }, + { + "description": "percentile achieving response time goal by WLM service class", + "id": "8D6E80", + "listtype": "S" + }, + { + "description": "performance index by WLM service class", + "id": "8D6EB0", + "listtype": "S" + }, + { + "description": "queue time (ms) by WLM service class", + "id": "8D5E80", + "listtype": "S" + }, + { + "description": "response time (ms) by WLM service class", + "id": "8D5F20", + "listtype": "S" + }, + { + "description": "transaction ended rate by WLM service class", + "id": "8D1230", + "listtype": "S" + }, + { + "description": "wait time (ms) by WLM service class", + "id": "8D6EF0", + "listtype": "S" + } + ] + }, + { + "metric": [ + { + "description": "% delay", + "id": "8D0150", + "listtype": " " + }, + { + "description": "% delay by job", + "id": "8D01F0", + "listtype": "J" + }, + { + "description": "% delay by WLM report class period", + "id": "8D2950", + "listtype": "K" + }, + { + "description": "% delay by WLM service class period", + "id": "8D1810", + "listtype": "P" + }, + { + "description": "% delay by WLM report class", + "id": "8D16D0", + "listtype": "R" + }, + { + "description": "% delay by WLM service class", + "id": "8D1770", + "listtype": "S" + }, + { + "description": "% delay by WLM workload", + "id": "8D18B0", + "listtype": "W" + } + ] + }, + { + "metric": [ + { + "description": "zFS % avg response time lock", + "id": "8D53A0", + "listtype": " " + }, + { + "description": "zFS % avg response time sleep", + "id": "8D53C0", + "listtype": " " + }, + { + "description": "zFS % avg response time I/O", + "id": "8D53E0", + "listtype": " " + }, + { + "description": "zFS kernel local request rate", + "id": "8D5400", + "listtype": " " + }, + { + "description": "zFS kernel local response time", + "id": "8D5420", + "listtype": " " + }, + { + "description": "zFS kernel local XCF rate", + "id": "8D5440", + "listtype": " " + }, + { + "description": "zFS kernel remote request rate", + "id": "8D5460", + "listtype": " " + }, + { + "description": "zFS kernel remote response time", + "id": "8D5480", + "listtype": " " + }, + { + "description": "zFS kernel remote XCF rate", + "id": "8D54A0", + "listtype": " " + }, + { + "description": "zFS metadata cache % hit", + "id": "8D54C0", + "listtype": " " + }, + { + "description": "zFS metadata cache # partial writes", + "id": "8D54E0", + "listtype": " " + }, + { + "description": "zFS metadata cache # requests", + "id": "8D5500", + "listtype": " " + }, + { + "description": "zFS metadata cache # updates", + "id": "8D5520", + "listtype": " " + }, + { + "description": "zFS metadata cache # 8K buffers", + "id": "8D5540", + "listtype": " " + }, + { + "description": "zFS metadata cache request rate", + "id": "8D5560", + "listtype": " " + }, + { + "description": "zFS metadata cache size", + "id": "8D5580", + "listtype": " " + }, + { + "description": "zFS user cache % delay", + "id": "8D55A0", + "listtype": " " + }, + { + "description": "zFS user cache % delayed reads", + "id": "8D55C0", + "listtype": " " + }, + { + "description": "zFS user cache % delayed writes", + "id": "8D55E0", + "listtype": " " + }, + { + "description": "zFS user cache % hit", + "id": "8D5600", + "listtype": " " + }, + { + "description": "zFS user cache % read", + "id": "8D5620", + "listtype": " " + }, + { + "description": "zFS user cache # allocated segments", + "id": "8D5640", + "listtype": " " + }, + { + "description": "zFS user cache # free pages", + "id": "8D5660", + "listtype": " " + }, + { + "description": "zFS user cache # fsynchs", + "id": "8D5680", + "listtype": " " + }, + { + "description": "zFS user cache # page reclaim writes", + "id": "8D56A0", + "listtype": " " + }, + { + "description": "zFS user cache # pages", + "id": "8D56C0", + "listtype": " " + }, + { + "description": "zFS user cache read rate", + "id": "8D56E0", + "listtype": " " + }, + { + "description": "zFS user cache read request % hit", + "id": "8D5700", + "listtype": " " + }, + { + "description": "zFS user cache read-ahead (async) rate", + "id": "8D5720", + "listtype": " " + }, + { + "description": "zFS user cache request rate", + "id": "8D5740", + "listtype": " " + }, + { + "description": "zFS user cache scheduled write rate", + "id": "8D5760", + "listtype": " " + }, + { + "description": "zFS user cache total size", + "id": "8D5780", + "listtype": " " + }, + { + "description": "zFS user cache write rate", + "id": "8D57A0", + "listtype": " " + }, + { + "description": "zFS user cache write request % hit", + "id": "8D57C0", + "listtype": " " + }, + { + "description": "zFS vnode cache % hit", + "id": "8D57E0", + "listtype": " " + }, + { + "description": "zFS vnode cache # allocated vnodes", + "id": "8D5800", + "listtype": " " + }, + { + "description": "zFS vnode cache # extended vnodes", + "id": "8D5820", + "listtype": " " + }, + { + "description": "zFS vnode cache # open vnodes", + "id": "8D5840", + "listtype": " " + }, + { + "description": "zFS vnode cache # requests", + "id": "8D5860", + "listtype": " " + }, + { + "description": "zFS vnode cache # requests for allocs", + "id": "8D5880", + "listtype": " " + }, + { + "description": "zFS vnode cache # requests for deletes", + "id": "8D58A0", + "listtype": " " + }, + { + "description": "zFS vnode cache # USS held vnodes", + "id": "8D58C0", + "listtype": " " + }, + { + "description": "zFS vnode cache extended vnode size", + "id": "8D58E0", + "listtype": " " + }, + { + "description": "zFS vnode cache request rate", + "id": "8D5900", + "listtype": " " + }, + { + "description": "zFS vnode cache size", + "id": "8D5920", + "listtype": " " + }, + { + "description": "zFS vnode cache vnode structure size", + "id": "8D5940", + "listtype": " " + }, + { + "description": "% read (in I/O rate) by aggregate", + "id": "8D5000", + "listtype": "G" + }, + { + "description": "% space used by aggregate", + "id": "8D5030", + "listtype": "G" + }, + { + "description": "# cancelled operations by aggregate", + "id": "8D5060", + "listtype": "G" + }, + { + "description": "# disk I/O errors by aggregate", + "id": "8D5090", + "listtype": "G" + }, + { + "description": "# open objects by aggregate", + "id": "8D50C0", + "listtype": "G" + }, + { + "description": "# tokens by aggregate", + "id": "8D50F0", + "listtype": "G" + }, + { + "description": "# vnodes by aggregate", + "id": "8D5120", + "listtype": "G" + }, + { + "description": "# ENOSPC errors by aggregate", + "id": "8D5150", + "listtype": "G" + }, + { + "description": "# USS held vnodes by aggregate", + "id": "8D5180", + "listtype": "G" + }, + { + "description": "# XCF communication failures by aggregate", + "id": "8D51B0", + "listtype": "G" + }, + { + "description": "# 4K pages in user cache by aggregate", + "id": "8D51E0", + "listtype": "G" + }, + { + "description": "# 8K pages in metadata cache by aggregate", + "id": "8D5210", + "listtype": "G" + }, + { + "description": "aggregate read rate by aggregate", + "id": "8D5240", + "listtype": "G" + }, + { + "description": "aggregate write rate by aggregate", + "id": "8D5270", + "listtype": "G" + }, + { + "description": "application read rate by aggregate", + "id": "8D52A0", + "listtype": "G" + }, + { + "description": "application read response time by aggregate", + "id": "8D52D0", + "listtype": "G" + }, + { + "description": "application write rate by aggregate", + "id": "8D5300", + "listtype": "G" + }, + { + "description": "application write response time by aggregate", + "id": "8D5330", + "listtype": "G" + }, + { + "description": "maximum size by aggregate", + "id": "8D5360", + "listtype": "G" + }, + { + "description": "response time (read + write) by aggregate", + "id": "8D5390", + "listtype": "G" + }, + { + "description": "I/O rate (read + write) by aggregate", + "id": "8D5980", + "listtype": "G" + }, + { + "description": "XCF rate (read + write) by aggregate", + "id": "8D59B0", + "listtype": "G" + }, + { + "description": "XCF read rate by aggregate", + "id": "8D59E0", + "listtype": "G" + }, + { + "description": "XCF read response time by aggregate", + "id": "8D5A10", + "listtype": "G" + }, + { + "description": "XCF write rate by aggregate", + "id": "8D5A40", + "listtype": "G" + }, + { + "description": "XCF write response time by aggregate", + "id": "8D5A70", + "listtype": "G" + } + ] + } + ] +} From 608b92866bb7b50c5fd2d0e397742cc2906131fe Mon Sep 17 00:00:00 2001 From: dprizentsov Date: Tue, 10 Feb 2026 16:49:44 +0100 Subject: [PATCH 17/26] PM dashboards import one file at a time Signed-off-by: dprizentsov --- grafana/rmf-app/src/components/Root/Root.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grafana/rmf-app/src/components/Root/Root.tsx b/grafana/rmf-app/src/components/Root/Root.tsx index 2af990d5..9785a2c9 100644 --- a/grafana/rmf-app/src/components/Root/Root.tsx +++ b/grafana/rmf-app/src/components/Root/Root.tsx @@ -509,7 +509,7 @@ export class Root extends PureComponent { - { + { const nameUid = await this.prepareDatasources(result); const dashboard = parsePmImportFileToDashboard(result, nameUid); await this.importDashboard(PM_FOLDER_UID, OperCode.Install, [dashboard]); From ed37565a59acf4114ad01c7b16a4a99860a447a8 Mon Sep 17 00:00:00 2001 From: dprizentsov Date: Wed, 25 Feb 2026 16:23:18 +0100 Subject: [PATCH 18/26] update @grafana/* versions Signed-off-by: dprizentsov --- grafana/rmf-app/package.json | 8 +- grafana/rmf-app/yarn.lock | 548 +++++++++++++++++++---------------- 2 files changed, 299 insertions(+), 257 deletions(-) diff --git a/grafana/rmf-app/package.json b/grafana/rmf-app/package.json index 397c391a..4ac1a393 100644 --- a/grafana/rmf-app/package.json +++ b/grafana/rmf-app/package.json @@ -33,7 +33,7 @@ "@eslint/js": "^9.30.1", "@eslint/json": "^0.12.0", "@eslint/markdown": "^6.6.0", - "@grafana/e2e-selectors": "*", + "@grafana/e2e-selectors": "^12.4.0", "@grafana/eslint-config": "^8.1.0", "@grafana/tsconfig": "^2.0.0", "@playwright/test": "^1.56.1", @@ -88,9 +88,9 @@ "node": ">=22" }, "dependencies": { - "@grafana/data": "^12.3.1", - "@grafana/runtime": "^12.3.1", - "@grafana/ui": "^12.3.1", + "@grafana/data": "^12.4.0", + "@grafana/runtime": "^12.4.0", + "@grafana/ui": "^12.4.0", "antlr4": "^4.13.2", "react": "^18.0.0", "react-dom": "^18.0.0" diff --git a/grafana/rmf-app/yarn.lock b/grafana/rmf-app/yarn.lock index 3fbae3e3..3ca79852 100644 --- a/grafana/rmf-app/yarn.lock +++ b/grafana/rmf-app/yarn.lock @@ -358,7 +358,7 @@ __metadata: languageName: node linkType: hard -"@babel/runtime@npm:^7.0.0, @babel/runtime@npm:^7.1.2, @babel/runtime@npm:^7.10.1, @babel/runtime@npm:^7.11.1, @babel/runtime@npm:^7.11.2, @babel/runtime@npm:^7.12.0, @babel/runtime@npm:^7.12.13, @babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.18.0, @babel/runtime@npm:^7.18.3, @babel/runtime@npm:^7.20.0, @babel/runtime@npm:^7.20.7, @babel/runtime@npm:^7.23.2, @babel/runtime@npm:^7.23.9, @babel/runtime@npm:^7.24.5, @babel/runtime@npm:^7.24.7, @babel/runtime@npm:^7.25.7, @babel/runtime@npm:^7.26.7, @babel/runtime@npm:^7.27.6, @babel/runtime@npm:^7.5.5, @babel/runtime@npm:^7.7.6, @babel/runtime@npm:^7.8.7": +"@babel/runtime@npm:^7.0.0, @babel/runtime@npm:^7.1.2, @babel/runtime@npm:^7.11.1, @babel/runtime@npm:^7.12.0, @babel/runtime@npm:^7.12.13, @babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.18.3, @babel/runtime@npm:^7.20.0, @babel/runtime@npm:^7.20.7, @babel/runtime@npm:^7.23.2, @babel/runtime@npm:^7.24.5, @babel/runtime@npm:^7.26.7, @babel/runtime@npm:^7.27.6, @babel/runtime@npm:^7.5.5, @babel/runtime@npm:^7.7.6, @babel/runtime@npm:^7.8.7": version: 7.28.4 resolution: "@babel/runtime@npm:7.28.4" checksum: 10c0/792ce7af9750fb9b93879cc9d1db175701c4689da890e6ced242ea0207c9da411ccf16dc04e689cc01158b28d7898c40d75598f4559109f761c12ce01e959bf7 @@ -962,29 +962,30 @@ __metadata: languageName: node linkType: hard -"@grafana/data@npm:12.3.1, @grafana/data@npm:^12.3.1": - version: 12.3.1 - resolution: "@grafana/data@npm:12.3.1" +"@grafana/data@npm:12.4.0, @grafana/data@npm:^12.4.0": + version: 12.4.0 + resolution: "@grafana/data@npm:12.4.0" dependencies: "@braintree/sanitize-url": "npm:7.0.1" - "@grafana/i18n": "npm:12.3.1" - "@grafana/schema": "npm:12.3.1" + "@grafana/i18n": "npm:12.4.0" + "@grafana/schema": "npm:12.4.0" "@leeoniya/ufuzzy": "npm:1.0.19" "@types/d3-interpolate": "npm:^3.0.0" "@types/string-hash": "npm:1.1.3" "@types/systemjs": "npm:6.15.3" d3-interpolate: "npm:3.0.1" + d3-scale-chromatic: "npm:3.1.0" date-fns: "npm:4.1.0" dompurify: "npm:3.3.0" eventemitter3: "npm:5.0.1" fast_array_intersect: "npm:1.1.0" history: "npm:4.10.1" - lodash: "npm:4.17.21" + lodash: "npm:^4.17.23" marked: "npm:16.3.0" - marked-mangle: "npm:1.1.11" + marked-mangle: "npm:1.1.12" moment: "npm:2.30.1" moment-timezone: "npm:0.5.47" - ol: "npm:10.6.1" + ol: "npm:10.7.0" papaparse: "npm:5.5.3" react-use: "npm:17.6.0" rxjs: "npm:7.8.2" @@ -993,32 +994,22 @@ __metadata: tslib: "npm:2.8.1" uplot: "npm:1.6.32" xss: "npm:^1.0.14" + zod: "npm:^4.3.0" peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 - checksum: 10c0/ba1d8b663b143c3ea7150757251d66eb7f5aecea90b534189156bd702b85954537a49323db6435e6834f84ae4854176095950157a799dbcaca0f0f62d5e45822 + checksum: 10c0/0672aedd6835b651a09c65e1d1371737b30985c61dd49da0e6543e6a8609ea82e8e7b0e6d8e5321fb491580f63e1a2d42166aaf9204924912f96cded91f43821 languageName: node linkType: hard -"@grafana/e2e-selectors@npm:*": - version: 12.2.1 - resolution: "@grafana/e2e-selectors@npm:12.2.1" +"@grafana/e2e-selectors@npm:12.4.0, @grafana/e2e-selectors@npm:^12.4.0": + version: 12.4.0 + resolution: "@grafana/e2e-selectors@npm:12.4.0" dependencies: semver: "npm:^7.7.0" tslib: "npm:2.8.1" typescript: "npm:5.9.2" - checksum: 10c0/1204d5378d325d80615c8281f0da70bda8fe682898a296f9a4c8901f5950df7b28372ad6c00dfdd0be219cd9bc1f3c08e888a81e8cb9d6574a69f9d4c934886a - languageName: node - linkType: hard - -"@grafana/e2e-selectors@npm:12.3.1": - version: 12.3.1 - resolution: "@grafana/e2e-selectors@npm:12.3.1" - dependencies: - semver: "npm:^7.7.0" - tslib: "npm:2.8.1" - typescript: "npm:5.9.2" - checksum: 10c0/b0566d933c5a352234bae4b161fd001d98f33dd513610b355dedf052994eb9e2584205d7be5af4b45c77d5c0a6eeac042606daf2088c52e206fb578eaec1535b + checksum: 10c0/5adfdd3606adfca56cd545c4cb7485524d813e968ebce91100ce08d8730c9afd9851d5a44f193d06cba2603363b0fc54545165df3750d4c0824e1f916e79ebf6 languageName: node linkType: hard @@ -1060,9 +1051,9 @@ __metadata: languageName: node linkType: hard -"@grafana/i18n@npm:12.3.1": - version: 12.3.1 - resolution: "@grafana/i18n@npm:12.3.1" +"@grafana/i18n@npm:12.4.0": + version: 12.4.0 + resolution: "@grafana/i18n@npm:12.4.0" dependencies: "@formatjs/intl-durationformat": "npm:^0.7.0" "@typescript-eslint/utils": "npm:^8.33.1" @@ -1074,25 +1065,25 @@ __metadata: react-i18next: "npm:^15.0.0" peerDependencies: react: ">=18" - checksum: 10c0/41eaee998f56a171a262029a1287954d9e8e6a502e8e57e058e6dbdf5e140954a9250f7132a92bbb4f702563d8518914db1c9ccd471196316e26164ecc6bbcc5 + checksum: 10c0/b7f320e2f151743442fc91c0d71ab5fa9cdefafa25283b24531a80c713fa968d6bbb1906cb3723325ce537f3ae05f0ebbe09f46b07a77c6328f83cddb1f75459 languageName: node linkType: hard -"@grafana/runtime@npm:^12.3.1": - version: 12.3.1 - resolution: "@grafana/runtime@npm:12.3.1" +"@grafana/runtime@npm:^12.4.0": + version: 12.4.0 + resolution: "@grafana/runtime@npm:12.4.0" dependencies: - "@grafana/data": "npm:12.3.1" - "@grafana/e2e-selectors": "npm:12.3.1" + "@grafana/data": "npm:12.4.0" + "@grafana/e2e-selectors": "npm:12.4.0" "@grafana/faro-web-sdk": "npm:^1.13.2" - "@grafana/schema": "npm:12.3.1" - "@grafana/ui": "npm:12.3.1" + "@grafana/schema": "npm:12.4.0" + "@grafana/ui": "npm:12.4.0" "@openfeature/core": "npm:^1.9.0" "@openfeature/ofrep-web-provider": "npm:^0.3.3" - "@openfeature/web-sdk": "npm:^1.6.1" + "@openfeature/react-sdk": "npm:^1.2.0" "@types/systemjs": "npm:6.15.3" history: "npm:4.10.1" - lodash: "npm:4.17.21" + lodash: "npm:^4.17.23" react-loading-skeleton: "npm:3.5.0" react-use: "npm:17.6.0" rxjs: "npm:7.8.2" @@ -1100,16 +1091,16 @@ __metadata: peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 - checksum: 10c0/17c1fa01fa850e375cd29433e4fdc71fd4834175f8f768a5b52383e25f24ac16caa84d098aa0cd4f589ab34dcd050340b270af06204da61a06d3989e55987ced + checksum: 10c0/1e74b0e6e821e16dcd86631f1eb93243b5ed18ef4bba38af8cead334f92cfb4c909503a4a71ea3b02dcaab8e5b0074af47044e4c9f19fb5af75fa5b195e05c94 languageName: node linkType: hard -"@grafana/schema@npm:12.3.1": - version: 12.3.1 - resolution: "@grafana/schema@npm:12.3.1" +"@grafana/schema@npm:12.4.0": + version: 12.4.0 + resolution: "@grafana/schema@npm:12.4.0" dependencies: tslib: "npm:2.8.1" - checksum: 10c0/81d081b4b8879352d25240353d25700ff161c898d3611e22b024ca2c02204ebdced28e3d7ebda3c866bfd695f2164424f29aa4977309cec8595c3f230f9b8453 + checksum: 10c0/b8b300b9c80831766e388c75b1c49db8dd818653a157e9aaa3a90d3d22d7dcfeff9025f14b887e34bd1c598251a9902a4e73a28886f91ac4a171624f46720e0f languageName: node linkType: hard @@ -1120,22 +1111,27 @@ __metadata: languageName: node linkType: hard -"@grafana/ui@npm:12.3.1, @grafana/ui@npm:^12.3.1": - version: 12.3.1 - resolution: "@grafana/ui@npm:12.3.1" +"@grafana/ui@npm:12.4.0, @grafana/ui@npm:^12.4.0": + version: 12.4.0 + resolution: "@grafana/ui@npm:12.4.0" dependencies: "@emotion/css": "npm:11.13.5" "@emotion/react": "npm:11.14.0" "@emotion/serialize": "npm:1.3.3" "@floating-ui/react": "npm:0.27.16" - "@grafana/data": "npm:12.3.1" - "@grafana/e2e-selectors": "npm:12.3.1" + "@grafana/data": "npm:12.4.0" + "@grafana/e2e-selectors": "npm:12.4.0" "@grafana/faro-web-sdk": "npm:^1.13.2" - "@grafana/i18n": "npm:12.3.1" - "@grafana/schema": "npm:12.3.1" + "@grafana/i18n": "npm:12.4.0" + "@grafana/schema": "npm:12.4.0" "@hello-pangea/dnd": "npm:18.0.1" "@monaco-editor/react": "npm:4.7.0" "@popperjs/core": "npm:2.11.8" + "@rc-component/cascader": "npm:1.9.0" + "@rc-component/drawer": "npm:1.3.0" + "@rc-component/picker": "npm:1.7.1" + "@rc-component/slider": "npm:1.0.1" + "@rc-component/tooltip": "npm:1.4.0" "@react-aria/dialog": "npm:3.5.31" "@react-aria/focus": "npm:3.21.2" "@react-aria/overlays": "npm:3.30.0" @@ -1156,17 +1152,12 @@ __metadata: immutable: "npm:5.1.4" is-hotkey: "npm:0.2.0" jquery: "npm:3.7.1" - lodash: "npm:4.17.21" + lodash: "npm:^4.17.23" micro-memoize: "npm:^4.1.2" moment: "npm:2.30.1" monaco-editor: "npm:0.34.1" - ol: "npm:10.6.1" + ol: "npm:10.7.0" prismjs: "npm:1.30.0" - rc-cascader: "npm:3.34.0" - rc-drawer: "npm:7.3.0" - rc-picker: "npm:4.11.3" - rc-slider: "npm:11.1.9" - rc-tooltip: "npm:6.4.0" react-calendar: "npm:^6.0.0" react-colorful: "npm:5.6.1" react-custom-scrollbars-2: "npm:4.5.0" @@ -1196,7 +1187,7 @@ __metadata: peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 - checksum: 10c0/424c5a0b0aa45a09522f837c0d645ca757f833a37210ddc6478680edb7b8ac399159085709deb497eb959b6e2396a181bda48e412e5d60a8d05664d8336538fe + checksum: 10c0/1b000daf16fb63f5c1e2d162232311c4f2dbd91c8f7e22af849e6c8e9d64f365265a38fd78b563631e3e34785bb93d53be08f0679148d095d3b3f6fbedb917ad languageName: node linkType: hard @@ -1858,12 +1849,13 @@ __metadata: languageName: node linkType: hard -"@openfeature/web-sdk@npm:^1.6.1": - version: 1.7.2 - resolution: "@openfeature/web-sdk@npm:1.7.2" +"@openfeature/react-sdk@npm:^1.2.0": + version: 1.2.1 + resolution: "@openfeature/react-sdk@npm:1.2.1" peerDependencies: - "@openfeature/core": ^1.9.0 - checksum: 10c0/dce511a87c035bba3305d81aa6a3e80638f6623319d16065f32ce8047adef5170df14658cba531074665f7c4764953b8607c733a9f94804ff7feb8ff175235fe + "@openfeature/web-sdk": ^1.5.0 + react: ">=16.8.0" + checksum: 10c0/6a0de5240bc3dd4140cfe8dd8b96a4f34ea11dde0b4eed8d85c921ff5461b6c7c54048740e791f001453a1b19c608aa2ea4540abbfd4cffd2f80975f1b3d06eb languageName: node linkType: hard @@ -2224,34 +2216,217 @@ __metadata: languageName: node linkType: hard -"@rc-component/portal@npm:^1.1.0, @rc-component/portal@npm:^1.1.1": - version: 1.1.2 - resolution: "@rc-component/portal@npm:1.1.2" +"@rc-component/cascader@npm:1.9.0": + version: 1.9.0 + resolution: "@rc-component/cascader@npm:1.9.0" + dependencies: + "@rc-component/select": "npm:~1.3.0" + "@rc-component/tree": "npm:~1.1.0" + "@rc-component/util": "npm:^1.4.0" + clsx: "npm:^2.1.1" + peerDependencies: + react: ">=18.0.0" + react-dom: ">=18.0.0" + checksum: 10c0/7e590d3f0174a45b81d744ce96392f4bf7c04c8feab593a78c7b14180ce09bb3f491b5f58c9426abdefd916feb0a5687a2d0d07fbf86b4ddbf31c0cbda1ea7d2 + languageName: node + linkType: hard + +"@rc-component/drawer@npm:1.3.0": + version: 1.3.0 + resolution: "@rc-component/drawer@npm:1.3.0" + dependencies: + "@rc-component/motion": "npm:^1.1.4" + "@rc-component/portal": "npm:^2.0.0" + "@rc-component/util": "npm:^1.2.1" + clsx: "npm:^2.1.1" + peerDependencies: + react: ">=18.0.0" + react-dom: ">=18.0.0" + checksum: 10c0/539856b0b0d5143c42f2401c7ad1bb8617a73f0ddf99a383fc72192d1c4a74edc3dd206cbeb48f942ddadeee80e4ec9994235304072b54e7744b03acbeb1159e + languageName: node + linkType: hard + +"@rc-component/motion@npm:^1.0.0, @rc-component/motion@npm:^1.1.4": + version: 1.3.1 + resolution: "@rc-component/motion@npm:1.3.1" dependencies: - "@babel/runtime": "npm:^7.18.0" - classnames: "npm:^2.3.2" - rc-util: "npm:^5.24.4" + "@rc-component/util": "npm:^1.2.0" + clsx: "npm:^2.1.1" peerDependencies: react: ">=16.9.0" react-dom: ">=16.9.0" - checksum: 10c0/3c0297356635d47f364be79de02bb16009f06b1ce82124c3e63da9a71b8e7d3ea2c147e4703ead9cae0f662435a21e9feb30d2edf7197108bc3dbf969f3ca51f + checksum: 10c0/e51be518677e95d57b410b283cc02c36a0809ff9d482b1b40183e29c4a68e354961a49d3893cfc83e8088ab53fbc5f677d51808baf1595af44a5045d1d4bf7fb languageName: node linkType: hard -"@rc-component/trigger@npm:^2.0.0, @rc-component/trigger@npm:^2.1.1": - version: 2.3.0 - resolution: "@rc-component/trigger@npm:2.3.0" +"@rc-component/overflow@npm:^1.0.0": + version: 1.0.0 + resolution: "@rc-component/overflow@npm:1.0.0" dependencies: - "@babel/runtime": "npm:^7.23.2" - "@rc-component/portal": "npm:^1.1.0" - classnames: "npm:^2.3.2" - rc-motion: "npm:^2.0.0" - rc-resize-observer: "npm:^1.3.1" - rc-util: "npm:^5.44.0" + "@babel/runtime": "npm:^7.11.1" + "@rc-component/resize-observer": "npm:^1.0.1" + "@rc-component/util": "npm:^1.4.0" + clsx: "npm:^2.1.1" + peerDependencies: + react: ">=16.9.0" + react-dom: ">=16.9.0" + checksum: 10c0/33aafd6a44db18ac7507af0d3bdb82c7c3fefcfd292acdf6560d52e1d76557d23bcf2dbd32303c32bf02742d0b9acda4c24ff956ef9a5e8aa4ff051eda2ee477 + languageName: node + linkType: hard + +"@rc-component/picker@npm:1.7.1": + version: 1.7.1 + resolution: "@rc-component/picker@npm:1.7.1" + dependencies: + "@rc-component/resize-observer": "npm:^1.0.0" + "@rc-component/trigger": "npm:^3.6.15" + "@rc-component/util": "npm:^1.3.0" + clsx: "npm:^2.1.1" + rc-overflow: "npm:^1.3.2" peerDependencies: + date-fns: ">= 2.x" + dayjs: ">= 1.x" + luxon: ">= 3.x" + moment: ">= 2.x" react: ">=16.9.0" react-dom: ">=16.9.0" - checksum: 10c0/84a0f3da8beca249ac86d2870ef9e1603ed26ff6b869a545e6d5c3793f23413cf6a11fafe001406a86c49917d31ec105776402dba834f1b79db98305ff8bd2f4 + peerDependenciesMeta: + date-fns: + optional: true + dayjs: + optional: true + luxon: + optional: true + moment: + optional: true + checksum: 10c0/8cfa6fefdaa896b45d4e9417222ee32db609d7f2165a5da182f0f952a1f2aae9bf1c414ea06ed17fd4e3feca9101cf7ccbadbba566edbb4309d316d07d8db332 + languageName: node + linkType: hard + +"@rc-component/portal@npm:^2.0.0, @rc-component/portal@npm:^2.2.0": + version: 2.2.0 + resolution: "@rc-component/portal@npm:2.2.0" + dependencies: + "@rc-component/util": "npm:^1.2.1" + clsx: "npm:^2.1.1" + peerDependencies: + react: ">=18.0.0" + react-dom: ">=18.0.0" + checksum: 10c0/5b6441536b4b6a2f7390b8f4ea101fa78ef483564a7ac533c146dac896cbdd27665be6314c92366d0750720fe163bf9fc37db789ef4c879772cfb965fd4f6901 + languageName: node + linkType: hard + +"@rc-component/resize-observer@npm:^1.0.0, @rc-component/resize-observer@npm:^1.0.1, @rc-component/resize-observer@npm:^1.1.1": + version: 1.1.1 + resolution: "@rc-component/resize-observer@npm:1.1.1" + dependencies: + "@rc-component/util": "npm:^1.2.0" + peerDependencies: + react: ">=16.9.0" + react-dom: ">=16.9.0" + checksum: 10c0/8b5931475f887497020e4c25f4eff9c4d591274b43e267ea67d361160783b29d3e35654ac79fa4e47be9532cd25186f45a40655ddb5f1412ecbe9c3afb714cd0 + languageName: node + linkType: hard + +"@rc-component/select@npm:~1.3.0": + version: 1.3.6 + resolution: "@rc-component/select@npm:1.3.6" + dependencies: + "@rc-component/overflow": "npm:^1.0.0" + "@rc-component/trigger": "npm:^3.0.0" + "@rc-component/util": "npm:^1.3.0" + "@rc-component/virtual-list": "npm:^1.0.1" + clsx: "npm:^2.1.1" + peerDependencies: + react: "*" + react-dom: "*" + checksum: 10c0/c07102b23e05e8c2d9b53f0a4fd22c4d8395518763579ec2b128d40beed95807e32074a00cf02bd3f18680b55f4ed2cab348845e9191172e04da2e23d26f0cef + languageName: node + linkType: hard + +"@rc-component/slider@npm:1.0.1": + version: 1.0.1 + resolution: "@rc-component/slider@npm:1.0.1" + dependencies: + "@rc-component/util": "npm:^1.3.0" + clsx: "npm:^2.1.1" + peerDependencies: + react: ">=16.9.0" + react-dom: ">=16.9.0" + checksum: 10c0/bec0af4f8ce67de70da132465e66e246c3c7b532ee4c67f166b07d9556372062ce5d624402e8cb337727662b55bec8ca3dd5e095be58be1f5f12e7c7feef2426 + languageName: node + linkType: hard + +"@rc-component/tooltip@npm:1.4.0": + version: 1.4.0 + resolution: "@rc-component/tooltip@npm:1.4.0" + dependencies: + "@rc-component/trigger": "npm:^3.7.1" + "@rc-component/util": "npm:^1.3.0" + clsx: "npm:^2.1.1" + peerDependencies: + react: ">=18.0.0" + react-dom: ">=18.0.0" + checksum: 10c0/219019822fbbec7c1920285fa784df936b0abd54cc66fe1927b90023c750f2fd3693e0ebc75201b469b68c14e4a95a94ed53f3cfb1606b9a165dedbe35e11f88 + languageName: node + linkType: hard + +"@rc-component/tree@npm:~1.1.0": + version: 1.1.0 + resolution: "@rc-component/tree@npm:1.1.0" + dependencies: + "@rc-component/motion": "npm:^1.0.0" + "@rc-component/util": "npm:^1.2.1" + "@rc-component/virtual-list": "npm:^1.0.1" + clsx: "npm:^2.1.1" + peerDependencies: + react: "*" + react-dom: "*" + checksum: 10c0/320ae4adbdecd2cc367561455d63e55d8dbb5f98d60dedec87fb0c8ffe2ede45b7fbfb0670db2812ab244138929550a8982fce2aacaa00641eb5969c14f34af2 + languageName: node + linkType: hard + +"@rc-component/trigger@npm:^3.0.0, @rc-component/trigger@npm:^3.6.15, @rc-component/trigger@npm:^3.7.1": + version: 3.9.0 + resolution: "@rc-component/trigger@npm:3.9.0" + dependencies: + "@rc-component/motion": "npm:^1.1.4" + "@rc-component/portal": "npm:^2.2.0" + "@rc-component/resize-observer": "npm:^1.1.1" + "@rc-component/util": "npm:^1.2.1" + clsx: "npm:^2.1.1" + peerDependencies: + react: ">=18.0.0" + react-dom: ">=18.0.0" + checksum: 10c0/3e7edd6328c2b04b2a81328fbbf3dd11d39b8000b62b9574f0f907db3eff450f96a3a87f46808cbab7aa77b35e1fbf0493bc9cdf920e9c01326cfc068f03c0da + languageName: node + linkType: hard + +"@rc-component/util@npm:^1.2.0, @rc-component/util@npm:^1.2.1, @rc-component/util@npm:^1.3.0, @rc-component/util@npm:^1.4.0": + version: 1.9.0 + resolution: "@rc-component/util@npm:1.9.0" + dependencies: + is-mobile: "npm:^5.0.0" + react-is: "npm:^18.2.0" + peerDependencies: + react: ">=18.0.0" + react-dom: ">=18.0.0" + checksum: 10c0/0c004b82cdd45d624e5da315d4e534b739b04af4d5b070281ed13434d5fa09c40b89d06e8c4b97d262682a0f5dadcd2edfa2467498e0476eb6134bcbc391d4bb + languageName: node + linkType: hard + +"@rc-component/virtual-list@npm:^1.0.1": + version: 1.0.2 + resolution: "@rc-component/virtual-list@npm:1.0.2" + dependencies: + "@babel/runtime": "npm:^7.20.0" + "@rc-component/resize-observer": "npm:^1.0.1" + "@rc-component/util": "npm:^1.4.0" + clsx: "npm:^2.1.1" + peerDependencies: + react: ">=16.9.0" + react-dom: ">=16.9.0" + checksum: 10c0/86aabc4ecd2f6c556def36b690f89fd1fb28a45e03576e999ed1e06a65e9fe11a20094d87356731f25a6b8279b530aaf6c58b27669337e442515ec83153f50fd languageName: node linkType: hard @@ -4530,7 +4705,7 @@ __metadata: languageName: node linkType: hard -"classnames@npm:2.5.1, classnames@npm:2.x, classnames@npm:^2.2.1, classnames@npm:^2.2.5, classnames@npm:^2.2.6, classnames@npm:^2.3.1, classnames@npm:^2.3.2": +"classnames@npm:2.5.1, classnames@npm:^2.2.1": version: 2.5.1 resolution: "classnames@npm:2.5.1" checksum: 10c0/afff4f77e62cea2d79c39962980bf316bacb0d7c49e13a21adaadb9221e1c6b9d3cdb829d8bb1b23c406f4e740507f37e1dcf506f7e3b7113d17c5bab787aa69 @@ -5038,7 +5213,7 @@ __metadata: languageName: node linkType: hard -"d3-scale-chromatic@npm:3": +"d3-scale-chromatic@npm:3, d3-scale-chromatic@npm:3.1.0": version: 3.1.0 resolution: "d3-scale-chromatic@npm:3.1.0" dependencies: @@ -7043,12 +7218,12 @@ __metadata: "@eslint/js": "npm:^9.30.1" "@eslint/json": "npm:^0.12.0" "@eslint/markdown": "npm:^6.6.0" - "@grafana/data": "npm:^12.3.1" - "@grafana/e2e-selectors": "npm:*" + "@grafana/data": "npm:^12.4.0" + "@grafana/e2e-selectors": "npm:^12.4.0" "@grafana/eslint-config": "npm:^8.1.0" - "@grafana/runtime": "npm:^12.3.1" + "@grafana/runtime": "npm:^12.4.0" "@grafana/tsconfig": "npm:^2.0.0" - "@grafana/ui": "npm:^12.3.1" + "@grafana/ui": "npm:^12.4.0" "@playwright/test": "npm:^1.56.1" "@stylistic/eslint-plugin-ts": "npm:*" "@swc/core": "npm:^1.12.11" @@ -7444,6 +7619,13 @@ __metadata: languageName: node linkType: hard +"is-mobile@npm:^5.0.0": + version: 5.0.0 + resolution: "is-mobile@npm:5.0.0" + checksum: 10c0/70b31c3e4489109e02deb9b590e74858aeec7ef775a882d89ec030cb7dbaeb2be1173d7faee495049629e49822d0aba9b20e6653b1e25dd7c9121247cb8829d7 + languageName: node + linkType: hard + "is-negative-zero@npm:^2.0.3": version: 2.0.3 resolution: "is-negative-zero@npm:2.0.3" @@ -8488,13 +8670,20 @@ __metadata: languageName: node linkType: hard -"lodash@npm:4.17.21, lodash@npm:^4.1.1, lodash@npm:^4.17.4": +"lodash@npm:^4.1.1, lodash@npm:^4.17.4": version: 4.17.21 resolution: "lodash@npm:4.17.21" checksum: 10c0/d8cbea072bb08655bb4c989da418994b073a608dffa608b09ac04b43a791b12aeae7cd7ad919aa4c925f33b48490b5cfe6c1f71d827956071dae2e7bb3a6b74c languageName: node linkType: hard +"lodash@npm:^4.17.23": + version: 4.17.23 + resolution: "lodash@npm:4.17.23" + checksum: 10c0/1264a90469f5bb95d4739c43eb6277d15b6d9e186df4ac68c3620443160fc669e2f14c11e7d8b2ccf078b81d06147c01a8ccced9aab9f9f63d50dcf8cace6bf6 + languageName: node + linkType: hard + "long@npm:^5.0.0": version: 5.3.2 resolution: "long@npm:5.3.2" @@ -8603,12 +8792,12 @@ __metadata: languageName: node linkType: hard -"marked-mangle@npm:1.1.11": - version: 1.1.11 - resolution: "marked-mangle@npm:1.1.11" +"marked-mangle@npm:1.1.12": + version: 1.1.12 + resolution: "marked-mangle@npm:1.1.12" peerDependencies: - marked: ">=4 <17" - checksum: 10c0/9b35647ad1306ecf962156ba19eeb88483baa6337cc54ae2ed4b8d483b0df462715eedd07fc2d65d93e3972e64a02034c36e5fa16dd907346e87faacb20505ea + marked: ">=4 <18" + checksum: 10c0/bb51ec9113f8a7a018ecb20359b09ed4c70a91af68f684943f38945d827dfb8aeaaafb5f4bda8820039aadd206b6d56a8e3895189c9fd4f0321a99416c170abe languageName: node linkType: hard @@ -9652,16 +9841,16 @@ __metadata: languageName: node linkType: hard -"ol@npm:10.6.1": - version: 10.6.1 - resolution: "ol@npm:10.6.1" +"ol@npm:10.7.0": + version: 10.7.0 + resolution: "ol@npm:10.7.0" dependencies: "@types/rbush": "npm:4.0.0" earcut: "npm:^3.0.0" geotiff: "npm:^2.1.3" pbf: "npm:4.0.1" rbush: "npm:^4.0.0" - checksum: 10c0/02c79a8e547fa43f1a54d008e6116668de088769bb4891c807ebde6b5d3bc41131026f1bc5c5ea57372a8109fe9f9dd3c37855f126a92374a599af3ff79a3590 + checksum: 10c0/3e1428acb2cf42b2fa4d406e0747f9bc623474a548a63ff895d2e9a27d06f3e64539405d0b3210c63f5bd2bcf5c162d9d2953e58a02f60abff4abd56242bec1b languageName: node linkType: hard @@ -10304,53 +10493,7 @@ __metadata: languageName: node linkType: hard -"rc-cascader@npm:3.34.0": - version: 3.34.0 - resolution: "rc-cascader@npm:3.34.0" - dependencies: - "@babel/runtime": "npm:^7.25.7" - classnames: "npm:^2.3.1" - rc-select: "npm:~14.16.2" - rc-tree: "npm:~5.13.0" - rc-util: "npm:^5.43.0" - peerDependencies: - react: ">=16.9.0" - react-dom: ">=16.9.0" - checksum: 10c0/1fc8c55e0f78ff2be59e2bcd8faa53aafecebbb28f4bb9982ad39e8f9f9620e15d6119797c7890347e46b05c32b43177ece047e81ef04c22a9f041eb0dd53e0a - languageName: node - linkType: hard - -"rc-drawer@npm:7.3.0": - version: 7.3.0 - resolution: "rc-drawer@npm:7.3.0" - dependencies: - "@babel/runtime": "npm:^7.23.9" - "@rc-component/portal": "npm:^1.1.1" - classnames: "npm:^2.2.6" - rc-motion: "npm:^2.6.1" - rc-util: "npm:^5.38.1" - peerDependencies: - react: ">=16.9.0" - react-dom: ">=16.9.0" - checksum: 10c0/e2c3211d6a3790813bf2c1626cebf3fdb3a4c48ab56bee2d208ba07dd0e5058154981563e89e02571d573dd56c2ddc65db33a0cf37c58820ecc4b08785e8d169 - languageName: node - linkType: hard - -"rc-motion@npm:^2.0.0, rc-motion@npm:^2.0.1, rc-motion@npm:^2.6.1": - version: 2.9.5 - resolution: "rc-motion@npm:2.9.5" - dependencies: - "@babel/runtime": "npm:^7.11.1" - classnames: "npm:^2.2.1" - rc-util: "npm:^5.44.0" - peerDependencies: - react: ">=16.9.0" - react-dom: ">=16.9.0" - checksum: 10c0/84b12b2443dc1b929c8a688e8c9834a44cf88897402e9363fcea80b77f2803b2de83b24dac5873a8695304827e02fb3103c74349d0451ed247cb366553f9d88e - languageName: node - linkType: hard - -"rc-overflow@npm:^1.3.1, rc-overflow@npm:^1.3.2": +"rc-overflow@npm:^1.3.2": version: 1.5.0 resolution: "rc-overflow@npm:1.5.0" dependencies: @@ -10365,37 +10508,7 @@ __metadata: languageName: node linkType: hard -"rc-picker@npm:4.11.3": - version: 4.11.3 - resolution: "rc-picker@npm:4.11.3" - dependencies: - "@babel/runtime": "npm:^7.24.7" - "@rc-component/trigger": "npm:^2.0.0" - classnames: "npm:^2.2.1" - rc-overflow: "npm:^1.3.2" - rc-resize-observer: "npm:^1.4.0" - rc-util: "npm:^5.43.0" - peerDependencies: - date-fns: ">= 2.x" - dayjs: ">= 1.x" - luxon: ">= 3.x" - moment: ">= 2.x" - react: ">=16.9.0" - react-dom: ">=16.9.0" - peerDependenciesMeta: - date-fns: - optional: true - dayjs: - optional: true - luxon: - optional: true - moment: - optional: true - checksum: 10c0/5136966ae7f9c0fa9acb9620f3d5e12341a4f2d1369d1c0e12697fbd519be47025a427acd63c8c39ec6b0a88acc5408b8318d197d8bf37f8d2b19d6726e6868d - languageName: node - linkType: hard - -"rc-resize-observer@npm:^1.0.0, rc-resize-observer@npm:^1.3.1, rc-resize-observer@npm:^1.4.0": +"rc-resize-observer@npm:^1.0.0": version: 1.4.3 resolution: "rc-resize-observer@npm:1.4.3" dependencies: @@ -10410,70 +10523,7 @@ __metadata: languageName: node linkType: hard -"rc-select@npm:~14.16.2": - version: 14.16.8 - resolution: "rc-select@npm:14.16.8" - dependencies: - "@babel/runtime": "npm:^7.10.1" - "@rc-component/trigger": "npm:^2.1.1" - classnames: "npm:2.x" - rc-motion: "npm:^2.0.1" - rc-overflow: "npm:^1.3.1" - rc-util: "npm:^5.16.1" - rc-virtual-list: "npm:^3.5.2" - peerDependencies: - react: "*" - react-dom: "*" - checksum: 10c0/45f93e270c4b5e5ffc4b0ba0ce5e5ea72fff591a9a7a19b460b1ead0517d17327af9a4c32ce3c7f92b765724f4dabd1aa7146f5a06db73be91c884fe13c92774 - languageName: node - linkType: hard - -"rc-slider@npm:11.1.9": - version: 11.1.9 - resolution: "rc-slider@npm:11.1.9" - dependencies: - "@babel/runtime": "npm:^7.10.1" - classnames: "npm:^2.2.5" - rc-util: "npm:^5.36.0" - peerDependencies: - react: ">=16.9.0" - react-dom: ">=16.9.0" - checksum: 10c0/193c432e2859ba42b2235cc1949de2d929ba70fa4aa5672eaa5da692797f3fe927f8c0b2a75cc45c6b9f666f204f4ed038ccf904273d6cbc39e112f4a00ddd4a - languageName: node - linkType: hard - -"rc-tooltip@npm:6.4.0": - version: 6.4.0 - resolution: "rc-tooltip@npm:6.4.0" - dependencies: - "@babel/runtime": "npm:^7.11.2" - "@rc-component/trigger": "npm:^2.0.0" - classnames: "npm:^2.3.1" - rc-util: "npm:^5.44.3" - peerDependencies: - react: ">=16.9.0" - react-dom: ">=16.9.0" - checksum: 10c0/49b9c56fc877b38084b4076edb1b61f0272bdd290c6ef161a0e1cf6426488e948c20439cf4ae31e076f3957b894feb326e4a1d7880400de2c29b1d54f736a342 - languageName: node - linkType: hard - -"rc-tree@npm:~5.13.0": - version: 5.13.1 - resolution: "rc-tree@npm:5.13.1" - dependencies: - "@babel/runtime": "npm:^7.10.1" - classnames: "npm:2.x" - rc-motion: "npm:^2.0.1" - rc-util: "npm:^5.16.1" - rc-virtual-list: "npm:^3.5.1" - peerDependencies: - react: "*" - react-dom: "*" - checksum: 10c0/4a27783d319f9e5367e9d123a2f9a6daa0383e705e055abb47f3ff7fa93249c5c26bbb27b7c6602163faefbfe0f3e923eb3a55d1e1f1d09d04b7bdf37942c2d4 - languageName: node - linkType: hard - -"rc-util@npm:^5.16.1, rc-util@npm:^5.24.4, rc-util@npm:^5.36.0, rc-util@npm:^5.37.0, rc-util@npm:^5.38.1, rc-util@npm:^5.43.0, rc-util@npm:^5.44.0, rc-util@npm:^5.44.1, rc-util@npm:^5.44.3": +"rc-util@npm:^5.37.0, rc-util@npm:^5.44.1": version: 5.44.4 resolution: "rc-util@npm:5.44.4" dependencies: @@ -10486,21 +10536,6 @@ __metadata: languageName: node linkType: hard -"rc-virtual-list@npm:^3.5.1, rc-virtual-list@npm:^3.5.2": - version: 3.19.2 - resolution: "rc-virtual-list@npm:3.19.2" - dependencies: - "@babel/runtime": "npm:^7.20.0" - classnames: "npm:^2.2.6" - rc-resize-observer: "npm:^1.0.0" - rc-util: "npm:^5.36.0" - peerDependencies: - react: ">=16.9.0" - react-dom: ">=16.9.0" - checksum: 10c0/3778ade183a33d113555fb99465c2f59391c9b5178629cb7bb2947d5ee71a1b166bf9468b063394f63384965166ef368acf78cb5f4b3a23e9393af04543b6626 - languageName: node - linkType: hard - "react-calendar@npm:^6.0.0": version: 6.0.0 resolution: "react-calendar@npm:6.0.0" @@ -13195,6 +13230,13 @@ __metadata: languageName: node linkType: hard +"zod@npm:^4.3.0": + version: 4.3.6 + resolution: "zod@npm:4.3.6" + checksum: 10c0/860d25a81ab41d33aa25f8d0d07b091a04acb426e605f396227a796e9e800c44723ed96d0f53a512b57be3d1520f45bf69c0cb3b378a232a00787a2609625307 + languageName: node + linkType: hard + "zstddec@npm:^0.1.0": version: 0.1.0 resolution: "zstddec@npm:0.1.0" From 2eec60ebe70e1e3c1dd415db2b46a4ba54c6c579 Mon Sep 17 00:00:00 2001 From: dprizentsov Date: Wed, 25 Feb 2026 17:06:02 +0100 Subject: [PATCH 19/26] update grafana-plugin-sdk-go Signed-off-by: dprizentsov --- grafana/rmf-app/go.mod | 108 ++++++++++++++++++++++------------------ grafana/rmf-app/go.sum | 110 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 170 insertions(+), 48 deletions(-) diff --git a/grafana/rmf-app/go.mod b/grafana/rmf-app/go.mod index 0ebb8a17..4bd76a97 100644 --- a/grafana/rmf-app/go.mod +++ b/grafana/rmf-app/go.mod @@ -1,57 +1,63 @@ module github.com/IBM/RMF/grafana/rmf-app -go 1.24.3 +go 1.25.6 require ( github.com/VictoriaMetrics/fastcache v1.12.2 github.com/google/uuid v1.6.0 - github.com/grafana/grafana-plugin-sdk-go v0.277.1 - github.com/stretchr/testify v1.10.0 - golang.org/x/sync v0.14.0 + github.com/grafana/grafana-plugin-sdk-go v0.289.0 + github.com/stretchr/testify v1.11.1 + golang.org/x/sync v0.19.0 ) require ( github.com/BurntSushi/toml v1.5.0 // indirect - github.com/apache/arrow-go/v18 v18.2.0 // indirect + github.com/apache/arrow-go/v18 v18.5.1 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect + github.com/cenkalti/backoff/v5 v5.0.3 // indirect github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/cheekybits/genny v1.0.0 // indirect - github.com/chromedp/cdproto v0.0.0-20250429231605-6ed5b53462d4 // indirect + github.com/chromedp/cdproto v0.0.0-20250803210736-d308e07a266d // indirect + github.com/clipperhouse/displaywidth v0.6.2 // indirect + github.com/clipperhouse/stringish v0.1.1 // indirect + github.com/clipperhouse/uax29/v2 v2.3.0 // indirect github.com/cpuguy83/go-md2man/v2 v2.0.7 // indirect - github.com/davecgh/go-spew v1.1.1 // indirect - github.com/elazarl/goproxy v1.7.2 // indirect + github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect + github.com/elazarl/goproxy v1.8.0 // indirect github.com/fatih/color v1.18.0 // indirect - github.com/getkin/kin-openapi v0.132.0 // indirect - github.com/go-logr/logr v1.4.2 // indirect + github.com/getkin/kin-openapi v0.133.0 // indirect + github.com/go-logr/logr v1.4.3 // indirect github.com/go-logr/stdr v1.2.2 // indirect - github.com/go-openapi/jsonpointer v0.21.1 // indirect + github.com/go-openapi/jsonpointer v0.22.4 // indirect github.com/go-openapi/swag v0.23.1 // indirect github.com/goccy/go-json v0.10.5 // indirect + github.com/gogo/googleapis v1.4.1 // indirect github.com/gogo/protobuf v1.3.2 // indirect github.com/golang/protobuf v1.5.4 // indirect github.com/golang/snappy v1.0.0 // indirect - github.com/google/flatbuffers v25.2.10+incompatible // indirect + github.com/google/flatbuffers v25.12.19+incompatible // indirect github.com/google/go-cmp v0.7.0 // indirect github.com/gorilla/mux v1.8.1 // indirect github.com/grafana/otel-profiling-go v0.5.1 // indirect - github.com/grafana/pyroscope-go/godeltaprof v0.1.8 // indirect - github.com/grpc-ecosystem/go-grpc-middleware/providers/prometheus v1.0.1 // indirect - github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.3.2 // indirect - github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.3 // indirect + github.com/grafana/pyroscope-go/godeltaprof v0.1.9 // indirect + github.com/grpc-ecosystem/go-grpc-middleware/providers/prometheus v1.1.0 // indirect + github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.3.3 // indirect + github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.3 // indirect github.com/hashicorp/go-hclog v1.6.3 // indirect - github.com/hashicorp/go-plugin v1.6.3 // indirect + github.com/hashicorp/go-plugin v1.7.0 // indirect github.com/hashicorp/yamux v0.1.2 // indirect + github.com/jaegertracing/jaeger-idl v0.6.0 // indirect github.com/josharian/intern v1.0.0 // indirect github.com/json-iterator/go v1.1.12 // indirect - github.com/klauspost/compress v1.18.0 // indirect - github.com/klauspost/cpuid/v2 v2.2.10 // indirect + github.com/klauspost/compress v1.18.2 // indirect + github.com/klauspost/cpuid/v2 v2.3.0 // indirect github.com/magefile/mage v1.15.0 // indirect github.com/mailru/easyjson v0.9.0 // indirect github.com/mattetti/filebuffer v1.0.1 // indirect github.com/mattn/go-colorable v0.1.14 // indirect github.com/mattn/go-isatty v0.0.20 // indirect - github.com/mattn/go-runewidth v0.0.16 // indirect + github.com/mattn/go-runewidth v0.0.19 // indirect github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect github.com/modern-go/reflect2 v1.0.2 // indirect github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect @@ -59,44 +65,50 @@ require ( github.com/oasdiff/yaml v0.0.0-20250309154309-f31be36b4037 // indirect github.com/oasdiff/yaml3 v0.0.0-20250309153720-d2182401db90 // indirect github.com/oklog/run v1.1.0 // indirect - github.com/olekukonko/tablewriter v0.0.5 // indirect + github.com/olekukonko/cat v0.0.0-20250911104152-50322a0618f6 // indirect + github.com/olekukonko/errors v1.1.0 // indirect + github.com/olekukonko/ll v0.1.4-0.20260115111900-9e59c2286df0 // indirect + github.com/olekukonko/tablewriter v1.1.3 // indirect + github.com/patrickmn/go-cache v2.1.0+incompatible // indirect github.com/perimeterx/marshmallow v1.1.5 // indirect - github.com/pierrec/lz4/v4 v4.1.22 // indirect - github.com/pmezard/go-difflib v1.0.0 // indirect - github.com/prometheus/client_golang v1.22.0 // indirect + github.com/pierrec/lz4/v4 v4.1.23 // indirect + github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect + github.com/prometheus/client_golang v1.23.2 // indirect github.com/prometheus/client_model v0.6.2 // indirect - github.com/prometheus/common v0.63.0 // indirect + github.com/prometheus/common v0.67.5 // indirect github.com/prometheus/procfs v0.16.1 // indirect github.com/rivo/uniseg v0.4.7 // indirect github.com/russross/blackfriday/v2 v2.1.0 // indirect github.com/unknwon/bra v0.0.0-20200517080246-1e3013ecaff8 // indirect github.com/unknwon/com v1.0.1 // indirect github.com/unknwon/log v0.0.0-20200308114134-929b1006e34a // indirect - github.com/urfave/cli v1.22.16 // indirect + github.com/urfave/cli v1.22.17 // indirect github.com/zeebo/xxh3 v1.0.2 // indirect - go.opentelemetry.io/auto/sdk v1.1.0 // indirect - go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.60.0 // indirect - go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.60.0 // indirect - go.opentelemetry.io/contrib/propagators/jaeger v1.35.0 // indirect - go.opentelemetry.io/contrib/samplers/jaegerremote v0.29.0 // indirect - go.opentelemetry.io/otel v1.35.0 // indirect - go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.35.0 // indirect - go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.35.0 // indirect - go.opentelemetry.io/otel/metric v1.35.0 // indirect - go.opentelemetry.io/otel/sdk v1.35.0 // indirect - go.opentelemetry.io/otel/trace v1.35.0 // indirect - go.opentelemetry.io/proto/otlp v1.6.0 // indirect - golang.org/x/exp v0.0.0-20250506013437-ce4c2cf36ca6 // indirect - golang.org/x/mod v0.24.0 // indirect - golang.org/x/net v0.40.0 // indirect - golang.org/x/sys v0.33.0 // indirect - golang.org/x/text v0.25.0 // indirect - golang.org/x/tools v0.33.0 // indirect + go.opentelemetry.io/auto/sdk v1.2.1 // indirect + go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.64.0 // indirect + go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.64.0 // indirect + go.opentelemetry.io/contrib/propagators/jaeger v1.39.0 // indirect + go.opentelemetry.io/contrib/samplers/jaegerremote v0.33.0 // indirect + go.opentelemetry.io/otel v1.40.0 // indirect + go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.39.0 // indirect + go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.39.0 // indirect + go.opentelemetry.io/otel/metric v1.40.0 // indirect + go.opentelemetry.io/otel/sdk v1.40.0 // indirect + go.opentelemetry.io/otel/trace v1.40.0 // indirect + go.opentelemetry.io/proto/otlp v1.9.0 // indirect + go.yaml.in/yaml/v2 v2.4.3 // indirect + golang.org/x/exp v0.0.0-20251002181428-27f1f14c8bb9 // indirect + golang.org/x/mod v0.32.0 // indirect + golang.org/x/net v0.49.0 // indirect + golang.org/x/sys v0.40.0 // indirect + golang.org/x/telemetry v0.0.0-20260109210033-bd525da824e2 // indirect + golang.org/x/text v0.33.0 // indirect + golang.org/x/tools v0.41.0 // indirect golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect - google.golang.org/genproto/googleapis/api v0.0.0-20250505200425-f936aa4a68b2 // indirect - google.golang.org/genproto/googleapis/rpc v0.0.0-20250505200425-f936aa4a68b2 // indirect - google.golang.org/grpc v1.72.0 // indirect - google.golang.org/protobuf v1.36.6 // indirect + google.golang.org/genproto/googleapis/api v0.0.0-20251202230838-ff82c1b0f217 // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20251202230838-ff82c1b0f217 // indirect + google.golang.org/grpc v1.78.0 // indirect + google.golang.org/protobuf v1.36.11 // indirect gopkg.in/fsnotify/fsnotify.v1 v1.4.7 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect ) diff --git a/grafana/rmf-app/go.sum b/grafana/rmf-app/go.sum index bc58e0b4..d0fb85b5 100644 --- a/grafana/rmf-app/go.sum +++ b/grafana/rmf-app/go.sum @@ -10,6 +10,8 @@ github.com/andybalholm/brotli v1.1.1 h1:PR2pgnyFznKEugtsUo0xLdDop5SKXd5Qf5ysW+7X github.com/andybalholm/brotli v1.1.1/go.mod h1:05ib4cKhjx3OQYUY22hTVd34Bc8upXjOLL2rKwwZBoA= github.com/apache/arrow-go/v18 v18.2.0 h1:QhWqpgZMKfWOniGPhbUxrHohWnooGURqL2R2Gg4SO1Q= github.com/apache/arrow-go/v18 v18.2.0/go.mod h1:Ic/01WSwGJWRrdAZcxjBZ5hbApNJ28K96jGYaxzzGUc= +github.com/apache/arrow-go/v18 v18.5.1 h1:yaQ6zxMGgf9YCYw4/oaeOU3AULySDlAYDOcnr4LdHdI= +github.com/apache/arrow-go/v18 v18.5.1/go.mod h1:OCCJsmdq8AsRm8FkBSSmYTwL/s4zHW9CqxeBxEytkNE= github.com/apache/thrift v0.21.0 h1:tdPmh/ptjE1IJnhbhrcl2++TauVjy242rkV/UzJChnE= github.com/apache/thrift v0.21.0/go.mod h1:W1H8aR/QRtYNvrPeFXBtobyRkd0/YVhTc6i07XIAgDw= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= @@ -18,6 +20,8 @@ github.com/bufbuild/protocompile v0.4.0 h1:LbFKd2XowZvQ/kajzguUp2DC9UEIQhIq77fZZ github.com/bufbuild/protocompile v0.4.0/go.mod h1:3v93+mbWn/v3xzN+31nwkJfrEpAUwp+BagBSZWx+TP8= github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= +github.com/cenkalti/backoff/v5 v5.0.3 h1:ZN+IMa753KfX5hd8vVaMixjnqRZ3y8CuJKRKj1xcsSM= +github.com/cenkalti/backoff/v5 v5.0.3/go.mod h1:rkhZdG3JZukswDf7f0cwqPNk4K0sa+F97BxZthm/crw= github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= @@ -25,6 +29,13 @@ github.com/cheekybits/genny v1.0.0 h1:uGGa4nei+j20rOSeDeP5Of12XVm7TGUd4dJA9RDitf github.com/cheekybits/genny v1.0.0/go.mod h1:+tQajlRqAUrPI7DOSpB0XAqZYtQakVtB7wXkRAgjxjQ= github.com/chromedp/cdproto v0.0.0-20250429231605-6ed5b53462d4 h1:UZdrvid2JFwnvPlUSEFlE794XZL4Jmrj8fuxfcLECJE= github.com/chromedp/cdproto v0.0.0-20250429231605-6ed5b53462d4/go.mod h1:NItd7aLkcfOA/dcMXvl8p1u+lQqioRMq/SqDp71Pb/k= +github.com/chromedp/cdproto v0.0.0-20250803210736-d308e07a266d/go.mod h1:NItd7aLkcfOA/dcMXvl8p1u+lQqioRMq/SqDp71Pb/k= +github.com/clipperhouse/displaywidth v0.6.2 h1:ZDpTkFfpHOKte4RG5O/BOyf3ysnvFswpyYrV7z2uAKo= +github.com/clipperhouse/displaywidth v0.6.2/go.mod h1:R+kHuzaYWFkTm7xoMmK1lFydbci4X2CicfbGstSGg0o= +github.com/clipperhouse/stringish v0.1.1 h1:+NSqMOr3GR6k1FdRhhnXrLfztGzuG+VuFDfatpWHKCs= +github.com/clipperhouse/stringish v0.1.1/go.mod h1:v/WhFtE1q0ovMta2+m+UbpZ+2/HEXNWYXQgCt4hdOzA= +github.com/clipperhouse/uax29/v2 v2.3.0 h1:SNdx9DVUqMoBuBoW3iLOj4FQv3dN5mDtuqwuhIGpJy4= +github.com/clipperhouse/uax29/v2 v2.3.0/go.mod h1:Wn1g7MK6OoeDT0vL+Q0SQLDz/KpfsVRgg6W7ihQeh4g= github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= github.com/cpuguy83/go-md2man/v2 v2.0.5/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= github.com/cpuguy83/go-md2man/v2 v2.0.7 h1:zbFlGlXEAKlwXpmvle3d8Oe3YnkKIK4xSRTd3sHPnBo= @@ -32,8 +43,10 @@ github.com/cpuguy83/go-md2man/v2 v2.0.7/go.mod h1:oOW0eioCTA6cOiMLiUPZOpcVxMig6N github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/elazarl/goproxy v1.7.2 h1:Y2o6urb7Eule09PjlhQRGNsqRfPmYI3KKQLFpCAV3+o= github.com/elazarl/goproxy v1.7.2/go.mod h1:82vkLNir0ALaW14Rc399OTTjyNREgmdL2cVoIbS6XaE= +github.com/elazarl/goproxy v1.8.0/go.mod h1:b5xm6W48AUHNpRTCvlnd0YVh+JafCCtsLsJZvvNTz+E= github.com/fatih/color v1.13.0/go.mod h1:kLAiJbzzSOZDVNGyDpeOxJ47H46qBXwg5ILebYFFOfk= github.com/fatih/color v1.18.0 h1:S8gINlzdQ840/4pfAwic/ZE0djQEH3wM94VfqLTZcOM= github.com/fatih/color v1.18.0/go.mod h1:4FelSpRwEGDpQ12mAdzqdOukCy4u8WUtOY6lkT/6HfU= @@ -43,20 +56,26 @@ github.com/fsnotify/fsnotify v1.4.7 h1:IXs+QLmnXW2CcXuY+8Mzv/fWEsPGWxqefPtCP5CnV github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= github.com/getkin/kin-openapi v0.132.0 h1:3ISeLMsQzcb5v26yeJrBcdTCEQTag36ZjaGk7MIRUwk= github.com/getkin/kin-openapi v0.132.0/go.mod h1:3OlG51PCYNsPByuiMB0t4fjnNlIDnaEDsjiKUV8nL58= +github.com/getkin/kin-openapi v0.133.0/go.mod h1:boAciF6cXk5FhPqe/NQeBTeenbjqU4LhWBf09ILVvWE= github.com/go-logr/logr v1.2.2/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= github.com/go-logr/logr v1.3.0/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY= github.com/go-logr/logr v1.4.2 h1:6pFjapn8bFcIbiKo3XT4j/BhANplGihG6tvd+8rYgrY= github.com/go-logr/logr v1.4.2/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY= +github.com/go-logr/logr v1.4.3 h1:CjnDlHq8ikf6E492q6eKboGOC0T8CDaOvkHCIg8idEI= +github.com/go-logr/logr v1.4.3/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY= github.com/go-logr/stdr v1.2.2 h1:hSWxHoqTgW2S2qGc0LTAI563KZ5YKYRhT3MFKZMbjag= github.com/go-logr/stdr v1.2.2/go.mod h1:mMo/vtBO5dYbehREoey6XUKy/eSumjCCveDpRre4VKE= github.com/go-openapi/jsonpointer v0.21.1 h1:whnzv/pNXtK2FbX/W9yJfRmE2gsmkfahjMKB0fZvcic= github.com/go-openapi/jsonpointer v0.21.1/go.mod h1:50I1STOfbY1ycR8jGz8DaMeLCdXiI6aDteEdRNNzpdk= +github.com/go-openapi/jsonpointer v0.22.4/go.mod h1:elX9+UgznpFhgBuaMQ7iu4lvvX1nvNsesQ3oxmYTw80= github.com/go-openapi/swag v0.23.1 h1:lpsStH0n2ittzTnbaSloVZLuB5+fvSY/+hnagBjSNZU= github.com/go-openapi/swag v0.23.1/go.mod h1:STZs8TbRvEQQKUA+JZNAm3EWlgaOBGpyFDqQnDHMef0= github.com/go-test/deep v1.0.8 h1:TDsG77qcSprGbC6vTN8OuXp5g+J+b5Pcguhf7Zt61VM= github.com/go-test/deep v1.0.8/go.mod h1:5C2ZWiW0ErCdrYzpqxLbTX7MG14M9iiw8DgHncVwcsE= github.com/goccy/go-json v0.10.5 h1:Fq85nIqj+gXn/S5ahsiTlK3TmC85qgirsdTP/+DeaC4= github.com/goccy/go-json v0.10.5/go.mod h1:oq7eo15ShAhp70Anwd5lgX2pLfOS3QCiwU/PULtXL6M= +github.com/gogo/googleapis v1.4.1 h1:1Yx4Myt7BxzvUr5ldGSbwYiZG6t9wGBZ+8/fX3Wvtq0= +github.com/gogo/googleapis v1.4.1/go.mod h1:2lpHqI5OcWCtVElxXnPt+s8oJvMpySlOyM6xDCrzib4= github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q= github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= github.com/golang/protobuf v1.5.4 h1:i7eJL8qZTpSEXOPTxNKhASYpMn+8e5Q6AdndVa1dWek= @@ -66,6 +85,8 @@ github.com/golang/snappy v1.0.0 h1:Oy607GVXHs7RtbggtPBnr2RmDArIsAefDwvrdWvRhGs= github.com/golang/snappy v1.0.0/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/google/flatbuffers v25.2.10+incompatible h1:F3vclr7C3HpB1k9mxCGRMXq6FdUalZ6H/pNX4FP1v0Q= github.com/google/flatbuffers v25.2.10+incompatible/go.mod h1:1AeVuKshWv4vARoZatz6mlQ0JxURH0Kv5+zNeJKJCa8= +github.com/google/flatbuffers v25.12.19+incompatible h1:haMV2JRRJCe1998HeW/p0X9UaMTK6SDo0ffLn2+DbLs= +github.com/google/flatbuffers v25.12.19+incompatible/go.mod h1:1AeVuKshWv4vARoZatz6mlQ0JxURH0Kv5+zNeJKJCa8= github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8= github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU= @@ -78,22 +99,36 @@ github.com/gorilla/mux v1.8.1 h1:TuBL49tXwgrFYWhqrNgrUNEY92u81SPhu7sTdzQEiWY= github.com/gorilla/mux v1.8.1/go.mod h1:AKf9I4AEqPTmMytcMc0KkNouC66V3BtZ4qD5fmWSiMQ= github.com/grafana/grafana-plugin-sdk-go v0.277.1 h1:CF2pk2Pc/VX0DNBdk1+n3XSL0KvzMEcy6oubN/qdEmY= github.com/grafana/grafana-plugin-sdk-go v0.277.1/go.mod h1:2ekE3wh4VyHmvBKP3VBdJNoAK4fD50HLxhlco9FzTwg= +github.com/grafana/grafana-plugin-sdk-go v0.289.0 h1:qL+qD1eDxxRaYatXDVycZO8BZrmcTFgGgVQryq6VWLA= +github.com/grafana/grafana-plugin-sdk-go v0.289.0/go.mod h1:1jspyz8OfKcRQMplKxcn0jt4aeXcK6GRz1PdRqLWNnk= github.com/grafana/otel-profiling-go v0.5.1 h1:stVPKAFZSa7eGiqbYuG25VcqYksR6iWvF3YH66t4qL8= github.com/grafana/otel-profiling-go v0.5.1/go.mod h1:ftN/t5A/4gQI19/8MoWurBEtC6gFw8Dns1sJZ9W4Tls= github.com/grafana/pyroscope-go/godeltaprof v0.1.8 h1:iwOtYXeeVSAeYefJNaxDytgjKtUuKQbJqgAIjlnicKg= github.com/grafana/pyroscope-go/godeltaprof v0.1.8/go.mod h1:2+l7K7twW49Ct4wFluZD3tZ6e0SjanjcUUBPVD/UuGU= +github.com/grafana/pyroscope-go/godeltaprof v0.1.9 h1:c1Us8i6eSmkW+Ez05d3co8kasnuOY813tbMN8i/a3Og= +github.com/grafana/pyroscope-go/godeltaprof v0.1.9/go.mod h1:2+l7K7twW49Ct4wFluZD3tZ6e0SjanjcUUBPVD/UuGU= github.com/grpc-ecosystem/go-grpc-middleware/providers/prometheus v1.0.1 h1:qnpSQwGEnkcRpTqNOIR6bJbR0gAorgP9CSALpRcKoAA= github.com/grpc-ecosystem/go-grpc-middleware/providers/prometheus v1.0.1/go.mod h1:lXGCsh6c22WGtjr+qGHj1otzZpV/1kwTMAqkwZsnWRU= +github.com/grpc-ecosystem/go-grpc-middleware/providers/prometheus v1.1.0 h1:QGLs/O40yoNK9vmy4rhUGBVyMf1lISBGtXRpsu/Qu/o= +github.com/grpc-ecosystem/go-grpc-middleware/providers/prometheus v1.1.0/go.mod h1:hM2alZsMUni80N33RBe6J0e423LB+odMj7d3EMP9l20= github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.3.2 h1:sGm2vDRFUrQJO/Veii4h4zG2vvqG6uWNkBHSTqXOZk0= github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.3.2/go.mod h1:wd1YpapPLivG6nQgbf7ZkG1hhSOXDhhn4MLTknx2aAc= +github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.3.3 h1:B+8ClL/kCQkRiU82d9xajRPKYMrB7E0MbtzWVi1K4ns= +github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.3.3/go.mod h1:NbCUVmiS4foBGBHOYlCT25+YmGpJ32dZPi75pGEUpj4= github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.3 h1:5ZPtiqj0JL5oKWmcsq4VMaAW5ukBEgSGXEN89zeH1Jo= github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.3/go.mod h1:ndYquD05frm2vACXE1nsccT4oJzjhw2arTS2cpUD1PI= +github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.3 h1:NmZ1PKzSTQbuGHw9DGPFomqkkLWMC+vZCkfs+FHv1Vg= +github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.3/go.mod h1:zQrxl1YP88HQlA6i9c63DSVPFklWpGX4OWAc9bFuaH4= github.com/hashicorp/go-hclog v1.6.3 h1:Qr2kF+eVWjTiYmU7Y31tYlP1h0q/X3Nl3tPGdaB11/k= github.com/hashicorp/go-hclog v1.6.3/go.mod h1:W4Qnvbt70Wk/zYJryRzDRU/4r0kIg0PVHBcfoyhpF5M= github.com/hashicorp/go-plugin v1.6.3 h1:xgHB+ZUSYeuJi96WtxEjzi23uh7YQpznjGh0U0UUrwg= github.com/hashicorp/go-plugin v1.6.3/go.mod h1:MRobyh+Wc/nYy1V4KAXUiYfzxoYhs7V1mlH1Z7iY2h0= +github.com/hashicorp/go-plugin v1.7.0 h1:YghfQH/0QmPNc/AZMTFE3ac8fipZyZECHdDPshfk+mA= +github.com/hashicorp/go-plugin v1.7.0/go.mod h1:BExt6KEaIYx804z8k4gRzRLEvxKVb+kn0NMcihqOqb8= github.com/hashicorp/yamux v0.1.2 h1:XtB8kyFOyHXYVFnwT5C3+Bdo8gArse7j2AQ0DA0Uey8= github.com/hashicorp/yamux v0.1.2/go.mod h1:C+zze2n6e/7wshOZep2A70/aQU6QBRWJO/G6FT1wIns= +github.com/jaegertracing/jaeger-idl v0.6.0 h1:LOVQfVby9ywdMPI9n3hMwKbyLVV3BL1XH2QqsP5KTMk= +github.com/jaegertracing/jaeger-idl v0.6.0/go.mod h1:mpW0lZfG907/+o5w5OlnNnig7nHJGT3SfKmRqC42HGQ= github.com/jhump/protoreflect v1.15.1 h1:HUMERORf3I3ZdX05WaQ6MIpd/NJ434hTp5YiKgfCL6c= github.com/jhump/protoreflect v1.15.1/go.mod h1:jD/2GMKKE6OqX8qTjhADU1e6DShO+gavG9e0Q693nKo= github.com/josharian/intern v1.0.0 h1:vlS4z54oSdjm0bgjRigI+G1HpF+tI+9rE5LLzOg8HmY= @@ -108,8 +143,12 @@ github.com/klauspost/asmfmt v1.3.2 h1:4Ri7ox3EwapiOjCki+hw14RyKk201CN4rzyCJRFLpK github.com/klauspost/asmfmt v1.3.2/go.mod h1:AG8TuvYojzulgDAMCnYn50l/5QV3Bs/tp6j0HLHbNSE= github.com/klauspost/compress v1.18.0 h1:c/Cqfb0r+Yi+JtIEq73FWXVkRonBlf0CRNYc8Zttxdo= github.com/klauspost/compress v1.18.0/go.mod h1:2Pp+KzxcywXVXMr50+X0Q/Lsb43OQHYWRCY2AiWywWQ= +github.com/klauspost/compress v1.18.2 h1:iiPHWW0YrcFgpBYhsA6D1+fqHssJscY/Tm/y2Uqnapk= +github.com/klauspost/compress v1.18.2/go.mod h1:R0h/fSBs8DE4ENlcrlib3PsXS61voFxhIs2DeRhCvJ4= github.com/klauspost/cpuid/v2 v2.2.10 h1:tBs3QSyvjDyFTq3uoc/9xFpCuOsJQFNPiAhYdw2skhE= github.com/klauspost/cpuid/v2 v2.2.10/go.mod h1:hqwkgyIinND0mEev00jJYCxPNVRVXFQeu1XKlok6oO0= +github.com/klauspost/cpuid/v2 v2.3.0 h1:S4CRMLnYUhGeDFDqkGriYKdfoFlDnMtqTiI/sFzhA9Y= +github.com/klauspost/cpuid/v2 v2.3.0/go.mod h1:hqwkgyIinND0mEev00jJYCxPNVRVXFQeu1XKlok6oO0= github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= @@ -133,6 +172,8 @@ github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D github.com/mattn/go-runewidth v0.0.9/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI= github.com/mattn/go-runewidth v0.0.16 h1:E5ScNMtiwvlvB5paMFdw9p4kSQzbXFikJ5SQO6TULQc= github.com/mattn/go-runewidth v0.0.16/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w= +github.com/mattn/go-runewidth v0.0.19 h1:v++JhqYnZuu5jSKrk9RbgF5v4CGUjqRfBm05byFGLdw= +github.com/mattn/go-runewidth v0.0.19/go.mod h1:XBkDxAl56ILZc9knddidhrOlY5R/pDhgLpndooCuJAs= github.com/minio/asm2plan9s v0.0.0-20200509001527-cdd76441f9d8 h1:AMFGa4R4MiIpspGNG7Z948v4n35fFGB3RR3G/ry4FWs= github.com/minio/asm2plan9s v0.0.0-20200509001527-cdd76441f9d8/go.mod h1:mC1jAcsrzbxHt8iiaC+zU4b1ylILSosueou12R++wfY= github.com/minio/c2goasm v0.0.0-20190812172519-36a3d3bbc4f3 h1:+n/aFZefKZp7spd8DFdX7uMikMLXX4oubIzJF4kv/wI= @@ -154,20 +195,37 @@ github.com/oasdiff/yaml3 v0.0.0-20250309153720-d2182401db90 h1:bQx3WeLcUWy+RletI github.com/oasdiff/yaml3 v0.0.0-20250309153720-d2182401db90/go.mod h1:y5+oSEHCPT/DGrS++Wc/479ERge0zTFxaF8PbGKcg2o= github.com/oklog/run v1.1.0 h1:GEenZ1cK0+q0+wsJew9qUg/DyD8k3JzYsZAi5gYi2mA= github.com/oklog/run v1.1.0/go.mod h1:sVPdnTZT1zYwAJeCMu2Th4T21pA3FPOQRfWjQlk7DVU= +github.com/olekukonko/cat v0.0.0-20250911104152-50322a0618f6 h1:zrbMGy9YXpIeTnGj4EljqMiZsIcE09mmF8XsD5AYOJc= +github.com/olekukonko/cat v0.0.0-20250911104152-50322a0618f6/go.mod h1:rEKTHC9roVVicUIfZK7DYrdIoM0EOr8mK1Hj5s3JjH0= +github.com/olekukonko/errors v1.1.0 h1:RNuGIh15QdDenh+hNvKrJkmxxjV4hcS50Db478Ou5sM= +github.com/olekukonko/errors v1.1.0/go.mod h1:ppzxA5jBKcO1vIpCXQ9ZqgDh8iwODz6OXIGKU8r5m4Y= +github.com/olekukonko/ll v0.1.4-0.20260115111900-9e59c2286df0 h1:jrYnow5+hy3WRDCBypUFvVKNSPPCdqgSXIE9eJDD8LM= +github.com/olekukonko/ll v0.1.4-0.20260115111900-9e59c2286df0/go.mod h1:b52bVQRRPObe+yyBl0TxNfhesL0nedD4Cht0/zx55Ew= github.com/olekukonko/tablewriter v0.0.5 h1:P2Ga83D34wi1o9J6Wh1mRuqd4mF/x/lgBS7N7AbDhec= github.com/olekukonko/tablewriter v0.0.5/go.mod h1:hPp6KlRPjbx+hW8ykQs1w3UBbZlj6HuIJcUGPhkA7kY= +github.com/olekukonko/tablewriter v1.1.3 h1:VSHhghXxrP0JHl+0NnKid7WoEmd9/urKRJLysb70nnA= +github.com/olekukonko/tablewriter v1.1.3/go.mod h1:9VU0knjhmMkXjnMKrZ3+L2JhhtsQ/L38BbL3CRNE8tM= +github.com/patrickmn/go-cache v2.1.0+incompatible h1:HRMgzkcYKYpi3C8ajMPV8OFXaaRUnok+kx1WdO15EQc= +github.com/patrickmn/go-cache v2.1.0+incompatible/go.mod h1:3Qf8kWWT7OJRJbdiICTKqZju1ZixQ/KpMGzzAfe6+WQ= github.com/perimeterx/marshmallow v1.1.5 h1:a2LALqQ1BlHM8PZblsDdidgv1mWi1DgC2UmX50IvK2s= github.com/perimeterx/marshmallow v1.1.5/go.mod h1:dsXbUu8CRzfYP5a87xpp0xq9S3u0Vchtcl8we9tYaXw= github.com/pierrec/lz4/v4 v4.1.22 h1:cKFw6uJDK+/gfw5BcDL0JL5aBsAFdsIT18eRtLj7VIU= github.com/pierrec/lz4/v4 v4.1.22/go.mod h1:gZWDp/Ze/IJXGXf23ltt2EXimqmTUXEy0GFuRQyBid4= +github.com/pierrec/lz4/v4 v4.1.23 h1:oJE7T90aYBGtFNrI8+KbETnPymobAhzRrR8Mu8n1yfU= +github.com/pierrec/lz4/v4 v4.1.23/go.mod h1:EoQMVJgeeEOMsCqCzqFm2O0cJvljX2nGZjcRIPL34O4= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.22.0 h1:rb93p9lokFEsctTys46VnV1kLCDpVZ0a/Y92Vm0Zc6Q= github.com/prometheus/client_golang v1.22.0/go.mod h1:R7ljNsLXhuQXYZYtw6GAE9AZg8Y7vEW5scdCXrWRXC0= +github.com/prometheus/client_golang v1.23.2 h1:Je96obch5RDVy3FDMndoUsjAhG5Edi49h0RJWRi/o0o= +github.com/prometheus/client_golang v1.23.2/go.mod h1:Tb1a6LWHB3/SPIzCoaDXI4I8UHKeFTEQ1YCr+0Gyqmg= github.com/prometheus/client_model v0.6.2 h1:oBsgwpGs7iVziMvrGhE53c/GrLUsZdHnqNwqPLxwZyk= github.com/prometheus/client_model v0.6.2/go.mod h1:y3m2F6Gdpfy6Ut/GBsUqTWZqCUvMVzSfMLjcu6wAwpE= github.com/prometheus/common v0.63.0 h1:YR/EIY1o3mEFP/kZCD7iDMnLPlGyuU2Gb3HIcXnA98k= github.com/prometheus/common v0.63.0/go.mod h1:VVFF/fBIoToEnWRVkYoXEkq3R3paCoxG9PXP74SnV18= +github.com/prometheus/common v0.67.5 h1:pIgK94WWlQt1WLwAC5j2ynLaBRDiinoAb86HZHTUGI4= +github.com/prometheus/common v0.67.5/go.mod h1:SjE/0MzDEEAyrdr5Gqc6G+sXI67maCxzaT3A2+HqjUw= github.com/prometheus/procfs v0.16.1 h1:hZ15bTNuirocR6u0JZ6BAHHmwS1p8B4P6MRqxtzMyRg= github.com/prometheus/procfs v0.16.1/go.mod h1:teAbpZRB1iIAJYREa1LsoWUXykVXA1KlTmWl8x/U+Is= github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc= @@ -195,6 +253,7 @@ github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXl github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA= github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= +github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U= github.com/ugorji/go/codec v1.2.7 h1:YPXUKf7fYbp/y8xloBqZOw2qaVggbfwMlI8WM3wZUJ0= github.com/ugorji/go/codec v1.2.7/go.mod h1:WGN1fab3R1fzQlVQTkfxVtIBhWDRqOviHU95kRgeqEY= github.com/unknwon/bra v0.0.0-20200517080246-1e3013ecaff8 h1:aVGB3YnaS/JNfOW3tiHIlmNmTDg618va+eT0mVomgyI= @@ -207,6 +266,7 @@ github.com/unknwon/log v0.0.0-20200308114134-929b1006e34a/go.mod h1:1xEUf2abjfP9 github.com/urfave/cli v1.22.1/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0= github.com/urfave/cli v1.22.16 h1:MH0k6uJxdwdeWQTwhSO42Pwr4YLrNLwBtg1MRgTqPdQ= github.com/urfave/cli v1.22.16/go.mod h1:EeJR6BKodywf4zciqrdw6hpCPk68JO9z5LazXZMn5Po= +github.com/urfave/cli v1.22.17/go.mod h1:b0ht0aqgH/6pBYzzxURyrM4xXNgsoT/n2ZzwQiEhNVo= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/zeebo/assert v1.3.0 h1:g7C04CbJuIDKNPFHmsk4hwZDO5O+kntRxzaUoNXj+IQ= @@ -215,58 +275,92 @@ github.com/zeebo/xxh3 v1.0.2 h1:xZmwmqxHZA8AI603jOQ0tMqmBr9lPeFwGg6d+xy9DC0= github.com/zeebo/xxh3 v1.0.2/go.mod h1:5NWz9Sef7zIDm2JHfFlcQvNekmcEl9ekUZQQKCYaDcA= go.opentelemetry.io/auto/sdk v1.1.0 h1:cH53jehLUN6UFLY71z+NDOiNJqDdPRaXzTel0sJySYA= go.opentelemetry.io/auto/sdk v1.1.0/go.mod h1:3wSPjt5PWp2RhlCcmmOial7AvC4DQqZb7a7wCow3W8A= +go.opentelemetry.io/auto/sdk v1.2.1 h1:jXsnJ4Lmnqd11kwkBV2LgLoFMZKizbCi5fNZ/ipaZ64= +go.opentelemetry.io/auto/sdk v1.2.1/go.mod h1:KRTj+aOaElaLi+wW1kO/DZRXwkF4C5xPbEe3ZiIhN7Y= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.60.0 h1:x7wzEgXfnzJcHDwStJT+mxOz4etr2EcexjqhBvmoakw= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.60.0/go.mod h1:rg+RlpR5dKwaS95IyyZqj5Wd4E13lk/msnTS0Xl9lJM= +go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.64.0 h1:RN3ifU8y4prNWeEnQp2kRRHz8UwonAEYZl8tUzHEXAk= +go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.64.0/go.mod h1:habDz3tEWiFANTo6oUE99EmaFUrCNYAAg3wiVmusm70= go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.60.0 h1:0tY123n7CdWMem7MOVdKOt0YfshufLCwfE5Bob+hQuM= go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.60.0/go.mod h1:CosX/aS4eHnG9D7nESYpV753l4j9q5j3SL/PUYd2lR8= +go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.64.0 h1:OXSUzgmIFkcC4An+mv+lqqZSndTffXpjAyoR+1f8k/A= +go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.64.0/go.mod h1:1A4GVLFIm54HFqVdOpWmukap7rgb0frrE3zWXohLPdM= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.60.0 h1:sbiXRNDSWJOTobXh5HyQKjq6wUC5tNybqjIqDpAY4CU= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.60.0/go.mod h1:69uWxva0WgAA/4bu2Yy70SLDBwZXuQ6PbBpbsa5iZrQ= go.opentelemetry.io/contrib/propagators/jaeger v1.35.0 h1:UIrZgRBHUrYRlJ4V419lVb4rs2ar0wFzKNAebaP05XU= go.opentelemetry.io/contrib/propagators/jaeger v1.35.0/go.mod h1:0ciyFyYZxE6JqRAQvIgGRabKWDUmNdW3GAQb6y/RlFU= +go.opentelemetry.io/contrib/propagators/jaeger v1.39.0 h1:Gz3yKzfMSEFzF0Vy5eIpu9ndpo4DhXMCxsLMF0OOApo= +go.opentelemetry.io/contrib/propagators/jaeger v1.39.0/go.mod h1:2D/cxxCqTlrday0rZrPujjg5aoAdqk1NaNyoXn8FJn8= go.opentelemetry.io/contrib/samplers/jaegerremote v0.29.0 h1:VpYbyLrB5BS3blBCJMqHRIrbU4RlPnyFovR3La+1j4Q= go.opentelemetry.io/contrib/samplers/jaegerremote v0.29.0/go.mod h1:XAJmM2MWhiIoTO4LCLBVeE8w009TmsYk6hq1UNdXs5A= +go.opentelemetry.io/contrib/samplers/jaegerremote v0.33.0 h1:RcFp4UxGTE2VQQ0M7s24YRUShEJ5D5JDnd5g2EaTh6E= +go.opentelemetry.io/contrib/samplers/jaegerremote v0.33.0/go.mod h1:y6oMwgsv+yWYCLRigU6Pp07/x4KZUEh8LIPTSUnQKbQ= go.opentelemetry.io/otel v1.21.0/go.mod h1:QZzNPQPm1zLX4gZK4cMi+71eaorMSGT3A4znnUvNNEo= go.opentelemetry.io/otel v1.35.0 h1:xKWKPxrxB6OtMCbmMY021CqC45J+3Onta9MqjhnusiQ= go.opentelemetry.io/otel v1.35.0/go.mod h1:UEqy8Zp11hpkUrL73gSlELM0DupHoiq72dR+Zqel/+Y= +go.opentelemetry.io/otel v1.40.0 h1:oA5YeOcpRTXq6NN7frwmwFR0Cn3RhTVZvXsP4duvCms= +go.opentelemetry.io/otel v1.40.0/go.mod h1:IMb+uXZUKkMXdPddhwAHm6UfOwJyh4ct1ybIlV14J0g= go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.35.0 h1:1fTNlAIJZGWLP5FVu0fikVry1IsiUnXjf7QFvoNN3Xw= go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.35.0/go.mod h1:zjPK58DtkqQFn+YUMbx0M2XV3QgKU0gS9LeGohREyK4= +go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.39.0 h1:f0cb2XPmrqn4XMy9PNliTgRKJgS5WcL/u0/WRYGz4t0= +go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.39.0/go.mod h1:vnakAaFckOMiMtOIhFI2MNH4FYrZzXCYxmb1LlhoGz8= go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.35.0 h1:m639+BofXTvcY1q8CGs4ItwQarYtJPOWmVobfM1HpVI= go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.35.0/go.mod h1:LjReUci/F4BUyv+y4dwnq3h/26iNOeC3wAIqgvTIZVo= +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.39.0 h1:in9O8ESIOlwJAEGTkkf34DesGRAc/Pn8qJ7k3r/42LM= +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.39.0/go.mod h1:Rp0EXBm5tfnv0WL+ARyO/PHBEaEAT8UUHQ6AGJcSq6c= go.opentelemetry.io/otel/metric v1.21.0/go.mod h1:o1p3CA8nNHW8j5yuQLdc1eeqEaPfzug24uvsyIEJRWM= go.opentelemetry.io/otel/metric v1.35.0 h1:0znxYu2SNyuMSQT4Y9WDWej0VpcsxkuklLa4/siN90M= go.opentelemetry.io/otel/metric v1.35.0/go.mod h1:nKVFgxBZ2fReX6IlyW28MgZojkoAkJGaE8CpgeAU3oE= +go.opentelemetry.io/otel/metric v1.40.0 h1:rcZe317KPftE2rstWIBitCdVp89A2HqjkxR3c11+p9g= +go.opentelemetry.io/otel/metric v1.40.0/go.mod h1:ib/crwQH7N3r5kfiBZQbwrTge743UDc7DTFVZrrXnqc= go.opentelemetry.io/otel/sdk v1.21.0/go.mod h1:Nna6Yv7PWTdgJHVRD9hIYywQBRx7pbox6nwBnZIxl/E= go.opentelemetry.io/otel/sdk v1.35.0 h1:iPctf8iprVySXSKJffSS79eOjl9pvxV9ZqOWT0QejKY= go.opentelemetry.io/otel/sdk v1.35.0/go.mod h1:+ga1bZliga3DxJ3CQGg3updiaAJoNECOgJREo9KHGQg= +go.opentelemetry.io/otel/sdk v1.40.0 h1:KHW/jUzgo6wsPh9At46+h4upjtccTmuZCFAc9OJ71f8= +go.opentelemetry.io/otel/sdk v1.40.0/go.mod h1:Ph7EFdYvxq72Y8Li9q8KebuYUr2KoeyHx0DRMKrYBUE= go.opentelemetry.io/otel/sdk/metric v1.34.0 h1:5CeK9ujjbFVL5c1PhLuStg1wxA7vQv7ce1EK0Gyvahk= go.opentelemetry.io/otel/sdk/metric v1.34.0/go.mod h1:jQ/r8Ze28zRKoNRdkjCZxfs6YvBTG1+YIqyFVFYec5w= go.opentelemetry.io/otel/trace v1.21.0/go.mod h1:LGbsEB0f9LGjN+OZaQQ26sohbOmiMR+BaslueVtS/qQ= go.opentelemetry.io/otel/trace v1.35.0 h1:dPpEfJu1sDIqruz7BHFG3c7528f6ddfSWfFDVt/xgMs= go.opentelemetry.io/otel/trace v1.35.0/go.mod h1:WUk7DtFp1Aw2MkvqGdwiXYDZZNvA/1J8o6xRXLrIkyc= +go.opentelemetry.io/otel/trace v1.40.0 h1:WA4etStDttCSYuhwvEa8OP8I5EWu24lkOzp+ZYblVjw= +go.opentelemetry.io/otel/trace v1.40.0/go.mod h1:zeAhriXecNGP/s2SEG3+Y8X9ujcJOTqQ5RgdEJcawiA= go.opentelemetry.io/proto/otlp v1.6.0 h1:jQjP+AQyTf+Fe7OKj/MfkDrmK4MNVtw2NpXsf9fefDI= go.opentelemetry.io/proto/otlp v1.6.0/go.mod h1:cicgGehlFuNdgZkcALOCh3VE6K/u2tAjzlRhDwmVpZc= +go.opentelemetry.io/proto/otlp v1.9.0 h1:l706jCMITVouPOqEnii2fIAuO3IVGBRPV5ICjceRb/A= +go.opentelemetry.io/proto/otlp v1.9.0/go.mod h1:xE+Cx5E/eEHw+ISFkwPLwCZefwVjY+pqKg1qcK03+/4= go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto= go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE= +go.yaml.in/yaml/v2 v2.4.3 h1:6gvOSjQoTB3vt1l+CU+tSyi/HOjfOjRLJ4YwYZGwRO0= +go.yaml.in/yaml/v2 v2.4.3/go.mod h1:zSxWcmIDjOzPXpjlTTbAsKokqkDNAVtZO0WOMiT90s8= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/exp v0.0.0-20250506013437-ce4c2cf36ca6 h1:y5zboxd6LQAqYIhHnB48p0ByQ/GnQx2BE33L8BOHQkI= golang.org/x/exp v0.0.0-20250506013437-ce4c2cf36ca6/go.mod h1:U6Lno4MTRCDY+Ba7aCcauB9T60gsv5s4ralQzP72ZoQ= +golang.org/x/exp v0.0.0-20251002181428-27f1f14c8bb9 h1:TQwNpfvNkxAVlItJf6Cr5JTsVZoC/Sj7K3OZv2Pc14A= +golang.org/x/exp v0.0.0-20251002181428-27f1f14c8bb9/go.mod h1:TwQYMMnGpvZyc+JpB/UAuTNIsVJifOlSkrZkhcvpVUk= golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.24.0 h1:ZfthKaKaT4NrhGVZHO1/WDTwGES4De8KtWO0SIbNJMU= golang.org/x/mod v0.24.0/go.mod h1:IXM97Txy2VM4PJ3gI61r1YEk/gAj6zAHN3AdZt6S9Ww= +golang.org/x/mod v0.32.0 h1:9F4d3PHLljb6x//jOyokMv3eX+YDeepZSEo3mFJy93c= +golang.org/x/mod v0.32.0/go.mod h1:SgipZ/3h2Ci89DlEtEXWUk/HteuRin+HHhN+WbNhguU= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.40.0 h1:79Xs7wF06Gbdcg4kdCCIQArK11Z1hr5POQ6+fIYHNuY= golang.org/x/net v0.40.0/go.mod h1:y0hY0exeL2Pku80/zKK7tpntoX23cqL3Oa6njdgRtds= +golang.org/x/net v0.49.0 h1:eeHFmOGUTtaaPSGNmjBKpbng9MulQsJURQUAfUwY++o= +golang.org/x/net v0.49.0/go.mod h1:/ysNB2EvaqvesRkuLAyjI1ycPZlQHM3q01F02UY/MV8= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.14.0 h1:woo0S4Yywslg6hp4eUFjTVOyKt0RookbpAHG4c1HmhQ= golang.org/x/sync v0.14.0/go.mod h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA= +golang.org/x/sync v0.19.0 h1:vV+1eWNmZ5geRlYjzm2adRgW2/mcpevXNg50YZtPCE4= +golang.org/x/sync v0.19.0/go.mod h1:9KTHXmSnoGruLpwFjVSX0lNNA75CykiMECbovNTZqGI= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191020152052-9984515f0562/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -280,16 +374,24 @@ golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.14.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/sys v0.33.0 h1:q3i8TbbEz+JRD9ywIRlyRAQbM0qF7hu24q3teo2hbuw= golang.org/x/sys v0.33.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k= +golang.org/x/sys v0.40.0 h1:DBZZqJ2Rkml6QMQsZywtnjnnGvHza6BTfYFWY9kjEWQ= +golang.org/x/sys v0.40.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks= +golang.org/x/telemetry v0.0.0-20260109210033-bd525da824e2 h1:O1cMQHRfwNpDfDJerqRoE2oD+AFlyid87D40L/OkkJo= +golang.org/x/telemetry v0.0.0-20260109210033-bd525da824e2/go.mod h1:b7fPSJ0pKZ3ccUh8gnTONJxhn3c/PS6tyzQvyqw4iA8= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.25.0 h1:qVyWApTSYLk/drJRO5mDlNYskwQznZmkpV2c8q9zls4= golang.org/x/text v0.25.0/go.mod h1:WEdwpYrmk1qmdHvhkSTNPm3app7v4rsT8F2UD6+VHIA= +golang.org/x/text v0.33.0 h1:B3njUFyqtHDUI5jMn1YIr5B0IE2U0qck04r6d4KPAxE= +golang.org/x/text v0.33.0/go.mod h1:LuMebE6+rBincTi9+xWTY8TztLzKHc/9C1uBCG27+q8= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.33.0 h1:4qz2S3zmRxbGIhDIAgjxvFutSvH5EfnsYrRBj0UI0bc= golang.org/x/tools v0.33.0/go.mod h1:CIJMaWEY88juyUfo7UbgPqbC8rU2OqfAV1h2Qp0oMYI= +golang.org/x/tools v0.41.0 h1:a9b8iMweWG+S0OBnlU36rzLp20z1Rp10w+IY2czHTQc= +golang.org/x/tools v0.41.0/go.mod h1:XSY6eDqxVNiYgezAVqqCeihT4j1U2CCsqvH3WhQpnlg= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= @@ -300,12 +402,20 @@ gonum.org/v1/gonum v0.15.1 h1:FNy7N6OUZVUaWG9pTiD+jlhdQ3lMP+/LcTpJ6+a8sQ0= gonum.org/v1/gonum v0.15.1/go.mod h1:eZTZuRFrzu5pcyjN5wJhcIhnUdNijYxX1T2IcrOGY0o= google.golang.org/genproto/googleapis/api v0.0.0-20250505200425-f936aa4a68b2 h1:vPV0tzlsK6EzEDHNNH5sa7Hs9bd7iXR7B1tSiPepkV0= google.golang.org/genproto/googleapis/api v0.0.0-20250505200425-f936aa4a68b2/go.mod h1:pKLAc5OolXC3ViWGI62vvC0n10CpwAtRcTNCFwTKBEw= +google.golang.org/genproto/googleapis/api v0.0.0-20251202230838-ff82c1b0f217 h1:fCvbg86sFXwdrl5LgVcTEvNC+2txB5mgROGmRL5mrls= +google.golang.org/genproto/googleapis/api v0.0.0-20251202230838-ff82c1b0f217/go.mod h1:+rXWjjaukWZun3mLfjmVnQi18E1AsFbDN9QdJ5YXLto= google.golang.org/genproto/googleapis/rpc v0.0.0-20250505200425-f936aa4a68b2 h1:IqsN8hx+lWLqlN+Sc3DoMy/watjofWiU8sRFgQ8fhKM= google.golang.org/genproto/googleapis/rpc v0.0.0-20250505200425-f936aa4a68b2/go.mod h1:qQ0YXyHHx3XkvlzUtpXDkS29lDSafHMZBAZDc03LQ3A= +google.golang.org/genproto/googleapis/rpc v0.0.0-20251202230838-ff82c1b0f217 h1:gRkg/vSppuSQoDjxyiGfN4Upv/h/DQmIR10ZU8dh4Ww= +google.golang.org/genproto/googleapis/rpc v0.0.0-20251202230838-ff82c1b0f217/go.mod h1:7i2o+ce6H/6BluujYR+kqX3GKH+dChPTQU19wjRPiGk= google.golang.org/grpc v1.72.0 h1:S7UkcVa60b5AAQTaO6ZKamFp1zMZSU0fGDK2WZLbBnM= google.golang.org/grpc v1.72.0/go.mod h1:wH5Aktxcg25y1I3w7H69nHfXdOG3UiadoBtjh3izSDM= +google.golang.org/grpc v1.78.0 h1:K1XZG/yGDJnzMdd/uZHAkVqJE+xIDOcmdSFZkBUicNc= +google.golang.org/grpc v1.78.0/go.mod h1:I47qjTo4OKbMkjA/aOOwxDIiPSBofUtQUI5EfpWvW7U= google.golang.org/protobuf v1.36.6 h1:z1NpPI8ku2WgiWnf+t9wTPsn6eP1L7ksHUlkfLvd9xY= google.golang.org/protobuf v1.36.6/go.mod h1:jduwjTPXsFjZGTmRluh+L6NjiWu7pchiJ2/5YcXBHnY= +google.golang.org/protobuf v1.36.11 h1:fV6ZwhNocDyBLK0dj+fg8ektcVegBBuEolpbTQyBNVE= +google.golang.org/protobuf v1.36.11/go.mod h1:HTf+CrKn2C3g5S8VImy6tdcUvCska2kB7j23XfzDpco= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= From 1103da14454895cfe16c74d8556d88a87bc3ab35 Mon Sep 17 00:00:00 2001 From: dprizentsov Date: Thu, 26 Feb 2026 09:48:22 +0100 Subject: [PATCH 20/26] update NOTICES Signed-off-by: dprizentsov --- grafana/rmf-app/NOTICES | 2608 +++++++++++++++------------------------ 1 file changed, 964 insertions(+), 1644 deletions(-) diff --git a/grafana/rmf-app/NOTICES b/grafana/rmf-app/NOTICES index 8c1352dc..02a97567 100644 --- a/grafana/rmf-app/NOTICES +++ b/grafana/rmf-app/NOTICES @@ -33,43 +33,38 @@ Start of Notices for IBM® RMF for z/OS Grafana plugin v1.x ===================================================================== -Components: +Components: -abbrev 2.0.0: https://github.com/isaacs/abbrev-js#readme : ISC License -Acorn 8.12.1: https://github.com/acornjs/acorn : MIT License -Acorn 8.15.0: https://github.com/acornjs/acorn : MIT License -acorn-import-phases 1.0.3: https://github.com/nicolo-ribaudo/acorn-import-defer#readme : MIT License +abbrev 3.0.1: https://github.com/isaacs/abbrev-js : ISC License +Acorn 8.15.0: https://github.com/ternjs/Acorn : MIT License +acorn-import-phases 1.0.4: https://github.com/nicolo-ribaudo/acorn-import-defer#readme : MIT License Acorn-JSX 5.3.2: https://github.com/RReverser/Acorn-JSX : MIT License acorn-walk 8.3.4: https://github.com/acornjs/acorn : MIT License add-px-to-style 1.0.0: https://github.com/mikkoh/add-px-to-style : MIT License -@adobe/css-tools 4.4.0 : MIT License -agent-base 7.1.1: https://github.com/TooTallNate/node-agent-base#readme : MIT License +@adobe/css-tools 4.4.4: https://github.com/adobe/css-tools#readme : MIT License agent-base 7.1.4: https://github.com/TooTallNate/node-agent-base#readme : MIT License -aggregate-error 3.1.0: https://github.com/sindresorhus/aggregate-error#readme : MIT License -ajv 6.12.6: https://github.com/ajv-validator/ajv.git : MIT License -ajv 8.17.1: https://github.com/ajv-validator/ajv.git : MIT License ajv-formats 2.1.1: https://github.com/luzlab/ajv-formats#readme : MIT License ajv-keywords 3.5.2: https://github.com/epoberezkin/ajv-keywords : MIT License ajv-keywords 5.1.0: https://github.com/epoberezkin/ajv-keywords : MIT License alecthomas-kingpin v2.4.0: https://github.com/alecthomas/kingpin : MIT License -alecthomas-units 20211218-snapshot-b94a6e3c: https://github.com/alecthomas/units : MIT License +alecthomas-units 20240927-snapshot-0f3dac36: https://github.com/alecthomas/units : MIT License allegro/bigcache 20190220-snapshot-e24eb225: http://allegro.tech/2016/03/writing-fast-cache-service-in-go.html : Apache License 2.0 -@ampproject/remapping 2.3.0: https://github.com/ampproject/remapping#readme : Apache License 2.0 -andybalholm/brotli v1.1.1: https://github.com/andybalholm/brotli : MIT License +altinity/clickhouse-grafana v2.2.2 : MIT License +andybalholm/brotli v1.2.0: https://github.com/andybalholm/brotli : MIT License andylibrian/atomicgo-keyboard v0.2.9: https://github.com/andylibrian/atomicgo-keyboard : MIT License ansi-escapes 4.3.2: https://github.com/sindresorhus/ansi-escapes : MIT License ansi-regex 5.0.1: https://github.com/sindresorhus/ansi-regex : MIT License -ansi-regex 6.1.0: https://github.com/sindresorhus/ansi-regex : MIT License -ansi-styles 3.2.1: https://github.com/chalk/ansi-styles : MIT License +ansi-regex 6.2.2: https://github.com/sindresorhus/ansi-regex : MIT License ansi-styles 5.2.0: https://github.com/chalk/ansi-styles : MIT License -ansi-styles 6.2.1: https://github.com/chalk/ansi-styles : MIT License +ansi-styles 6.2.3: https://github.com/chalk/ansi-styles : MIT License ansi-styles v4.3.0: https://github.com/chalk/ansi-styles : MIT License ANTLR 4 4.13.2: https://github.com/antlr/antlr4-javascript : BSD 3-clause "New" or "Revised" License anymatch 3.1.3: https://github.com/es128/anymatch : ISC License -Apache Thrift 0.21.0: http://thrift.apache.org/ : Apache License 2.0 +Apache Thrift 0.22.0: http://thrift.apache.org/ : Apache License 2.0 are-docs-informative 0.0.2: https://github.com/JoshuaKGoldberg/are-docs-informative#readme : MIT License ARG 4.1.3: http://github.com/danielor/ARG : MIT License aria-query 5.3.0: https://github.com/A11yance/aria-query : Apache License 2.0 +aria-query 5.3.2: https://github.com/A11yance/aria-query : Apache License 2.0 array-buffer-byte-length 1.0.2: https://github.com/inspect-js/array-buffer-byte-length#readme : MIT License arraybuffer.prototype.slice 1.0.4: https://github.com/es-shims/ArrayBuffer.prototype.slice#readme : MIT License array-includes 3.1.9: https://github.com/ljharb/array-includes : MIT License @@ -79,49 +74,31 @@ array.prototype.flat 1.3.3: https://github.com/es-shims/Array.prototype.flat#rea array.prototype.flatmap 1.3.3: https://github.com/es-shims/Array.prototype.flatMap#readme : MIT License array.prototype.tosorted 1.1.4: https://github.com/es-shims/Array.prototype.toSorted#readme : MIT License @asamuzakjp/css-color 3.2.0: https://github.com/asamuzaK/cssColor#readme : MIT License -Async 2.6.4: http://caolan.github.io/async/ : MIT License +Async 3.2.6: http://caolan.github.io/async/ : MIT License async-function 1.0.0: https://github.com/EduardoRFS/async-function#readme : MIT License +async-generator-function 1.0.0: https://github.com/ljharb/async-generator-function#readme : MIT License atomicgo.dev/schedule 0.1.0: https://github.com/atomicgo/schedule : Expat License attr-accept 2.2.5: https://github.com/okonet/attr-accept : MIT License available-typed-arrays 1.0.7: https://github.com/inspect-js/available-typed-arrays#readme : MIT License -@babel/code-frame 7.24.7: https://babeljs.io/ : MIT License @babel/code-frame 7.27.1: https://babeljs.io/ : MIT License -@babel/compat-data 7.25.4: https://github.com/babel/babel#readme : MIT License -@babel/compat-data 7.27.2: https://github.com/babel/babel#readme : MIT License -@babel/core 7.25.2: https://babeljs.io/ : MIT License -@babel/core 7.28.0: https://babeljs.io/ : MIT License -@babel/generator 7.25.6: https://babeljs.io/ : MIT License -@babel/generator 7.27.1: https://babeljs.io/ : MIT License -@babel/generator 7.28.0: https://babeljs.io/ : MIT License -@babel/helper-compilation-targets 7.25.2: https://github.com/babel/babel#readme : MIT License +@babel/compat-data 7.28.5: https://github.com/babel/babel#readme : MIT License +@babel/generator 7.28.5: https://babeljs.io/ : MIT License @babel/helper-compilation-targets 7.27.2: https://github.com/babel/babel#readme : MIT License @babel/helper-globals 7.28.0: https://github.com/babel/babel.git : MIT License -@babel/helper-module-imports 7.24.7: https://babeljs.io/ : MIT License @babel/helper-module-imports 7.27.1: https://babeljs.io/ : MIT License -@babel/helper-module-transforms 7.25.2: https://babeljs.io/ : MIT License -@babel/helper-module-transforms 7.27.3: https://babeljs.io/ : MIT License -@babel/helper-plugin-utils 7.24.8: https://babeljs.io/ : MIT License +@babel/helper-module-transforms 7.28.3: https://babeljs.io/ : MIT License @babel/helper-plugin-utils 7.27.1: https://babeljs.io/ : MIT License -@babel/helpers 7.25.6: https://babeljs.io/ : MIT License -@babel/helpers 7.27.6: https://babeljs.io/ : MIT License -@babel/helper-simple-access 7.24.7: https://babeljs.io/ : MIT License -@babel/helper-string-parser 7.24.8: https://babel.dev/docs/en/next/babel-helper-string-parser : MIT License @babel/helper-string-parser 7.27.1: https://babel.dev/docs/en/next/babel-helper-string-parser : MIT License -@babel/helper-validator-identifier 7.24.7: https://github.com/babel/babel#readme : MIT License -@babel/helper-validator-identifier 7.27.1: https://github.com/babel/babel#readme : MIT License -@babel/helper-validator-option 7.24.8: https://github.com/babel/babel.git : MIT License +@babel/helper-validator-identifier 7.28.5: https://github.com/babel/babel#readme : MIT License @babel/helper-validator-option 7.27.1: https://github.com/babel/babel.git : MIT License -@babel/highlight 7.24.7: https://babeljs.io/ : MIT License -@babel/parser 7.25.6: https://babeljs.io/ : MIT License -@babel/parser 7.27.2: https://babeljs.io/ : MIT License -@babel/parser 7.28.0: https://babeljs.io/ : MIT License -babel-plugin-istanbul 7.0.0: https://github.com/istanbuljs/babel-plugin-istanbul#readme : BSD 3-clause "New" or "Revised" License +@babel/parser 7.28.5: https://babeljs.io/ : MIT License +babel-plugin-istanbul 7.0.1: https://github.com/istanbuljs/babel-plugin-istanbul#readme : BSD 3-clause "New" or "Revised" License babel-plugin-macros 3.1.0: https://github.com/codemix/babel-plugin-macros : MIT License @babel/plugin-syntax-async-generators 7.8.4 : MIT License @babel/plugin-syntax-bigint 7.8.3 : MIT License @babel/plugin-syntax-class-properties 7.12.13: https://github.com/babel/babel#readme : MIT License @babel/plugin-syntax-class-static-block 7.14.5: https://babel.dev/docs/en/next/babel-plugin-syntax-class-static-block : MIT License -@babel/plugin-syntax-import-attributes 7.25.6: https://github.com/babel/babel.git : MIT License +@babel/plugin-syntax-import-attributes 7.27.1: https://github.com/babel/babel.git : MIT License @babel/plugin-syntax-import-meta 7.10.4: https://github.com/babel/babel#readme : MIT License @babel/plugin-syntax-json-strings 7.8.3 : MIT License @babel/plugin-syntax-jsx 7.27.1: https://github.com/babel/babel#readme : MIT License @@ -134,99 +111,83 @@ babel-plugin-macros 3.1.0: https://github.com/codemix/babel-plugin-macros : MIT @babel/plugin-syntax-private-property-in-object 7.14.5: https://www.npmjs.com/package/@babel/plugin-syntax-private-property-in-object : MIT License @babel/plugin-syntax-top-level-await 7.14.5: https://github.com/babel/babel#readme : MIT License @babel/plugin-syntax-typescript 7.27.1: https://github.com/babel/babel#readme : MIT License -babel-preset-current-node-syntax 1.1.0: https://github.com/nicolo-ribaudo/babel-preset-current-node-syntax#readme : MIT License -@babel/runtime 7.25.6: https://babeljs.io/docs/en/next/babel-runtime : MIT License -@babel/runtime 7.25.7: https://babeljs.io/docs/en/next/babel-runtime : MIT License -@babel/runtime 7.25.9: https://babeljs.io/docs/en/next/babel-runtime : MIT License -@babel/runtime 7.27.1: https://babeljs.io/docs/en/next/babel-runtime : MIT License -@babel/template 7.25.0: https://babeljs.io/ : MIT License +babel-preset-current-node-syntax 1.2.0: https://github.com/nicolo-ribaudo/babel-preset-current-node-syntax#readme : MIT License @babel/template 7.27.2: https://babeljs.io/ : MIT License -babel-traverse 7.25.6: https://babeljs.io/ : MIT License -babel-traverse 7.27.1: https://babeljs.io/ : MIT License -babel-traverse 7.28.0: https://babeljs.io/ : MIT License -@babel/types 7.25.6: https://babeljs.io/ : MIT License -@babel/types 7.27.1: https://babeljs.io/ : MIT License -@babel/types 7.28.0: https://babeljs.io/ : MIT License +babel-traverse 7.28.5: https://babeljs.io/ : MIT License +@babel/types 7.28.5: https://babeljs.io/ : MIT License balanced-match 1.0.2: https://github.com/juliangruber/balanced-match : MIT License +baseline-browser-mapping 2.8.20: https://github.com/tonypconway/web-features/tree/main#readme : Apache License 2.0 @bcoe/v8-coverage 0.2.3: https://www.npmjs.com/package/@bcoe/v8-coverage : MIT License beorn7-perks v1.0.1: https://github.com/beorn7/perks : MIT License bigfft 20230129-snapshot-24d4a6f8: https://github.com/remyoudompheng/bigfft : BSD 3-clause "New" or "Revised" License -blackfriday v2.1.0: https://github.com/russross/blackfriday : BSD 2-clause "Simplified" License +blackfriday v2.1.0-pre.1: https://github.com/russross/blackfriday : BSD 2-clause "Simplified" License body v5.1.0: https://github.com/Raynos/body : MIT License boolbase 1.0.0 : ISC License -brace-expansion 1.1.11: https://github.com/juliangruber/brace-expansion : MIT License -brace-expansion 2.0.1: https://github.com/juliangruber/brace-expansion : MIT License @braintree/sanitize-url 7.0.1: https://github.com/braintree/sanitize-url#readme : MIT License -browserify/resolve 1.22.8: https://github.com/browserify/resolve : MIT License +browserify/resolve 1.22.11: https://github.com/browserify/resolve : MIT License browserify/resolve 2.0.0-next.5: https://github.com/browserify/resolve : MIT License -browserslist 4.23.3: https://github.com/ai/browserslist : MIT License -browserslist 4.24.0: https://github.com/ai/browserslist : MIT License -bufbuild/protocompile v0.4.0 : Apache License 2.0 +browserslist 4.27.0: https://github.com/ai/browserslist : MIT License +bufbuild/protocompile v0.14.1 : Apache License 2.0 buffer-from 1.1.2: https://github.com/linusu/buffer-from#readme : MIT License buger/jsonparser 1.1.1: https://github.com/buger/jsonparser/ : MIT License BurntSushi/toml v1.5.0: https://github.com/BurntSushi/toml : MIT License bytes.js 1.0.0: https://github.com/visionmedia/bytes.js : MIT License -cacache 18.0.4: https://github.com/zkat/cacache#readme : ISC License +cacache 19.0.1: https://github.com/zkat/cacache#readme : ISC License calculate-size 1.1.1: https://github.com/schickling/calculate-size : MIT License -call-bind 1.0.7: https://github.com/ljharb/call-bind#readme : MIT License call-bind 1.0.8: https://github.com/ljharb/call-bind#readme : MIT License call-bind-apply-helpers 1.0.2: https://github.com/ljharb/call-bind-apply-helpers#readme : MIT License call-bound 1.0.4: https://github.com/hamzahamru/call-bound#readme : MIT License callsites 3.1.0: https://github.com/sindresorhus/callsites : MIT License camelcase 5.3.1: https://github.com/sindresorhus/camelcase : MIT License camelcase 6.3.0: https://github.com/sindresorhus/camelcase : MIT License -caniuse-lite 1.0.30001660: https://github.com/ben-eb/caniuse-lite : Creative Commons Attribution 4.0 -caniuse-lite 1.0.30001668: https://github.com/ben-eb/caniuse-lite : Creative Commons Attribution 4.0 +caniuse-lite 1.0.30001751: https://github.com/ben-eb/caniuse-lite : Creative Commons Attribution 4.0 cenkalti/backoff v4.3.0: https://github.com/cenkalti/backoff : MIT License +cenkalti/backoff v5.0.3: https://github.com/cenkalti/backoff : MIT License cespare/xxhash v2.3.0: https://github.com/cespare/xxhash : MIT License -Chalk 2.4.2: https://github.com/sindresorhus/chalk : MIT License -Chalk 3.0.0: https://github.com/sindresorhus/chalk : MIT License Chalk 4.1.2: https://github.com/sindresorhus/chalk : MIT License character-entities 2.0.2: https://github.com/wooorm/character-entities#readme : MIT License char-regex 1.0.2: https://github.com/Richienb/char-regex#readme : MIT License -cheerio 1.1.0: https://github.com/MatthewMueller/cheerio : MIT License +cheerio 1.1.2: https://github.com/MatthewMueller/cheerio : MIT License cheerio-select 2.1.0: https://github.com/cheeriojs/cheerio-select#readme : BSD 2-clause "Simplified" License -chokidar 4.0.1: https://github.com/paulmillr/chokidar : MIT License chokidar 4.0.3: https://github.com/paulmillr/chokidar : MIT License -chownr 2.0.0: https://github.com/isaacs/chownr : ISC License +chownr 3.0.0: https://github.com/isaacs/chownr : ISC License chrisdickinson/raf 3.4.1: https://github.com/chrisdickinson/raf : MIT License -chromedp/cdproto 20250429-snapshot-6ed5b534: https://github.com/chromedp/cdproto : MIT License +chromedp/cdproto 20250803-snapshot-d308e07a: https://github.com/chromedp/cdproto : MIT License chromedp/sysutil v1.1.0: https://github.com/chromedp/sysutil : MIT License ci-info 3.9.0: https://github.com/watson/ci-info : MIT License -ci-info 4.3.0: https://github.com/watson/ci-info : MIT License +ci-info 4.3.1: https://github.com/watson/ci-info : MIT License cjs-module-lexer 2.1.0: https://github.com/guybedford/cjs-module-lexer#readme : MIT License classnames 2.5.1: https://github.com/JedWatson/classnames : MIT License -clean-stack 2.2.0: https://github.com/sindresorhus/clean-stack#readme : MIT License -client_golang v1.22.0: https://github.com/prometheus/client_golang : Apache License 2.0 +client_golang v1.23.2: https://github.com/prometheus/client_golang : Apache License 2.0 +clipperhouse/displaywidth v0.6.2: https://github.com/clipperhouse/displaywidth : MIT License +clipperhouse/uax29 v2.3.0: https://github.com/clipperhouse/uax29 : MIT License cliui 8.0.1: https://github.com/yargs/cliui : ISC License clone-deep 4.0.1: https://github.com/jonschlinkert/clone-deep : MIT License clsx 2.1.1: https://github.com/lukeed/clsx#readme : MIT License co 4.6.0: https://github.com/visionmedia/co : MIT License cockroachdb/apd v3.2.1: https://godoc.org/github.com/cockroachdb/apd : Apache License 2.0 -collect-v8-coverage 1.0.2: https://github.com/SimenB/collect-v8-coverage#readme : MIT License +collect-v8-coverage 1.0.3: https://github.com/SimenB/collect-v8-coverage#readme : MIT License colorette 2.0.20: https://github.com/jorgebucaran/colorette : MIT License -color-name 1.1.3: https://github.com/colorjs/color-name : MIT License color-name 1.1.4: https://github.com/colorjs/color-name : MIT License Commander.js 12.1.0: https://github.com/tj/commander.js : MIT License Commander.js 7.2.0: https://github.com/tj/commander.js : MIT License Commander.js v2.20.3: https://github.com/tj/commander.js : MIT License comment-parser 1.4.1: https://github.com/yavorskiy/comment-parser : MIT License -compute-scroll-into-view 3.1.0: https://scroll-into-view-if-needed.netlify.com : MIT License -containerd/console 1.0.3: https://github.com/containerd/console : Apache License 2.0 +compute-scroll-into-view 3.1.1: https://scroll-into-view-if-needed.netlify.com : MIT License +containerd/console v1.0.5: https://github.com/containerd/console : Apache License 2.0 continuable-cache 0.3.1: https://github.com/Raynos/continuable-cache : MIT License convert-source-map 1.9.0: https://github.com/thlorenz/convert-source-map : MIT License convert-source-map 2.0.0: https://github.com/thlorenz/convert-source-map : MIT License copy-to-clipboard 3.3.3: https://github.com/sudodoki/copy-to-clipboard#readme : MIT License -copy-webpack-plugin 13.0.0: https://github.com/kevlened/copy-webpack-plugin : MIT License +copy-webpack-plugin 13.0.1: https://github.com/kevlened/copy-webpack-plugin : MIT License cosmiconfig 7.1.0: https://github.com/davidtheclark/cosmiconfig#readme : MIT License cosmiconfig 8.3.6: https://github.com/davidtheclark/cosmiconfig#readme : MIT License -coveo/exponential-backoff 3.1.1: https://github.com/coveo/exponential-backoff#readme : Apache License 2.0 -cpuguy83-go-md2man v2.0.7: https://github.com/cpuguy83/go-md2man : MIT License +coveo/exponential-backoff 3.1.3: https://github.com/coveo/exponential-backoff#readme : Apache License 2.0 +cpuguy83-go-md2man 2.0.7: https://github.com/cpuguy83/go-md2man : MIT License creasty/defaults v1.8.0: https://github.com/creasty/defaults : MIT License create-require 1.1.1: https://github.com/nuxt-contrib/create-require#readme : MIT License @cspotcode/source-map-support 0.8.1: https://github.com/cspotcode/node-source-map-support#readme : MIT License css-box-model 1.2.1: https://github.com/alexreardon/css-box-model#readme : MIT License -csscolorparser 1.0.3: https://github.com/deanm/css-color-parser-js : MIT License cssesc 3.0.0: https://github.com/mathiasbynens/cssesc : MIT License css.escape 1.5.1: https://github.com/mathiasbynens/css.escape : MIT License cssfilter 0.0.10: https://github.com/leizongmin/js-css-filter : MIT License @@ -234,9 +195,9 @@ css-in-js-utils 3.1.0: https://github.com/rofrischmann/css-in-js-utils : MIT Lic css-loader 7.1.2: https://github.com/webpack/css-loader : MIT License CSSselect 5.2.2: https://github.com/fb55/css-select : BSD 2-clause "Simplified" License cssstyle 4.6.0: https://www.npmjs.com/package/cssstyle : MIT License -@csstools/color-helpers 5.0.2: https://github.com/csstools/postcss-plugins/tree/main/packages/color-helpers#readme : MIT License +@csstools/color-helpers 5.1.0: https://github.com/csstools/postcss-plugins/tree/main/packages/color-helpers#readme : MIT License @csstools/css-calc 2.1.4: https://github.com/csstools/postcss-plugins/tree/main/packages/css-calc#readme : MIT License -@csstools/css-color-parser 3.0.10: https://github.com/csstools/postcss-plugins/tree/main/packages/css-color-parser#readme : MIT License +@csstools/css-color-parser 3.1.0: https://github.com/csstools/postcss-plugins/tree/main/packages/css-color-parser#readme : MIT License @csstools/css-parser-algorithms 3.0.5: https://github.com/csstools/postcss-plugins/tree/main/packages/css-parser-algorithms#readme : MIT License @csstools/css-tokenizer 3.0.4: https://github.com/csstools/postcss-plugins/tree/main/packages/css-tokenizer#readme : MIT License css-tree 1.1.3: https://github.com/csstree/parser : MIT License @@ -279,12 +240,11 @@ data-view-buffer 1.0.2: https://github.com/ljharb/data-view-buffer#readme : MIT data-view-byte-length 1.0.2: https://github.com/ljharb/data-view-byte-length#readme : MIT License data-view-byte-offset 1.0.1: https://github.com/ljharb/data-view-byte-offset#readme : MIT License date-fns/date-fns 4.1.0: https://github.com/date-fns/date-fns : MIT License -debug-js/debug 3.2.7: https://github.com/visionmedia/debug : MIT License -debug-js/debug 4.3.7: https://github.com/visionmedia/debug : MIT License -debug-js/debug 4.4.1: https://github.com/visionmedia/debug : MIT License +debug-js/debug 3.2.7: https://github.com/debug-js/debug : MIT License +debug-js/debug 4.4.3: https://github.com/debug-js/debug : MIT License decimal.js 10.6.0: https://github.com/MikeMcl/decimal.js : MIT License decode-named-character-reference 1.2.0: https://github.com/wooorm/decode-named-character-reference#readme : MIT License -dedent 1.6.0: https://github.com/dmnd/dedent : MIT License +dedent 1.7.0: https://github.com/dmnd/dedent : MIT License deep-is 0.1.4: https://github.com/thlorenz/deep-is : MIT License deepmerge 4.3.1: https://github.com/TehShrike/deepmerge : MIT License define-data-property 1.1.4: https://github.com/ljharb/define-data-property#readme : MIT License @@ -304,48 +264,42 @@ dom-css 2.1.0: https://github.com/mattdesl/dom-css : MIT License domelementtype 2.3.0: https://github.com/FB55/domelementtype : BSD 2-clause "Simplified" License DomHandler 5.0.3: https://github.com/fb55/DomHandler : BSD 2-clause "Simplified" License dom-helpers 5.2.1: https://github.com/jquense/dom-helpers : MIT License -DOMPurify 3.2.5: https://cure53.de/purify : (Apache License 2.0 OR Mozilla Public License 2.0) +DOMPurify 3.3.0: https://cure53.de/purify : (Apache License 2.0 OR Mozilla Public License 2.0) dom-serializer 2.0.0: https://github.com/cheeriojs/dom-renderer : MIT License domutils 3.2.2: https://github.com/FB55/domutils : BSD 2-clause "Simplified" License -downshift 9.0.8: https://github.com/paypal/downshift#readme : MIT License +downshift 9.0.10: https://github.com/paypal/downshift#readme : MIT License dunder-proto 1.0.1: https://github.com/es-shims/dunder-proto#readme : MIT License dvtng/react-loading-skeleton 3.5.0: https://github.com/dvtng/react-loading-skeleton#readme : MIT License -earcut 2.2.4: https://github.com/mapbox/earcut : ISC License +earcut 3.0.2: https://github.com/mapbox/earcut : ISC License eastasianwidth 0.2.0: https://github.com/komagata/eastasianwidth#readme : MIT License einaros/ws 8.18.3: https://github.com/einaros/ws : MIT License -electron-to-chromium 1.5.20: https://github.com/kilian/electron-to-chromium : ISC License -electron-to-chromium 1.5.36: https://github.com/kilian/electron-to-chromium : ISC License +electron-to-chromium 1.5.243: https://github.com/kilian/electron-to-chromium : ISC License emittery 0.13.1: https://github.com/sindresorhus/emittery : MIT License -@emnapi/core 1.4.4: https://github.com/toyobayashi/emnapi#readme : MIT License -@emnapi/runtime 1.4.4: https://github.com/toyobayashi/emnapi#readme : MIT License -@emnapi/wasi-threads 1.0.3: https://github.com/toyobayashi/emnapi#readme : MIT License +@emnapi/core 1.6.0: https://github.com/toyobayashi/emnapi#readme : MIT License +@emnapi/runtime 1.6.0: https://github.com/toyobayashi/emnapi#readme : MIT License +@emnapi/wasi-threads 1.1.0: https://github.com/toyobayashi/emnapi#readme : MIT License emoji-regex 9.2.2: https://github.com/mathiasbynens/emoji-regex : MIT License emoji-regex v8.0.0: https://github.com/mathiasbynens/emoji-regex : MIT License -@emotion/babel-plugin 11.12.0: https://emotion.sh : MIT License @emotion/babel-plugin 11.13.5: https://emotion.sh : MIT License -@emotion/cache 11.13.1: https://github.com/emotion-js/emotion/tree/main#readme : MIT License @emotion/cache 11.14.0: https://github.com/emotion-js/emotion/tree/main#readme : MIT License @emotion/css 11.13.5: https://emotion.sh : MIT License @emotion/hash 0.9.2: https://github.com/emotion-js/emotion/tree/main#readme : MIT License @emotion/memoize 0.9.0: https://github.com/emotion-js/emotion/tree/main#readme : MIT License -@emotion/react 11.13.3: https://github.com/emotion-js/emotion/tree/main#readme : MIT License @emotion/react 11.14.0: https://github.com/emotion-js/emotion/tree/main#readme : MIT License -@emotion/serialize 1.3.1: https://github.com/emotion-js/emotion/tree/main#readme : MIT License @emotion/serialize 1.3.3: https://github.com/emotion-js/emotion/tree/main#readme : MIT License @emotion/sheet 1.4.0: https://github.com/emotion-js/emotion/tree/main#readme : MIT License @emotion/unitless 0.10.0: https://github.com/emotion-js/emotion/tree/main#readme : MIT License -@emotion/use-insertion-effect-with-fallbacks 1.1.0: https://github.com/emotion-js/emotion/tree/main#readme : MIT License @emotion/use-insertion-effect-with-fallbacks 1.2.0: https://github.com/emotion-js/emotion/tree/main#readme : MIT License -@emotion/utils 1.4.0: https://github.com/emotion-js/emotion/tree/main#readme : MIT License @emotion/utils 1.4.2: https://github.com/emotion-js/emotion/tree/main#readme : MIT License @emotion/weak-memoize 0.4.0: https://github.com/emotion-js/emotion/tree/main#readme : MIT License encoding v0.1.13: https://www.npmjs.com/package/encoding : MIT License encoding-sniffer 0.2.1: https://github.com/fb55/encoding-sniffer#readme : MIT License -enhanced-resolve 5.18.2: http://github.com/webpack/enhanced-resolve : MIT License -envinfo 7.14.0: https://github.com/tabrindle/envinfo#readme : MIT License -envoyproxy/go-control-plane envoy/v1.32.4: https://github.com/envoyproxy/go-control-plane : Apache License 2.0 +enhanced-resolve 5.18.3: http://github.com/webpack/enhanced-resolve : MIT License +envinfo 7.19.0: https://github.com/tabrindle/envinfo#readme : MIT License +envoyproxy/go-control-plane 20251024-snapshot-75eaa193: https://github.com/envoyproxy/go-control-plane : Apache License 2.0 +envoyproxy/go-control-plane envoy/v1.35.0: https://github.com/envoyproxy/go-control-plane : Apache License 2.0 envoyproxy/go-control-plane ratelimit/v0.1.0: https://github.com/envoyproxy/go-control-plane : Apache License 2.0 -envoyproxy/go-control-plane v0.13.4: https://github.com/envoyproxy/go-control-plane : Apache License 2.0 +envoyproxy/protoc-gen-validate 1.2.1: https://github.com/envoyproxy/protoc-gen-validate : Apache License 2.0 env-paths 2.2.1: https://github.com/sindresorhus/env-paths#readme : MIT License enzymejs 1.0.7: https://enzymejs.github.io/enzyme/ : MIT License enzymejs 3.11.0: https://enzymejs.github.io/enzyme/ : MIT License @@ -356,43 +310,43 @@ error-stack-parser 2.1.4: https://github.com/stacktracejs/error-stack-parser : M es-abstract 1.24.0: https://github.com/ljharb/es-abstract : MIT License es-array-method-boxes-properly 1.0.0: https://github.com/ljharb/es-array-method-boxes-properly#readme : MIT License escalade 3.2.0: https://github.com/lukeed/escalade#readme : MIT License -escape-string-regexp 1.0.5: https://github.com/sindresorhus/escape-string-regexp : MIT License escape-string-regexp 5.0.0: https://github.com/sindresorhus/escape-string-regexp : MIT License escape-string-regexp v2.0.0: https://github.com/sindresorhus/escape-string-regexp : MIT License escape-string-regexp v4.0.0: https://github.com/sindresorhus/escape-string-regexp : MIT License -es-define-property 1.0.0: https://github.com/ljharb/es-define-property#readme : MIT License es-define-property 1.0.1: https://github.com/ljharb/es-define-property#readme : MIT License es-errors 1.3.0: https://github.com/ljharb/es-errors#readme : MIT License es-iterator-helpers 1.2.1: https://github.com/es-shims/iterator-helpers#readme : MIT License -@es-joy/jsdoccomment 0.52.0: https://github.com/brettz9/getJSDocComment : MIT License -ESLint 9.30.1: http://eslint.org/ : MIT License -@eslint-community/eslint-utils 4.7.0: https://github.com/eslint-community/eslint-utils#readme : MIT License -@eslint-community/regexpp 4.12.1: https://github.com/eslint-community/regexpp#readme : MIT License -@eslint/config-array 0.21.0: https://github.com/eslint/rewrite#readme : Apache License 2.0 -@eslint/config-helpers 0.3.0: https://github.com/eslint/rewrite/tree/main/packages/config-helpers#readme : Apache License 2.0 +@es-joy/jsdoccomment 0.76.0: https://github.com/brettz9/getJSDocComment : MIT License +@es-joy/resolve.exports 1.2.0: https://github.com/es-joy/resolve.exports#readme : MIT License +ESLint 9.38.0: http://eslint.org/ : MIT License +@eslint-community/eslint-utils 4.9.0: https://github.com/eslint-community/eslint-utils#readme : MIT License +@eslint-community/regexpp 4.12.2: https://github.com/eslint-community/regexpp#readme : MIT License +@eslint/config-array 0.21.1: https://github.com/eslint/rewrite#readme : Apache License 2.0 +@eslint/config-helpers 0.4.1: https://github.com/eslint/rewrite/tree/main/packages/config-helpers#readme : Apache License 2.0 eslint-config-prettier 10.1.8: https://github.com/lydell/eslint-config-prettier#readme : MIT License @eslint/core 0.12.0: https://github.com/eslint/rewrite#readme : Apache License 2.0 @eslint/core 0.13.0: https://github.com/eslint/rewrite#readme : Apache License 2.0 @eslint/core 0.14.0: https://github.com/eslint/rewrite#readme : Apache License 2.0 -@eslint/core 0.15.1: https://github.com/eslint/rewrite#readme : Apache License 2.0 +@eslint/core 0.15.2: https://github.com/eslint/rewrite#readme : Apache License 2.0 +@eslint/core 0.16.0: https://github.com/eslint/rewrite#readme : Apache License 2.0 @eslint/css 0.9.0: https://github.com/eslint/css#readme : Apache License 2.0 -@eslint/css-tree 3.6.2: https://github.com/eslint/csstree#readme : MIT License +@eslint/css-tree 3.6.6: https://github.com/eslint/csstree#readme : MIT License @eslint/eslintrc 3.3.1: https://github.com/eslint/eslintrc#readme : MIT License -@eslint/js 9.30.1: https://eslint.org : MIT License -@eslint/js 9.31.0: https://eslint.org : MIT License +@eslint/js 9.38.0: https://eslint.org : MIT License @eslint/json 0.12.0: https://github.com/eslint/json#readme : Apache License 2.0 @eslint/markdown 6.6.0: https://github.com/eslint/markdown#readme : MIT License -@eslint/object-schema 2.1.6: https://github.com/eslint/rewrite#readme : Apache License 2.0 +@eslint/object-schema 2.1.7: https://github.com/eslint/rewrite#readme : Apache License 2.0 @eslint/plugin-kit 0.2.8: https://github.com/eslint/rewrite#readme : Apache License 2.0 -@eslint/plugin-kit 0.3.3: https://github.com/eslint/rewrite#readme : Apache License 2.0 -eslint-plugin-prettier 5.5.3: https://github.com/not-an-aardvark/eslint-plugin-prettier#readme : MIT License -eslint-plugin-react-hooks 5.2.0: https://reactjs.org/ : MIT License +@eslint/plugin-kit 0.3.5: https://github.com/eslint/rewrite#readme : Apache License 2.0 +@eslint/plugin-kit 0.4.0: https://github.com/eslint/rewrite#readme : Apache License 2.0 +eslint-plugin-prettier 5.5.4: https://github.com/not-an-aardvark/eslint-plugin-prettier#readme : MIT License +eslint-plugin-react-hooks 7.0.1: https://reactjs.org/ : MIT License eslint-scope 8.4.0: https://github.com/eslint/eslint-scope : BSD 2-clause "Simplified" License eslint-scope v5.1.1: https://github.com/eslint/eslint-scope : BSD 2-clause "Simplified" License eslint-visitor-keys 3.4.3: https://github.com/eslint/eslint-visitor-keys#readme : Apache License 2.0 eslint-visitor-keys 4.2.1: https://github.com/eslint/eslint-visitor-keys#readme : Apache License 2.0 eslint-webpack-plugin 5.0.2: https://github.com/webpack-contrib/eslint-webpack-plugin : MIT License -es-module-lexer 1.5.4: https://github.com/guybedford/es-module-lexer#readme : MIT License +es-module-lexer 1.7.0: https://github.com/guybedford/es-module-lexer#readme : MIT License es-object-atoms 1.1.1: https://github.com/ljharb/es-object-atoms#readme : MIT License espree 10.4.0: https://github.com/eslint/espree : BSD 2-clause "Simplified" License Esprima 4.0.1: http://esprima.org : BSD 2-clause "Simplified" License @@ -407,9 +361,9 @@ esutils 2.0.3: https://github.com/Constellation/esutils : BSD 2-clause "Simplifi eventemitter3 5.0.1: https://github.com/primus/eventemitter3 : MIT License execa 5.1.1: https://github.com/sindresorhus/execa : MIT License exit-x 0.2.2: https://github.com/cowboy/node-exit : MIT License -exp 20250430-snapshot-ce4c2cf3: http://code.google.com/p/go.exp : BSD 3-clause "New" or "Revised" License -expect 30.0.4: https://github.com/mjackson/expect : MIT License -expressjs/mime-types 2.1.35: https://github.com/expressjs/mime-types : MIT License +exp 20250929-snapshot-27f1f14c: http://code.google.com/p/go.exp : BSD 3-clause "New" or "Revised" License +expect 30.2.0: https://github.com/mjackson/expect : MIT License +facebookhermes 0.25.1: https://hermesengine.dev/ : MIT License fast_array_intersect 1.1.0: https://github.com/lovasoa/fast_array_intersect#readme : MIT License fastcache v1.12.2: https://github.com/VictoriaMetrics/fastcache : MIT License fast-deep-equal v3.1.3: https://github.com/epoberezkin/fast-deep-equal : MIT License @@ -421,11 +375,10 @@ fast-json-stable-stringify 2.1.0: https://github.com/epoberezkin/fast-json-stabl fast-levenshtein 2.0.6: https://github.com/hiddentao/fast-levenshtein : MIT License fastq 1.19.1: https://github.com/mcollina/fastqueue#readme : ISC License fast-shallow-equal 1.0.0: https://github.com/streamich/fast-shallow-equal#readme : Public Domain -fast-uri 3.0.1: https://github.com/fastify/fast-uri : MIT License +fast-uri 3.1.0: https://github.com/fastify/fast-uri : BSD 3-clause "New" or "Revised" License fatih-color v1.18.0: http://godoc.org/github.com/fatih/color : MIT License fault 2.0.1: https://github.com/wooorm/fault : MIT License -faye-websocket-node 0.10.0: https://github.com/faye/faye-websocket-node : MIT License -fdir 6.4.4: https://github.com/thecodrr/fdir#readme : MIT License +fdir 6.5.0: https://github.com/thecodrr/fdir#readme : MIT License felixge/httpsnoop v1.0.4: https://github.com/felixge/httpsnoop : MIT License felixge/node-retry v0.12.0: https://github.com/tim-kos/node-retry : MIT License file-entry-cache 8.0.0: https://github.com/royriojas/file-entry-cache : MIT License @@ -434,61 +387,66 @@ fill-range 7.1.1: https://github.com/jonschlinkert/fill-range : MIT License find-root 1.1.0: https://github.com/agilemd/find-root#readme : MIT License find-up v4.1.0: https://github.com/sindresorhus/find-up : MIT License find-up v5.0.0: https://github.com/sindresorhus/find-up : MIT License -FlatBuffers 25.2.10: http://google.github.io/flatbuffers/ : Apache License 2.0 +FlatBuffers 25.12.19: http://google.github.io/flatbuffers/ : Apache License 2.0 flat-cache 4.0.1: https://github.com/royriojas/flat-cache : MIT License flatted 3.3.3: https://github.com/WebReflection/flatted#readme : ISC License -@floating-ui/core 1.6.7: https://floating-ui.com : MIT License -@floating-ui/dom 1.6.10: https://floating-ui.com : MIT License -@floating-ui/react 0.27.7: https://floating-ui.com/docs/react : MIT License -@floating-ui/react-dom 2.1.2: https://floating-ui.com/docs/react-dom : MIT License -@floating-ui/utils 0.2.7: https://floating-ui.com : MIT License -@floating-ui/utils 0.2.9: https://floating-ui.com : MIT License -foreground-child 3.3.0: https://github.com/isaacs/foreground-child : ISC License +@floating-ui/core 1.7.3: https://floating-ui.com : MIT License +@floating-ui/dom 1.7.4: https://floating-ui.com : MIT License +@floating-ui/react 0.27.16: https://floating-ui.com/docs/react : MIT License +@floating-ui/react-dom 2.1.6: https://floating-ui.com/docs/react-dom : MIT License +@floating-ui/utils 0.2.10: https://floating-ui.com : MIT License foreground-child 3.3.1: https://github.com/isaacs/foreground-child : ISC License fork-ts-checker-webpack-plugin 9.1.0: https://github.com/Realytics/fork-ts-checker-webpack-plugin#readme : MIT License -@formatjs/ecma402-abstract 2.0.0: https://github.com/formatjs/formatjs : MIT License -@formatjs/fast-memoize 2.2.0: https://github.com/formatjs/formatjs#readme : MIT License -@formatjs/icu-messageformat-parser 2.7.8: https://github.com/formatjs/formatjs#readme : MIT License -@formatjs/icu-skeleton-parser 1.8.2: https://github.com/formatjs/formatjs#readme : MIT License -@formatjs/intl-localematcher 0.5.4: https://github.com/formatjs/formatjs#readme : MIT License +@formatjs/ecma402-abstract 2.3.6: https://github.com/formatjs/formatjs : MIT License +@formatjs/fast-memoize 2.2.7: https://github.com/formatjs/formatjs#readme : MIT License +@formatjs/icu-messageformat-parser 2.11.4: https://github.com/formatjs/formatjs#readme : MIT License +@formatjs/icu-skeleton-parser 1.8.16: https://github.com/formatjs/formatjs#readme : MIT License +@formatjs/intl-durationformat 0.7.6: https://github.com/formatjs/formatjs#readme : MIT License +@formatjs/intl-localematcher 0.6.2: https://github.com/formatjs/formatjs#readme : MIT License fsevents 2.3.2: https://github.com/fsevents/fsevents : MIT License fsevents 2.3.3: https://github.com/fsevents/fsevents : MIT License fs-minipass 3.0.3: https://github.com/npm/fs-minipass : ISC License -fs-minipass v2.1.0: https://github.com/npm/fs-minipass : ISC License -fs-monkey 1.0.6: https://github.com/streamich/fs-monkey#readme : The Unlicense +fs-monkey 1.1.0: https://github.com/streamich/fs-monkey#readme : The Unlicense fsnotify-fsnotify v1.4.7: https://fsnotify.org : BSD 3-clause "New" or "Revised" License fs.realpath 1.0.0: https://github.com/isaacs/fs.realpath#readme : ISC License function-bind 1.1.2: https://github.com/Raynos/function-bind : MIT License function.prototype.name 1.1.8: https://github.com/ljharb/function.prototype.name#readme : MIT License functions-have-names 1.2.3: https://github.com/ljharb/functions-have-names#readme : MIT License -gajus/eslint-plugin-jsdoc 51.4.1: https://github.com/gajus/eslint-plugin-jsdoc#readme : BSD 3-clause "New" or "Revised" License +gajus/eslint-plugin-jsdoc 61.1.10: https://github.com/gajus/eslint-plugin-jsdoc#readme : BSD 3-clause "New" or "Revised" License +generator-function 2.0.1: https://github.com/timothygu/generator-function#readme : MIT License gensync 1.0.0-beta.2: https://github.com/loganfsmyth/gensync : MIT License geotiff 2.1.3: https://github.com/constantinius/geotiff.js#readme : MIT License get-caller-file 2.0.5: https://github.com/stefanpenner/get-caller-file : ISC License get-document 1.0.0: https://github.com/component/get-document : MIT License -get-intrinsic 1.2.4: https://github.com/ljharb/get-intrinsic#readme : MIT License -get-intrinsic 1.3.0: https://github.com/ljharb/get-intrinsic#readme : MIT License -getkin/kin-openapi v0.132.0: https://github.com/getkin/kin-openapi : MIT License +get-intrinsic 1.3.1: https://github.com/ljharb/get-intrinsic#readme : MIT License +getkin/kin-openapi v0.133.0: https://github.com/getkin/kin-openapi : MIT License get-package-type 0.1.0: https://github.com/cfware/get-package-type#readme : MIT License get-proto 1.0.1: https://github.com/ljharb/get-proto#readme : MIT License get-stream 6.0.1: https://github.com/sindresorhus/get-stream : MIT License get-symbol-description 1.1.0: https://github.com/inspect-js/get-symbol-description#readme : MIT License -get-user-locale 2.3.2: https://github.com/wojtekmaj/get-user-locale#readme : MIT License +get-user-locale 3.0.0: https://github.com/wojtekmaj/get-user-locale#readme : MIT License get-window 1.1.2: https://github.com/webmodules/get-window : MIT License -github.com/antihax/optional 1.0.0: https://pkg.go.dev/github.com/antihax/optional : MIT License -github.com/antlr4-go/antlr v4.13.1 : BSD 3-clause "New" or "Revised" License -github.com/apache/arrow-go v18.2.0 : Apache License 2.0 +github.com/antihax/optional 1.0.0: https://github.com/antihax/optional : MIT License +github.com/antlr4-go/antlr v4.13.1: https://github.com/antlr4-go/antlr : BSD 3-clause "New" or "Revised" License +github.com/apache/arrow-go v18.5.1-rc0: https://github.com/apache/arrow-go : Apache License 2.0 github.com/atomicgo/cursor 0.2.0: https://github.com/atomicgo/cursor : Expat License +github.com/bahlo/generic-list-go 0.2.0: https://github.com/bahlo/generic-list-go : BSD 3-clause "New" or "Revised" License github.com/bufbuild/protovalidate-go v0.12.0 : Apache License 2.0 github.com/cheekybits/genny v1.0.0: https://github.com/cheekybits/genny : MIT License -github.com/cncf/xds 20250121-snapshot-2f005788 : Apache License 2.0 +github.com/clipperhouse/stringish v0.1.1: https://github.com/clipperhouse/stringish : MIT License +github.com/cncf/xds 20251022-snapshot-0feb6915: https://github.com/cncf/xds : Apache License 2.0 +github.com/coder/websocket v1.8.14: https://github.com/coder/websocket : ISC License github.com/docopt/docopt-go 20181101-snapshot-ee0de3bc: https://github.com/docopt/docopt-go : MIT License github.com/go-json-experiment/json 20250211-snapshot-1ae217ad : BSD 3-clause "New" or "Revised" License -github.com/google/cel-spec v0.23.1: https://github.com/google/cel-spec : Apache License 2.0 +github.com/google/cel-spec v0.24.0: https://github.com/google/cel-spec : Apache License 2.0 +github.com/go-viper/mapstructure v2.4.0: https://github.com/go-viper/mapstructure : MIT License github.com/grafana/otel-profiling-go v0.5.1 : Apache License 2.0 -github.com/grafana/pyroscope-go godeltaprof/v0.1.8 : Apache License 2.0 +github.com/grafana/pyroscope-go godeltaprof/v0.1.9 : Apache License 2.0 github.com/munnerz/goautoneg 20191010-snapshot-a7dc8b61: https://github.com/munnerz/goautoneg : BSD 3-clause "New" or "Revised" License -github.com/planetscale/vtprotobuf 20240319-snapshot-0393e58b : BSD 3-clause "New" or "Revised" License +github.com/olekukonko/cat 20250911-snapshot-50322a06: https://github.com/olekukonko/cat : MIT License +github.com/olekukonko/errors v1.1.0: https://github.com/olekukonko/errors : Expat License +github.com/olekukonko/ll 20260115-snapshot-9e59c228: https://github.com/olekukonko/ll : MIT License +github.com/planetscale/vtprotobuf 20240319-snapshot-0393e58b: https://github.com/planetscale/vtprotobuf : BSD 3-clause "New" or "Revised" License github.com/rivo/uniseg v0.4.7: https://github.com/rivo/uniseg : MIT License github.com/rogpeppe/fastuuid v1.2.0: https://github.com/rogpeppe/fastuuid : BSD 3-clause "New" or "Revised" License github-slugger 2.0.0: https://github.com/Flet/github-slugger : ISC License @@ -504,95 +462,96 @@ glob-parent 5.1.2: https://github.com/es128/glob-parent : ISC License glob-parent 6.0.2: https://github.com/es128/glob-parent : ISC License glob-to-regexp 0.4.1: https://github.com/fitzgen/glob-to-regexp : BSD 2-clause "Simplified" License goccy/go-json v0.10.5: https://github.com/goccy/go-json : MIT License -goccy/go-yaml v1.11.0: https://github.com/goccy/go-yaml : MIT License +goccy/go-yaml v1.17.1: https://github.com/goccy/go-yaml : MIT License go-check-check 20201130-snapshot-10cb9826: http://labix.org/gocheck : BSD 2-clause "Simplified" License goconvey 20190121-snapshot-044398e4: https://github.com/smartystreets/goconvey : MIT License godebug v1.1.0: https://github.com/kylelemons/godebug : Apache License 2.0 GoDoc Text v0.2.0: http://godoc.org/github.com/kr/text : MIT License +gogo/googleapis v1.4.1: https://github.com/gogo/googleapis : Apache License 2.0 gogo/protobuf v1.3.2: http://github.com/gogo/protobuf/ : BSD 3-clause "New" or "Revised" License go humanize 1.0.1: http://github.com/dustin/go-humanize : MIT License -go-jose v4.0.4: https://github.com/go-jose/go-jose : Apache License 2.0 -golang/glog v1.2.4: https://github.com/golang/glog : Apache License 2.0 -golang.org/x/crypto v0.38.0: https://godoc.org/golang.org/x/crypto : BSD 3-clause "New" or "Revised" License -golang.org/x/mod v0.24.0 : BSD 3-clause "New" or "Revised" License -golang.org/x/net v0.40.0: https://godoc.org/golang.org/x/net : BSD 3-clause "New" or "Revised" License -golang.org/x/oauth2 v0.29.0: https://pkg.go.dev/golang.org/x/oauth2 : BSD 3-clause "New" or "Revised" License -golang.org/x/sys v0.33.0: https://pkg.go.dev/golang.org/x/sync : BSD 3-clause "New" or "Revised" License -golang.org/x/term v0.32.0: https://go.googlesource.com/term : BSD 3-clause "New" or "Revised" License -golang.org/x/tools v0.33.0: https://pkg.go.dev/golang.org/x/tools : BSD 3-clause "New" or "Revised" License +go-jose v4.1.3: https://github.com/go-jose/go-jose : Apache License 2.0 +golang/glog v1.2.5: https://github.com/golang/glog : Apache License 2.0 +golang-jwt/jwt v5.3.0: https://github.com/golang-jwt/jwt : MIT License +golang.org/x/crypto v0.47.0: https://godoc.org/golang.org/x/crypto : BSD 3-clause "New" or "Revised" License +golang.org/x/mod v0.32.0: https://go.googlesource.com/mod : BSD 3-clause "New" or "Revised" License +golang.org/x/net v0.49.0: https://godoc.org/golang.org/x/net : BSD 3-clause "New" or "Revised" License +golang.org/x/oauth2 v0.35.0: https://pkg.go.dev/golang.org/x/oauth2 : BSD 3-clause "New" or "Revised" License +golang.org/x/sys v0.40.0: https://pkg.go.dev/golang.org/x/sync : BSD 3-clause "New" or "Revised" License +golang.org/x/term v0.39.0: https://go.googlesource.com/term : BSD 3-clause "New" or "Revised" License +golang.org/x/tools v0.1.1: https://pkg.go.dev/golang.org/x/tools : BSD 3-clause "New" or "Revised" License +golang.org/x/tools v0.41.0: https://pkg.go.dev/golang.org/x/tools : BSD 3-clause "New" or "Revised" License golang.org/x/xerrors 20240902-snapshot-7835f813 : BSD 3-clause "New" or "Revised" License -Golang Protobuf v1.36.6: https://github.com/golang/protobuf : BSD 3-clause "New" or "Revised" License +Golang Protobuf 1.36.11: https://github.com/golang/protobuf : BSD 3-clause "New" or "Revised" License Golang Protobuf v1.5.4: https://github.com/golang/protobuf : BSD 3-clause "New" or "Revised" License golang-snappy-go-dev v1.0.0: https://github.com/golang/snappy : BSD 3-clause "New" or "Revised" License -golang/sync v0.14.0: https://pkg.go.dev/golang.org/x/sync : BSD 3-clause "New" or "Revised" License -golang/telemetry 20240517-snapshot-bda55230 : BSD 3-clause "New" or "Revised" License -golang/text v0.25.0: https://github.com/golang/text : BSD 3-clause "New" or "Revised" License -go-logr/logr v1.4.2: https://github.com/go-logr/logr : Apache License 2.0 +golang/sync v0.19.0: https://pkg.go.dev/golang.org/x/sync : BSD 3-clause "New" or "Revised" License +golang/telemetry 20260109-snapshot-bd525da8 : BSD 3-clause "New" or "Revised" License +golang/text v0.33.0: https://github.com/golang/text : BSD 3-clause "New" or "Revised" License +go-logr/logr v1.4.3: https://github.com/go-logr/logr : Apache License 2.0 go-logr/stdr v1.2.2: https://github.com/go-logr/stdr : Apache License 2.0 -Gonum numerical packages v0.15.1: https://www.gonum.org/ : BSD 3-clause "New" or "Revised" License -googleapis/go-genproto 20250505-snapshot-f936aa4a: https://godoc.org/google.golang.org/genproto : Apache License 2.0 +Gonum numerical packages v0.16.0: https://www.gonum.org/ : BSD 3-clause "New" or "Revised" License +googleapis/go-genproto 20251202-snapshot-ff82c1b0: https://godoc.org/google.golang.org/genproto : Apache License 2.0 google/cel-go v0.25.0: https://github.com/google/cel-go : Apache License 2.0 -google-cloud-go compute/metadata/v0.6.0: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0 -google-cloud-go v0.118.0: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0 -GoogleCloudPlatform/opentelemetry-operations-go detectors/gcp/v1.26.0 : Apache License 2.0 -google/gnostic-models v0.6.9: https://github.com/google/gnostic-models : Apache License 2.0 +google-cloud-go compute/metadata/v0.9.0: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0 +google-cloud-go v0.121.0: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0 +GoogleCloudPlatform/opentelemetry-operations-go detectors/gcp/v1.30.0 : Apache License 2.0 +google/gnostic-models v0.7.0: https://github.com/google/gnostic-models : Apache License 2.0 google/go-cmp v0.7.0: https://github.com/google/go-cmp : BSD 3-clause "New" or "Revised" License google-gofuzz v1.0.0: https://github.com/google/gofuzz : Apache License 2.0 Googleuuid v1.6.0: https://github.com/google/uuid : BSD 3-clause "New" or "Revised" License gookit/color v1.5.4: https://github.com/gookit/color : MIT License -go-openapi/analysis v0.23.0: https://github.com/go-openapi/analysis : Apache License 2.0 -go-openapi/errors v0.22.0: https://github.com/go-openapi/errors : Apache License 2.0 -go-openapi/jsonpointer v0.21.1: https://github.com/go-openapi/jsonpointer : Apache License 2.0 -go-openapi/loads v0.22.0: https://github.com/go-openapi/loads : Apache License 2.0 -go-openapi/spec v0.21.0: https://github.com/go-openapi/spec : Apache License 2.0 -go-openapi/validate v0.24.0: https://github.com/go-openapi/validate : Apache License 2.0 -go.opentelemetry.io/proto otlp/v1.6.0: https://github.com/open-telemetry/opentelemetry-proto-go : Apache License 2.0 -gopd 1.0.1: https://github.com/ljharb/gopd#readme : MIT License +go-openapi/analysis v0.24.1: https://github.com/go-openapi/analysis : Apache License 2.0 +go-openapi/errors v0.22.4: https://github.com/go-openapi/errors : Apache License 2.0 +go-openapi/jsonpointer v0.22.4: https://github.com/go-openapi/jsonpointer : Apache License 2.0 +go-openapi/loads v0.23.2: https://github.com/go-openapi/loads : Apache License 2.0 +go-openapi/spec v0.22.3: https://github.com/go-openapi/spec : Apache License 2.0 +go-openapi/validate v0.25.1: https://github.com/go-openapi/validate : Apache License 2.0 +go.opentelemetry.io/proto otlp/v1.9.0: https://github.com/open-telemetry/opentelemetry-proto-go : Apache License 2.0 gopd 1.2.0: https://github.com/ljharb/gopd#readme : MIT License gopherjs 20181203-snapshot-d547d1d9: https://github.com/gopherjs/gopherjs : BSD 2-clause "Simplified" License -goproxy v1.7.2: https://github.com/elazarl/goproxy : BSD 3-clause "New" or "Revised" License +goproxy v1.8.0: https://github.com/elazarl/goproxy : BSD 3-clause "New" or "Revised" License go-restful v3.11.0: https://github.com/emicklei/go-restful : MIT License gorilla/mux v1.8.1: https://github.com/gorilla/mux : BSD 3-clause "New" or "Revised" License -go-spew v1.1.1: https://github.com/davecgh/go-spew : ISC License +go-spew 20180930-snapshot-d8f796af: https://github.com/davecgh/go-spew : ISC License go-test/deep v1.0.8: http://github.com/go-test/deep/ : MIT License -Go Testify v1.10.0: https://github.com/stretchr/testify : MIT License +Go Testify v1.11.1: https://github.com/stretchr/testify : MIT License go.uber.org/goleak v1.3.0: https://github.com/uber-go/goleak : MIT License -govalidator 20230301-snapshot-a9d515a0: https://github.com/asaskevich/govalidator : MIT License +go.yaml.in/yaml/v2 v2.4.3 : Apache License 2.0 +go.yaml.in/yaml/v2 v3.0.4 : MIT License Gozala/events 3.3.0: https://github.com/Gozala/events : MIT License -@grafana/data 12.0.2: https://github.com/grafana/grafana#readme : Apache License 2.0 -@grafana/e2e-selectors 12.0.2: https://github.com/grafana/grafana#readme : Apache License 2.0 -@grafana/e2e-selectors 12.1.0: https://github.com/grafana/grafana#readme : Apache License 2.0 -@grafana/eslint-config 8.1.0: https://github.com/grafana/eslint-config-grafana#readme : Apache License 2.0 -@grafana/faro-core 1.18.1: https://github.com/grafana/faro-web-sdk : Apache License 2.0 -@grafana/faro-web-sdk 1.18.1: https://github.com/grafana/faro-web-sdk : Apache License 2.0 -@grafana/runtime 12.0.2: https://github.com/grafana/grafana#readme : Apache License 2.0 -@grafana/schema 12.0.2: https://github.com/grafana/grafana#readme : Apache License 2.0 -@grafana/tsconfig 2.0.0: https://github.com/grafana/tsconfig-grafana#readme : Apache License 2.0 -@grafana/ui 12.0.2: https://github.com/grafana/grafana#readme : Apache License 2.0 +@grafana/data 12.4.0: https://github.com/grafana/grafana#readme : Apache License 2.0 +@grafana/e2e-selectors 12.4.0: https://github.com/grafana/grafana#readme : Apache License 2.0 +@grafana/eslint-config 8.2.0: https://github.com/grafana/eslint-config-grafana#readme : Apache License 2.0 +@grafana/faro-core 1.19.0: https://github.com/grafana/faro-web-sdk : Apache License 2.0 +@grafana/faro-web-sdk 1.19.0: https://github.com/grafana/faro-web-sdk : Apache License 2.0 +grafana/grafana-plugin-sdk-go v0.251.0 : Apache License 2.0 +@grafana/i18n 12.4.0: https://github.com/grafana/grafana#readme : Apache License 2.0 +@grafana/runtime 12.4.0: https://github.com/grafana/grafana#readme : Apache License 2.0 +@grafana/schema 12.4.0: https://github.com/grafana/grafana#readme : Apache License 2.0 +@grafana/tsconfig 2.0.1: https://github.com/grafana/tsconfig-grafana#readme : Apache License 2.0 +@grafana/ui 12.4.0: https://github.com/grafana/grafana#readme : Apache License 2.0 graphemer 1.4.0: https://github.com/flmnt/graphemer : MIT License -grpc-ecosystem/go-grpc-middleware providers/prometheus/v1.0.1: https://github.com/grpc-ecosystem/go-grpc-middleware : Apache License 2.0 -grpc-ecosystem/go-grpc-middleware v2.3.2: https://github.com/grpc-ecosystem/go-grpc-middleware : Apache License 2.0 -grpc-gateway v2.26.3: https://github.com/grpc-ecosystem/grpc-gateway : BSD 3-clause "New" or "Revised" License -grpc-go v1.72.0: https://github.com/grpc/grpc-go : Apache License 2.0 -hamba/avro v2.28.0 : MIT License +grpc-ecosystem/go-grpc-middleware providers/prometheus/v1.1.0: https://github.com/grpc-ecosystem/go-grpc-middleware : Apache License 2.0 +grpc-ecosystem/go-grpc-middleware v2.3.3: https://github.com/grpc-ecosystem/go-grpc-middleware : Apache License 2.0 +grpc-gateway v2.27.3: https://github.com/grpc-ecosystem/grpc-gateway : BSD 3-clause "New" or "Revised" License +grpc-go v1.78.0-dev: https://github.com/grpc/grpc-go : Apache License 2.0 +hamba/avro v2.30.0 : MIT License harmony-reflect v1.6.2: http://wiki.ecmascript.org/doku.php?id=harmony:reflect_api : (Mozilla Public License 1.1 OR Apache License 2.0) has 1.0.4: https://github.com/tarruda/has : MIT License has-bigints 1.1.0: https://github.com/ljharb/has-bigints#readme : MIT License -has-flag 3.0.0: https://github.com/sindresorhus/has-flag#readme : MIT License has-flag 4.0.0: https://github.com/sindresorhus/has-flag#readme : MIT License hashicorp/go-hclog v1.6.3: https://github.com/hashicorp/go-hclog : MIT License hashicorp-golang-lru v2.0.7: https://github.com/hashicorp/golang-lru : Mozilla Public License 2.0 -hashicorp-go-plugin v1.6.3: https://github.com/hashicorp/go-plugin : Mozilla Public License 2.0 +hashicorp-go-plugin v1.7.0: https://github.com/hashicorp/go-plugin : Mozilla Public License 2.0 hashicorp-yamux v0.1.2: https://github.com/hashicorp/yamux : Mozilla Public License 2.0 hasown 2.0.2: https://github.com/inspect-js/hasOwn#readme : MIT License has-property-descriptors 1.0.2: https://github.com/inspect-js/has-property-descriptors#readme : MIT License -has-proto 1.0.3: https://github.com/inspect-js/can-set-proto#readme : MIT License has-proto 1.2.0: https://github.com/inspect-js/can-set-proto#readme : MIT License -has-symbols 1.0.3: https://github.com/ljharb/has-symbols#readme : MIT License has-symbols 1.1.0: https://github.com/ljharb/has-symbols#readme : MIT License has-tostringtag 1.0.2: https://github.com/inspect-js/has-tostringtag#readme : MIT License -@hello-pangea/dnd 17.0.0: https://github.com/hello-pangea/dnd#readme : Apache License 2.0 -highlight-words-core 1.2.2 : MIT License +@hello-pangea/dnd 18.0.1: https://github.com/hello-pangea/dnd#readme : Apache License 2.0 +highlight-words-core 1.2.3 : MIT License History 5.3.0: https://github.com/ReactTraining/history : MIT License History v4.10.1: https://github.com/ReactTraining/history : MIT License hoist-non-react-statics v3.3.2: https://github.com/mridgway/hoist-non-react-statics : BSD 3-clause "New" or "Revised" License @@ -600,21 +559,21 @@ html-element-map 1.3.1: https://github.com/ljharb/html-element-map#readme : MIT html-encoding-sniffer 4.0.0: https://github.com/jsdom/html-encoding-sniffer#readme : MIT License htmlparser2 10.0.0: https://github.com/fb55/htmlparser2 : MIT License html-parse-stringify v3.0.1: https://github.com/henrikjoreteg/html-parse-stringify : MIT License -http-cache-semantics 4.1.1: https://github.com/kornelski/http-cache-semantics : BSD 2-clause "Simplified" License -http-parser-js 0.5.8: https://github.com/creationix/http-parser-js : MIT License -https-proxy-agent 7.0.5: https://github.com/TooTallNate/node-https-proxy-agent : MIT License +http-cache-semantics 4.2.0: https://github.com/kornelski/http-cache-semantics : BSD 2-clause "Simplified" License +http-parser-js 0.5.10: https://github.com/creationix/http-parser-js : MIT License https-proxy-agent 7.0.6: https://github.com/TooTallNate/node-https-proxy-agent : MIT License hughsk/flat 5.0.2: https://github.com/hughsk/flat : BSD 3-clause "New" or "Revised" License @humanfs/core 0.19.1: https://github.com/humanwhocodes/humanfs#readme : Apache License 2.0 -@humanfs/node 0.16.6: https://github.com/humanwhocodes/humanfs#readme : Apache License 2.0 +@humanfs/node 0.16.7: https://github.com/humanwhocodes/humanfs#readme : Apache License 2.0 human-signals 2.1.0: https://git.io/JeluP : Apache License 2.0 @humanwhocodes/module-importer 1.0.1: https://github.com/humanwhocodes/module-importer#readme : Apache License 2.0 -@humanwhocodes/momoa 3.3.8: https://github.com/humanwhocodes/momoa#readme : Apache License 2.0 -@humanwhocodes/retry 0.3.1: https://github.com/humanwhocodes/retrier#readme : Apache License 2.0 +@humanwhocodes/momoa 3.3.10: https://github.com/humanwhocodes/momoa#readme : Apache License 2.0 @humanwhocodes/retry 0.4.3: https://github.com/humanwhocodes/retrier#readme : Apache License 2.0 hyphenate-style-name 1.1.0: https://github.com/rexxars/hyphenate-style-name#readme : BSD 3-clause "New" or "Revised" License -i18next 24.2.3: https://github.com/jamuhl/i18next : MIT License -i18next-browser-languagedetector 8.1.0: https://github.com/i18next/i18next-browser-languagedetector : MIT License +i18next 19.9.2: https://github.com/jamuhl/i18next : MIT License +i18next 25.6.0: https://github.com/jamuhl/i18next : MIT License +i18next-browser-languagedetector 8.2.0: https://github.com/i18next/i18next-browser-languagedetector : MIT License +i18next-pseudo 2.2.1: https://github.com/MattBoatman : MIT License ianstormtaylor/slate 0.2.11: https://github.com/ianstormtaylor/slate : MIT License ianstormtaylor/slate 0.2.115: https://github.com/ianstormtaylor/slate : MIT License ianstormtaylor/slate 0.22.10: https://github.com/ianstormtaylor/slate : MIT License @@ -626,31 +585,29 @@ ianstormtaylor/slate 0.7.13: https://github.com/ianstormtaylor/slate : MIT Licen iarna/write-file-atomic 5.0.1: https://github.com/iarna/write-file-atomic : ISC License iconv-lite 0.6.3: https://github.com/ashtuchkin/iconv-lite : MIT License icss-utils 5.1.0: https://github.com/css-modules/icss-utils#readme : ISC License -ieee754 v1.2.1: https://github.com/feross/ieee754 : BSD 3-clause "New" or "Revised" License -immutable-js 5.0.3: http://facebook.github.io/immutable-js/ : MIT License -immutable-js 5.1.2: http://facebook.github.io/immutable-js/ : MIT License -import-fresh 3.3.0: https://github.com/sindresorhus/import-fresh : MIT License +immutable-js 5.1.4: http://facebook.github.io/immutable-js/ : MIT License +import-fresh 3.3.1: https://github.com/sindresorhus/import-fresh : MIT License import-local 3.2.0: https://github.com/sindresorhus/import-local#readme : MIT License imports-loader 5.0.0: https://github.com/webpack/imports-loader#readme : MIT License imurmurhash 0.1.4: https://github.com/jensyt/imurmurhash-js : MIT License indent-string v4.0.0: https://github.com/sindresorhus/indent-string : MIT License -inflight 1.0.6: https://github.com/isaacs/inflight : ISC License inherits v2.0.4: https://github.com/isaacs/inherits : ISC License inline-style-prefixer 7.0.1: https://github.com/rofrischmann/inline-style-prefixer#readme : MIT License internal-slot 1.1.0: https://github.com/ljharb/internal-slot#readme : MIT License -@internationalized/date 3.8.0: https://github.com/adobe/react-spectrum#readme : Apache License 2.0 -@internationalized/message 3.1.7: https://github.com/adobe/react-spectrum#readme : Apache License 2.0 -@internationalized/number 3.6.1: https://github.com/adobe/react-spectrum#readme : Apache License 2.0 -@internationalized/string 3.2.6: https://github.com/adobe/react-spectrum#readme : Apache License 2.0 +@internationalized/date 3.10.0: https://github.com/adobe/react-spectrum#readme : Apache License 2.0 +@internationalized/date 3.10.1: https://github.com/adobe/react-spectrum#readme : Apache License 2.0 +@internationalized/message 3.1.8: https://github.com/adobe/react-spectrum#readme : Apache License 2.0 +@internationalized/number 3.6.5: https://github.com/adobe/react-spectrum#readme : Apache License 2.0 +@internationalized/string 3.2.7: https://github.com/adobe/react-spectrum#readme : Apache License 2.0 internmap 2.0.3: https://github.com/mbostock/internmap/ : ISC License interpret 3.1.1: https://github.com/tkellen/node-interpret : MIT License -intl-messageformat 10.5.14: https://github.com/yahoo/intl-messageformat : BSD 3-clause "New" or "Revised" License +intl-messageformat 10.7.18: https://github.com/yahoo/intl-messageformat : BSD 3-clause "New" or "Revised" License invariant 2.2.4: https://github.com/zertosh/invariant : MIT License invopop/jsonschema v0.13.0: https://github.com/invopop/jsonschema : MIT License -ipaddress 9.0.5: http://marcoceresa.com/ipaddress : MIT License +ipaddress 10.0.1: http://marcoceresa.com/ipaddress : MIT License @isaacs/balanced-match 4.0.1: https://github.com/isaacs/balanced-match#readme : MIT License -@isaacs/brace-expansion 5.0.0: https://www.npmjs.com/package/@isaacs/brace-expansion : MIT License @isaacs/cliui 8.0.2: https://github.com/yargs/cliui#readme : ISC License +@isaacs/fs-minipass 4.0.1: https://github.com/npm/fs-minipass#readme : ISC License isaacs/jackspeak 3.4.3: https://github.com/isaacs/jackspeak#readme : Blue Oak Model License 1.0.0 isaacs/jackspeak 4.1.1: https://github.com/isaacs/jackspeak#readme : Blue Oak Model License 1.0.0 isaacs/once 1.4.0: https://github.com/isaacs/once : ISC License @@ -662,7 +619,7 @@ is-async-function 2.1.1: https://github.com/tunnckocore/is-async-function#readme is-bigint 1.1.0: https://github.com/ljharb/is-bigint#readme : MIT License is-boolean-object 1.2.2: https://github.com/ljharb/is-boolean-object#readme : MIT License is-callable 1.2.7: https://github.com/ljharb/is-callable : MIT License -is-core-module 2.15.1: https://github.com/meandavejustice/is-core-module : MIT License +is-core-module 2.16.1: https://github.com/meandavejustice/is-core-module : MIT License is-data-view 1.0.2: https://github.com/inspect-js/is-data-view#readme : MIT License is-date-object 1.1.0: https://github.com/ljharb/is-date-object : MIT License isexe 2.0.0: https://github.com/isaacs/isexe#readme : ISC License @@ -671,13 +628,13 @@ is-extglob 2.1.1: https://github.com/jonschlinkert/is-extglob : MIT License is-finalizationregistry 1.1.1: https://github.com/inspect-js/is-finalizationregistry#readme : MIT License is-fullwidth-code-point 3.0.0: https://github.com/sindresorhus/is-fullwidth-code-point : MIT License is-generator-fn 2.1.0: https://github.com/sindresorhus/is-generator-fn : MIT License -is-generator-function 1.1.0: https://github.com/ljharb/is-generator-function : MIT License +is-generator-function 1.1.2: https://github.com/ljharb/is-generator-function : MIT License is-glob 4.0.3: https://www.npmjs.com/package/is-glob : MIT License is-hotkey 0.1.4: https://github.com/ianstormtaylor/is-hotkey#readme : MIT License is-hotkey 0.2.0: https://github.com/ianstormtaylor/is-hotkey#readme : MIT License is-in-browser 1.1.3: https://github.com/tuxsudo/is-in-browser#readme : MIT License -is-lambda 1.0.1: https://github.com/watson/is-lambda : MIT License is-map 2.0.3: https://github.com/arthurvr/is-map : MIT License +is-mobile 5.0.0: https://github.com/juliangruber/is-mobile : MIT License is-negative-zero 2.0.3: https://github.com/ljharb/is-negative-zero : MIT License is-number 7.0.0: https://github.com/jonschlinkert/is-number : MIT License is-number-object 1.1.1: https://github.com/ljharb/is-number-object : MIT License @@ -698,94 +655,86 @@ istanbul-lib-coverage 3.2.2: https://github.com/istanbuljs/istanbul-lib-coverage istanbul-lib-instrument 6.0.3: https://github.com/istanbuljs/istanbul-lib-instrument : BSD 3-clause "New" or "Revised" License istanbul-lib-report 3.0.1: https://github.com/istanbuljs/istanbul-lib-report : BSD 3-clause "New" or "Revised" License istanbul-lib-source-maps 5.0.6: https://github.com/istanbuljs/istanbul-lib-source-maps#readme : BSD 3-clause "New" or "Revised" License -istanbul-reports 3.1.7: https://github.com/istanbuljs/istanbul-reports : BSD 3-clause "New" or "Revised" License +istanbul-reports 3.2.0: https://github.com/istanbuljs/istanbul-reports : BSD 3-clause "New" or "Revised" License is-typed-array 1.1.15: https://github.com/inspect-js/is-typed-array/ : MIT License is-weakmap 2.0.2: https://github.com/arthurvr/is-weakmap : MIT License is-weakref 1.1.1: https://github.com/inspect-js/is-weakref#readme : MIT License is-weakset 2.0.4: https://github.com/arthurvr/is-weakset : MIT License is-window 1.0.2: https://github.com/bubkoo/is-window#readme : MIT License iterator.prototype 1.1.5: https://github.com/ljharb/iterator.prototype#readme : MIT License -JedWatson/react-select 5.10.0: https://github.com/JedWatson/react-select : MIT License -jest-changed-files 30.0.2: https://github.com/facebook/jest#readme : MIT License -jest-config 30.0.4: https://github.com/facebook/jest#readme : MIT License -@jest/console 30.0.4: https://github.com/facebook/jest#readme : MIT License -@jest/core 30.0.4: https://jestjs.io/ : MIT License -@jest/create-cache-key-function 30.0.2: https://github.com/facebook/jest#readme : MIT License -jest-diff 30.0.4: https://github.com/facebook/jest#readme : MIT License +JedWatson/react-select 5.10.2: https://github.com/JedWatson/react-select : MIT License +jest-changed-files 30.2.0: https://github.com/facebook/jest#readme : MIT License +jest-config 30.2.0: https://github.com/facebook/jest#readme : MIT License +@jest/console 30.2.0: https://github.com/facebook/jest#readme : MIT License +@jest/core 30.2.0: https://jestjs.io/ : MIT License +@jest/create-cache-key-function 30.2.0: https://github.com/facebook/jest#readme : MIT License +jest-diff 30.2.0: https://github.com/facebook/jest#readme : MIT License @jest/diff-sequences 30.0.1: https://github.com/jestjs/jest.git : MIT License -jest-each 30.0.2: https://github.com/mattphillips/jest-each#readme : MIT License -@jest/environment 30.0.4: https://github.com/facebook/jest#readme : MIT License -jest-environment-jsdom 30.0.4: https://github.com/facebook/jest#readme : MIT License -@jest/environment-jsdom-abstract 30.0.4: https://github.com/jestjs/jest#readme : MIT License -jest-environment-node 30.0.4: https://github.com/facebook/jest#readme : MIT License -@jest/expect 30.0.4: https://github.com/facebook/jest#readme : MIT License -@jest/expect-utils 30.0.4: https://github.com/facebook/jest#readme : MIT License -@jest/fake-timers 30.0.4: https://github.com/facebook/jest#readme : MIT License -Jest from Facebook 30.0.1: https://jestjs.io : MIT License -Jest from Facebook 30.0.2: https://jestjs.io : MIT License -Jest from Facebook 30.0.4: https://jestjs.io : MIT License -@jest/get-type 30.0.1: https://github.com/jestjs/jest.git : MIT License -@jest/globals 30.0.4: https://github.com/facebook/jest#readme : MIT License -jest-haste-map 30.0.2: https://github.com/facebook/jest#readme : MIT License -jest-leak-detector 30.0.2: https://github.com/facebook/jest#readme : MIT License -jest-matcher-utils 30.0.4: https://github.com/facebook/jest#readme : MIT License -jest-message-util 30.0.2: https://github.com/facebook/jest#readme : MIT License +jest-each 30.2.0: https://github.com/mattphillips/jest-each#readme : MIT License +@jest/environment 30.2.0: https://github.com/facebook/jest#readme : MIT License +jest-environment-jsdom 30.2.0: https://github.com/facebook/jest#readme : MIT License +@jest/environment-jsdom-abstract 30.2.0: https://github.com/jestjs/jest#readme : MIT License +jest-environment-node 30.2.0: https://github.com/facebook/jest#readme : MIT License +@jest/expect 30.2.0: https://github.com/facebook/jest#readme : MIT License +@jest/expect-utils 30.2.0: https://github.com/facebook/jest#readme : MIT License +@jest/fake-timers 30.2.0: https://github.com/facebook/jest#readme : MIT License +Jest from Facebook 30.2.0: https://jestjs.io : MIT License +@jest/get-type 30.1.0: https://github.com/jestjs/jest.git : MIT License +@jest/globals 30.2.0: https://github.com/facebook/jest#readme : MIT License +jest-haste-map 30.2.0: https://github.com/facebook/jest#readme : MIT License +jest-leak-detector 30.2.0: https://github.com/facebook/jest#readme : MIT License +jest-matcher-utils 30.2.0: https://github.com/facebook/jest#readme : MIT License +jest-message-util 30.2.0: https://github.com/facebook/jest#readme : MIT License @jest/pattern 30.0.1: https://github.com/jestjs/jest#readme : MIT License jest-pnp-resolver 1.2.3: https://github.com/arcanis/jest-pnp-resolver : MIT License jest-regex-util 30.0.1: https://github.com/facebook/jest#readme : MIT License -@jest/reporters 30.0.4: https://jestjs.io/ : MIT License -jest-resolve 30.0.2: https://github.com/facebook/jest#readme : MIT License -jest-resolve-dependencies 30.0.4: https://github.com/facebook/jest#readme : MIT License -jest-runner 30.0.4: https://github.com/facebook/jest#readme : MIT License -jest-runtime 30.0.4: https://github.com/facebook/jest#readme : MIT License +@jest/reporters 30.2.0: https://jestjs.io/ : MIT License +jest-resolve 30.2.0: https://github.com/facebook/jest#readme : MIT License +jest-resolve-dependencies 30.2.0: https://github.com/facebook/jest#readme : MIT License +jest-runner 30.2.0: https://github.com/facebook/jest#readme : MIT License +jest-runtime 30.2.0: https://github.com/facebook/jest#readme : MIT License @jest/schemas 29.6.3: https://github.com/facebook/jest#readme : MIT License -@jest/schemas 30.0.1: https://github.com/facebook/jest#readme : MIT License -jest-snapshot 30.0.4: https://github.com/facebook/jest#readme : MIT License -@jest/snapshot-utils 30.0.4: https://github.com/jestjs/jest#readme : MIT License +@jest/schemas 30.0.5: https://github.com/facebook/jest#readme : MIT License +jest-snapshot 30.2.0: https://github.com/facebook/jest#readme : MIT License +@jest/snapshot-utils 30.2.0: https://github.com/jestjs/jest#readme : MIT License @jest/source-map 30.0.1: https://github.com/facebook/jest#readme : MIT License -@jest/test-result 30.0.4: https://github.com/facebook/jest#readme : MIT License -@jest/test-sequencer 30.0.4: https://github.com/facebook/jest#readme : MIT License -@jest/transform 30.0.4: https://github.com/facebook/jest#readme : MIT License +@jest/test-result 30.2.0: https://github.com/facebook/jest#readme : MIT License +@jest/test-sequencer 30.2.0: https://github.com/facebook/jest#readme : MIT License +@jest/transform 30.2.0: https://github.com/facebook/jest#readme : MIT License @jest/types 29.6.3: https://github.com/facebook/jest#readme : MIT License -@jest/types 30.0.1: https://github.com/facebook/jest#readme : MIT License +@jest/types 30.2.0: https://github.com/facebook/jest#readme : MIT License jest-util 29.7.0: https://github.com/facebook/jest#readme : MIT License -jest-util 30.0.2: https://github.com/facebook/jest#readme : MIT License -jest-validate 30.0.2: https://github.com/facebook/jest#readme : MIT License +jest-util 30.2.0: https://github.com/facebook/jest#readme : MIT License +jest-validate 30.2.0: https://github.com/facebook/jest#readme : MIT License jest-worker 27.5.1: https://github.com/facebook/jest#readme : MIT License jest-worker 29.7.0: https://github.com/facebook/jest#readme : MIT License -jest-worker 30.0.2: https://github.com/facebook/jest#readme : MIT License -jhump/protoreflect v1.15.1: https://github.com/jhump/protoreflect : Apache License 2.0 +jest-worker 30.2.0: https://github.com/facebook/jest#readme : MIT License +jhump/protoreflect v1.17.0: https://github.com/jhump/protoreflect : Apache License 2.0 josharian/intern v1.0.0: https://github.com/josharian/intern : MIT License jpillora-backoff 1.0.0: https://github.com/jpillora/backoff : MIT License jQuery 3.7.1: http://jquery.com/ : MIT License -@jridgewell/gen-mapping 0.3.12: https://github.com/jridgewell/gen-mapping#readme : MIT License -@jridgewell/gen-mapping 0.3.5: https://github.com/jridgewell/gen-mapping#readme : MIT License +@jridgewell/gen-mapping 0.3.13: https://github.com/jridgewell/gen-mapping#readme : MIT License +@jridgewell/remapping 2.3.5: https://github.com/jridgewell/sourcemaps/tree/main/packages/remapping : MIT License @jridgewell/resolve-uri 3.1.2: https://github.com/jridgewell/resolve-uri#readme : MIT License -@jridgewell/set-array 1.2.1: https://github.com/jridgewell/set-array#readme : MIT License -@jridgewell/source-map 0.3.6: https://github.com/jridgewell/source-map#readme : MIT License -@jridgewell/sourcemap-codec 1.5.0: https://github.com/jridgewell/sourcemap-codec#readme : MIT License -@jridgewell/sourcemap-codec 1.5.4: https://github.com/jridgewell/sourcemap-codec#readme : MIT License -@jridgewell/trace-mapping 0.3.25: https://github.com/jridgewell/trace-mapping#readme : MIT License -@jridgewell/trace-mapping 0.3.29: https://github.com/jridgewell/trace-mapping#readme : MIT License +@jridgewell/source-map 0.3.11: https://github.com/jridgewell/source-map#readme : MIT License +@jridgewell/sourcemap-codec 1.5.5: https://github.com/jridgewell/sourcemap-codec#readme : MIT License +@jridgewell/trace-mapping 0.3.31: https://github.com/jridgewell/trace-mapping#readme : MIT License @jridgewell/trace-mapping 0.3.9: https://github.com/jridgewell/trace-mapping#readme : MIT License -jsbn 1.1.0: https://github.com/timkurvers/jsbn : MIT License js-cookie 2.2.1: https://github.com/js-cookie/js-cookie : MIT License -jsdiff 4.0.2: https://github.com/kpdecker/jsdiff : BSD 3-clause "New" or "Revised" License -jsdoc-type-pratt-parser 4.1.0: https://github.com/simonseyock/jsdoc-type-pratt-parser : MIT License +jsdoc-type-pratt-parser 6.10.0: https://github.com/simonseyock/jsdoc-type-pratt-parser : MIT License jsdom 26.1.0: https://github.com/jsdom/jsdom : MIT License -jsesc 3.0.2: http://mths.be/jsesc : MIT License -jsesc v2.5.2: http://mths.be/jsesc : MIT License -JSHTTP's negotiator 0.6.3: https://www.npmjs.com/package/negotiator : MIT License -jsjest 30.0.4: https://jestjs.io : MIT License +jsesc 3.1.0: http://mths.be/jsesc : MIT License +jshttp/mime-types 2.1.35: https://github.com/jshttp/mime-types : MIT License +JSHTTP's negotiator 1.0.0: https://www.npmjs.com/package/negotiator : MIT License +jsjest 30.2.0: https://jestjs.io : MIT License json5 2.2.3: http://json5.org/ : MIT License json-buffer 3.0.1: https://github.com/dominictarr/json-buffer : MIT License jsonc-parser 3.3.1: https://github.com/Microsoft/node-jsonc-parser#readme : MIT License jsoniter-go v1.1.12: http://jsoniter.com/ : MIT License json-parse-even-better-errors 2.3.1: https://github.com/npm/json-parse-even-better-errors#readme : MIT License -jsonreference v0.21.0: https://github.com/go-openapi/jsonreference : Apache License 2.0 +jsonreference v0.21.4: https://github.com/go-openapi/jsonreference : Apache License 2.0 json-schema-traverse 0.4.1: https://github.com/epoberezkin/json-schema-traverse : MIT License json-schema-traverse 1.0.0: https://github.com/epoberezkin/json-schema-traverse : MIT License -json-stringify-pretty-compact 2.0.0: https://github.com/lydell/json-stringify-pretty-compact : MIT License js-tokens 4.0.0: https://github.com/lydell/js-tokens : MIT License jsx-ast-utils 3.3.5: https://github.com/evcohen/jsx-ast-utils#readme : MIT License js-xss 1.0.15: https://github.com/leizongmin/js-xss : MIT License @@ -793,17 +742,17 @@ js-yaml 3.14.1: https://github.com/nodeca/js-yaml : MIT License js-yaml 4.1.0: https://github.com/nodeca/js-yaml : MIT License jtolds-gls 4.2.1: https://github.com/jtolds/gls : MIT License julienschmidt/httprouter v1.3.0: https://github.com/julienschmidt/httprouter : BSD 3-clause "New" or "Revised" License -k8s.io/kube-openapi 20250318-snapshot-c8a335a9: https://github.com/kubernetes/kube-openapi : Apache License 2.0 +k8s.io/kube-openapi 20260127-snapshot-a19766b6: https://github.com/kubernetes/kube-openapi : Apache License 2.0 k8s.io/utils 20240711-snapshot-18e509b5: https://github.com/kubernetes/utils : Apache License 2.0 keyanzhang/identity-obj-proxy 3.0.0: https://github.com/keyanzhang/identity-obj-proxy#readme : MIT License keyv 4.5.4: https://github.com/lukechilds/keyv : MIT License kind-of 6.0.3: https://github.com/jonschlinkert/kind-of : MIT License kisielk-gotool v1.0.0: https://github.com/kisielk/gotool : (MIT License AND BSD 3-clause "New" or "Revised" License) klauspost/asmfmt v1.3.2: https://pkg.go.dev/github.com/klauspost/asmfmt : MIT License -klauspost-compress v1.18.0: https://github.com/klauspost/compress : BSD 3-clause "New" or "Revised" License -klauspost-cpuid v2.2.10: https://github.com/klauspost/cpuid : MIT License +klauspost-compress v1.18.2: https://github.com/klauspost/compress : BSD 3-clause "New" or "Revised" License +klauspost-cpuid v2.3.0: https://github.com/klauspost/cpuid : MIT License kr/pretty v0.3.1: https://github.com/kr/pretty : MIT License -@leeoniya/ufuzzy 1.0.18: https://github.com/leeoniya/uFuzzy#readme : MIT License +@leeoniya/ufuzzy 1.0.19: https://github.com/leeoniya/uFuzzy#readme : MIT License lerc 3.0.0: https://github.com/Esri/lerc : Apache License 2.0 leven 3.1.0: https://github.com/sindresorhus/leven : MIT License levn 0.4.1: https://github.com/gkz/levn : MIT License @@ -811,16 +760,16 @@ lines-and-columns 1.2.4: https://github.com/eventualbuddha/lines-and-columns#rea lithammer/fuzzysearch v1.1.8: https://github.com/lithammer/fuzzysearch : MIT License livereload-js 2.4.0: https://github.com/livereload/livereload-js : MIT License ljharb/object.assign 4.1.7: https://github.com/ljharb/object.assign : MIT License -loader-runner 4.3.0: https://github.com/webpack/loader-runner#readme : MIT License +loader-runner 4.3.1: https://github.com/webpack/loader-runner : MIT License locate-path v5.0.0: https://github.com/sindresorhus/locate-path : MIT License locate-path v6.0.0: https://github.com/sindresorhus/locate-path : MIT License -Lodash 4.17.21: https://lodash.com/ : MIT License +Lodash 4.17.23: https://lodash.com/ : MIT License lodash.escape 4.0.1: https://lodash.com/ : MIT License lodash.flattendeep 4.4.0: https://lodash.com/ : MIT License lodash.isequal 4.5.0: https://lodash.com/ : MIT License lodash.merge 4.6.2: https://lodash.com/ : MIT License longest-streak 3.1.0: https://github.com/wooorm/longest-streak#readme : MIT License -Long.js 5.2.3: http://dcode.io : Apache License 2.0 +Long.js 5.3.2: http://dcode.io : Apache License 2.0 loose-envify 1.4.0: https://github.com/zertosh/loose-envify : MIT License lz-string 1.5.0: https://github.com/pieroxy/lz-string : MIT License magefile/mage v1.15.0: https://github.com/magefile/mage : Apache License 2.0 @@ -828,22 +777,16 @@ mailru/easyjson v0.9.0: https://github.com/mailru/easyjson : MIT License make-dir 4.0.0: https://github.com/sindresorhus/make-dir#readme : MIT License makeerror 1.0.12: https://github.com/daaku/nodejs-makeerror : BSD 3-clause "New" or "Revised" License make-error 1.3.6: https://github.com/julien-f/js-make-error : ISC License -make-fetch-happen 13.0.1: https://github.com/npm/make-fetch-happen : ISC License -map-age-cleaner 0.1.3: https://github.com/SamVerschueren/map-age-cleaner#readme : MIT License -mapbox-gl-style-spec 13.28.0: https://github.com/mapbox/mapbox-gl-style-spec : ISC License -@mapbox/jsonlint-lines-primitives 2.0.2: https://github.com/mapbox/jsonlint#readme : MIT License -mapbox-to-css-font 2.4.5: https://github.com/boundlessgeo/mapbox-to-css-font#readme : BSD 2-clause "Simplified" License -@mapbox/unitbezier 0.0.0: https://github.com/mapbox/unitbezier : BSD 2-clause "Simplified" License -mapstructure v1.5.0: https://github.com/mitchellh/mapstructure : MIT License +make-fetch-happen 14.0.3: https://github.com/npm/make-fetch-happen : ISC License markdown-table 3.0.4: https://github.com/wooorm/markdown-table : MIT License -markedjs 15.0.6: https://marked.js.org : MIT License -marked-mangle 1.1.10: https://github.com/markedjs/marked-mangle#readme : MIT License +markedjs 16.3.0: https://marked.js.org : MIT License +marked-mangle 1.1.12: https://github.com/markedjs/marked-mangle#readme : MIT License mathiasbynens's esrever 0.2.0: https://mths.be/esrever : MIT License math-intrinsics 1.1.0: https://github.com/es-shims/math-intrinsics#readme : MIT License mattetti/filebuffer v1.0.1 : MIT License mattn-go-colorable v0.1.14: http://godoc.org/github.com/mattn/go-colorable : MIT License mattn-go-isatty v0.0.20: http://godoc.org/github.com/mattn/go-isatty : MIT License -mattn-go-runewidth v0.0.16: https://github.com/mattn/go-runewidth : MIT License +mattn-go-runewidth v0.0.19: https://github.com/mattn/go-runewidth : MIT License matttproud-golang_protobuf_extensions v1.0.1: https://github.com/matttproud/golang_protobuf_extensions : Apache License 2.0 mdast-util-find-and-replace 3.0.2: https://github.com/syntax-tree/mdast-util-find-and-replace#readme : MIT License mdast-util-from-markdown 2.0.2: https://github.com/syntax-tree/mdast-util-from-markdown#readme : MIT License @@ -858,15 +801,15 @@ mdast-util-phrasing 4.1.0: https://github.com/syntax-tree/mdast-util-phrasing#re mdast-util-to-markdown 2.1.2: https://github.com/syntax-tree/mdast-util-to-markdown#readme : MIT License mdast-util-to-string 4.0.0: https://github.com/wooorm/mdast-util-to-string#readme : MIT License mdn-data 2.0.14: https://developer.mozilla.org : Creative Commons Zero v1.0 Universal -mdn-data 2.21.0: https://developer.mozilla.org : Creative Commons Zero v1.0 Universal -mem 8.1.1: https://github.com/sindresorhus/mem : MIT License -memoize-one 4.1.0: https://github.com/alexreardon/memoize-one : MIT License +mdn-data 2.23.0: https://developer.mozilla.org : Creative Commons Zero v1.0 Universal +memoize 10.2.0: https://github.com/sindresorhus/memoize#readme : MIT License memoize-one 6.0.0: https://github.com/alexreardon/memoize-one : MIT License +memoize-one v4.0.3: https://github.com/alexreardon/memoize-one : MIT License memoize-one v5.2.1: https://github.com/alexreardon/memoize-one : MIT License merge2 1.4.1: https://github.com/teambition/merge2 : MIT License Merge-Stream 2.0.0: https://github.com/grncdr/merge-stream : MIT License micromark 4.0.2: https://github.com/micromark/micromark#readme : MIT License -micromark-core-commonmark 2.0.3: https://github.com/micromark/micromark/tree/main#readme : MIT License +micromark-core-commonmark 2.0.3: https://github.com/micromark/micromark : MIT License micromark-extension-frontmatter 2.0.0: https://github.com/micromark/micromark-extension-frontmatter#readme : MIT License micromark-extension-gfm 3.0.0: https://github.com/micromark/micromark-extension-gfm#readme : MIT License micromark-extension-gfm-autolink-literal 2.1.0: https://github.com/micromark/micromark-extension-gfm-autolink-literal#readme : MIT License @@ -883,10 +826,10 @@ micromark-factory-whitespace 2.0.1: https://github.com/micromark/micromark/tree/ micromark-util-character 2.1.1: https://github.com/micromark/micromark/tree/main#readme : MIT License micromark-util-chunked 2.0.1: https://github.com/micromark/micromark/tree/main#readme : MIT License micromark-util-classify-character 2.0.1: https://github.com/micromark/micromark/tree/main#readme : MIT License -micromark-util-combine-extensions 2.0.1: https://github.com/micromark/micromark/tree/main#readme : MIT License +micromark-util-combine-extensions 2.0.1: https://github.com/micromark/micromark : MIT License micromark-util-decode-numeric-character-reference 2.0.2: https://github.com/micromark/micromark/tree/main#readme : MIT License -micromark-util-decode-string 2.0.1: https://github.com/micromark/micromark/tree/main#readme : MIT License -micromark-util-encode 2.0.1: https://github.com/micromark/micromark/tree/main#readme : MIT License +micromark-util-decode-string 2.0.1: https://github.com/micromark/micromark : MIT License +micromark-util-encode 2.0.1: https://github.com/micromark/micromark : MIT License micromark-util-html-tag-name 2.0.1: https://github.com/micromark/micromark/tree/main#readme : MIT License micromark-util-normalize-identifier 2.0.1: https://github.com/micromark/micromark/tree/main#readme : MIT License micromark-util-resolve-all 2.0.1: https://github.com/micromark/micromark/tree/main#readme : MIT License @@ -896,27 +839,25 @@ micromark-util-symbol 2.0.1: https://github.com/micromark/micromark/tree/main#re micromark-util-types 2.0.2: https://github.com/micromark/micromark/tree/main#readme : MIT License micromatch 4.0.8: https://github.com/jonschlinkert/micromatch : MIT License micromatch/braces 3.0.3: https://github.com/micromatch/braces : MIT License -micro-memoize 4.1.2: https://github.com/planttheidea/micro-memoize#readme : MIT License -Microsofttslib 2.7.0: http://github.com/Microsoft/tslib/ : BSD Zero Clause License +micro-memoize 4.2.0: https://github.com/planttheidea/micro-memoize#readme : MIT License Microsofttslib 2.8.1: http://github.com/Microsoft/tslib/ : BSD Zero Clause License mime-db 1.52.0: https://github.com/jshttp/mime-db : MIT License mimic-fn 2.1.0: https://github.com/sindresorhus/mimic-fn#readme : MIT License -mimic-fn 3.1.0: https://github.com/sindresorhus/mimic-fn#readme : MIT License -minimatch 10.0.3: https://github.com/isaacs/minimatch : ISC License +mimic-function 5.0.1: https://github.com/sindresorhus/mimic-function#readme : MIT License +minimatch 10.1.1: https://github.com/isaacs/minimatch : ISC License minimatch 3.1.2: https://github.com/isaacs/minimatch : ISC License minimatch 9.0.5: https://github.com/isaacs/minimatch : ISC License minimist 1.2.8: https://github.com/minimistjs/minimist : MIT License min-indent 1.0.1: https://github.com/thejameskyle/min-indent#readme : MIT License minio/c2goasm 20190812-snapshot-36a3d3bb: https://pkg.go.dev/github.com/minio/c2goasm : Apache License 2.0 minipass 3.3.6: https://github.com/isaacs/minipass : ISC License -minipass 5.0.0: https://github.com/isaacs/minipass : ISC License minipass 7.1.2: https://github.com/isaacs/minipass : ISC License minipass-collect 2.0.1: https://github.com/isaacs/minipass-collect#readme : ISC License -minipass-fetch 3.0.5: https://github.com/npm/minipass-fetch#readme : MIT License +minipass-fetch 4.0.1: https://github.com/npm/minipass-fetch : MIT License minipass-flush 1.0.5: https://github.com/isaacs/minipass-flush#readme : ISC License minipass-pipeline 1.2.4 : ISC License minipass-sized 1.0.3: https://github.com/isaacs/minipass-sized#readme : ISC License -minizlib v2.1.2: https://github.com/isaacs/minizlib : MIT License +minizlib 3.1.0: https://github.com/isaacs/minizlib : MIT License mitchellh-reflectwalk v1.0.2: https://github.com/mitchellh/reflectwalk : MIT License modern-go/concurrent 20180305-snapshot-bacd9c7e: https://github.com/modern-go/concurrent : Apache License 2.0 modern-go/reflect2 v1.0.2: https://github.com/modern-go/reflect2 : Apache License 2.0 @@ -924,19 +865,17 @@ mohae/deepcopy 20170929-snapshot-c48cc78d: https://github.com/mohae/deepcopy : M moment/moment 2.30.1: http://momentjs.com : MIT License moment-timezone 0.5.47: http://momentjs.com/timezone : MIT License monaco-editor 0.34.1: https://microsoft.github.io/monaco-editor/ : MIT License -@monaco-editor/loader 1.4.0: https://github.com/suren-atoyan/monaco-loader.git : MIT License -@monaco-editor/react 4.6.0: https://github.com/SurenAt93/monaco-react#readme : MIT License -mongodb/mongo-go-driver v1.14.0: https://github.com/mongodb/mongo-go-driver.git : Apache License 2.0 +@monaco-editor/loader 1.6.1: https://github.com/suren-atoyan/monaco-loader.git : MIT License +@monaco-editor/react 4.7.0: https://github.com/SurenAt93/monaco-react#readme : MIT License +mongodb/mongo-go-driver v1.17.6: https://github.com/mongodb/mongo-go-driver.git : Apache License 2.0 moo 0.5.2: https://github.com/tjvr/moo#readme : BSD 3-clause "New" or "Revised" License -moxystudio/node-cross-spawn 7.0.3: https://github.com/moxystudio/node-cross-spawn : MIT License -moxystudio/node-cross-spawn 7.0.6: https://github.com/moxystudio/node-cross-spawn : MIT License ms.js 2.1.3: https://github.com/guille/ms.js : MIT License mwitkow/go-conntrack 20190716-snapshot-2f068394: https://github.com/mwitkow/go-conntrack : Apache License 2.0 nano-css 5.6.2: https://github.com/streamich/nano-css#readme : The Unlicense -nanoid 3.3.7: https://github.com/ai/nanoid#readme : MIT License -napi-postinstall 0.3.0: https://github.com/un-ts/napi-postinstall#readme : MIT License -@napi-rs/wasm-runtime 0.2.11: https://github.com/napi-rs/napi-rs#readme : MIT License +napi-postinstall 0.3.4: https://github.com/un-ts/napi-postinstall#readme : MIT License +@napi-rs/wasm-runtime 0.2.12: https://github.com/napi-rs/napi-rs#readme : MIT License natural-compare 1.4.0: https://github.com/litejs/natural-compare : MIT License +ncruces/go-strftime v0.1.9: https://github.com/ncruces/go-strftime : MIT License nearley 2.20.1: https://github.com/hardmath123/nearley : MIT License neo-async 2.6.2: https://github.com/suguru03/Neo-Async : MIT License node-abort-controller 3.1.1: https://github.com/southpolesteve/node-abort-controller#readme : MIT License @@ -947,102 +886,103 @@ nodeca/pako 2.1.0: https://github.com/nodeca/pako : MIT License node-concat-map 0.0.1: https://github.com/substack/node-concat-map : MIT License node-entities 4.5.0: https://github.com/FB55/node-entities : BSD 2-clause "Simplified" License node-entities 6.0.1: https://github.com/FB55/node-entities : BSD 2-clause "Simplified" License -node-error-ex 1.3.2: https://github.com/qix-/node-error-ex#readme : MIT License +node-error-ex 1.3.4: https://github.com/qix-/node-error-ex#readme : MIT License node-fs-extra 10.1.0: https://github.com/jprichardson/node-fs-extra : MIT License node-glob 10.4.5: http://github.com/isaacs/node-glob : ISC License -node-glob 11.0.3: http://github.com/isaacs/node-glob : ISC License +node-glob 11.1.0: http://github.com/isaacs/node-glob : Blue Oak Model License 1.0.0 node-glob 7.2.3: http://github.com/isaacs/node-glob : ISC License node-graceful-fs 4.2.11: https://github.com/isaacs/node-graceful-fs : ISC License -node-gyp 10.2.0: https://github.com/nodejs/node-gyp : MIT License +node-gyp 11.5.0: https://github.com/nodejs/node-gyp : MIT License +node-html-entities 2.6.0: https://github.com/mdevils/node-html-entities : MIT License node-http-proxy-agent 7.0.2: https://github.com/TooTallNate/node-http-proxy-agent : MIT License node-ignore 5.3.2: https://github.com/kaelzhang/node-ignore : MIT License node-ignore 7.0.5: https://github.com/kaelzhang/node-ignore : MIT License node-int64 0.4.0: https://github.com/broofa/node-int64 : MIT License -node-jsonfile 6.1.0: https://github.com/jprichardson/node-jsonfile : MIT License +node-jsonfile 6.2.0: https://github.com/jprichardson/node-jsonfile : MIT License nodejs/string_decoder 0.10.31: https://github.com/nodejs/string_decoder : MIT License nodejs-walker 1.0.8: http://github.com/nshah/nodejs-walker : Apache License 2.0 @nodelib/fs.scandir 2.1.5: https://github.com/nodelib/nodelib/tree/master#readme : MIT License @nodelib/fs.stat 2.0.5: https://github.com/nodelib/nodelib/tree/master#readme : MIT License @nodelib/fs.walk 1.2.8: https://github.com/nodelib/nodelib/tree/master#readme : MIT License node-lru-cache 10.4.3: http://github.com/isaacs/node-lru-cache : ISC License -node-lru-cache 11.0.1: http://github.com/isaacs/node-lru-cache : ISC License +node-lru-cache 11.2.2: http://github.com/isaacs/node-lru-cache : ISC License node-lru-cache 5.1.1: http://github.com/isaacs/node-lru-cache : ISC License -node-mkdirp 0.5.6: https://github.com/substack/node-mkdirp : MIT License -node-mkdirp 1.0.4: https://github.com/substack/node-mkdirp : MIT License node-promise-retry 2.0.1: https://github.com/IndigoUnited/node-promise-retry : MIT License -node-releases 2.0.18: https://github.com/chicoxyzzy/node-releases : MIT License -node-semver 6.3.1: https://github.com/npm/node-semver : ISC License -node-semver 7.6.3: https://github.com/npm/node-semver : ISC License -node-semver 7.7.1: https://github.com/npm/node-semver : ISC License -node-semver 7.7.2: https://github.com/npm/node-semver : ISC License +node-releases 2.0.26: https://github.com/chicoxyzzy/node-releases : MIT License +node-semver 6.3.1: https://github.com/npm/node-semver : ISC License +node-semver 7.7.3: https://github.com/npm/node-semver : ISC License node-source-map-support 0.5.13: https://github.com/evanw/node-source-map-support : MIT License node-source-map-support 0.5.21: https://github.com/evanw/node-source-map-support : MIT License -nopt 7.2.1: https://github.com/npm/nopt : ISC License +nopt 8.1.0: https://github.com/npm/nopt : MIT License normalize-path 3.0.0: https://github.com/jonschlinkert/normalize-path : MIT License -@npmcli/agent 2.2.2: https://github.com/npm/agent#readme : ISC License -@npmcli/fs 3.1.1: https://github.com/npm/fs#readme : ISC License +@npmcli/agent 3.0.0: https://github.com/npm/agent#readme : ISC License +@npmcli/fs 4.0.0: https://github.com/npm/fs#readme : ISC License npm-run-path 4.0.1: https://github.com/sindresorhus/npm-run-path : MIT License nth-check 2.1.1: https://github.com/fb55/nth-check : BSD 2-clause "Simplified" License -nwsapi 2.2.20: http://javascript.nwbox.com/nwsapi/ : MIT License +nwsapi 2.2.22: http://javascript.nwbox.com/nwsapi/ : MIT License object-assign 4.1.1: https://github.com/sindresorhus/object-assign : MIT License +object-deep-merge 2.0.0: https://github.com/forcir/object-deep-merge : MIT License object.entries 1.1.9: https://github.com/es-shims/Object.entries#readme : MIT License object.fromentries 2.0.8: https://github.com/es-shims/Object.fromEntries#readme : MIT License -object-inspect 1.13.2: https://github.com/substack/object-inspect : MIT License object-inspect 1.13.4: https://github.com/substack/object-inspect : MIT License object-is 1.1.6: https://github.com/ljharb/object-is : MIT License object-keys 1.1.1: https://github.com/ljharb/object-keys : MIT License object.values 1.2.1: https://github.com/es-shims/object.values : MIT License oklog/run v1.1.0: https://github.com/oklog/run : Apache License 2.0 oklog/ulid v1.3.1: http://godoc.org/github.com/oklog/ulid : Apache License 2.0 -olekukonko-tablewriter v0.0.5: https://github.com/olekukonko/tablewriter : MIT License -ol-mapbox-style 10.7.0: https://github.com/boundlessgeo/ol-mapbox-style : BSD 2-clause "Simplified" License -OpenLayers 7.4.0: http://openlayers.org/ : BSD 2-clause "Simplified" License -OpenLayers 7.5.2: http://openlayers.org/ : BSD 2-clause "Simplified" License +olekukonko-tablewriter v1.1.3: https://github.com/olekukonko/tablewriter : MIT License +olekukonko/ts 20171002-snapshot-78ecb042: https://github.com/olekukonko/ts : MIT License +@openfeature/core 1.9.1: https://github.com/open-feature/js-sdk#readme : Apache License 2.0 +@openfeature/ofrep-core 2.0.0: https://www.npmjs.org/package/@openfeature/ofrep-core : Apache License 2.0 +@openfeature/ofrep-web-provider 0.3.5: https://www.npmjs.org/package/@openfeature/ofrep-web-provider : Apache License 2.0 +@openfeature/react-sdk 1.2.1: https://github.com/open-feature/js-sdk#readme : Apache License 2.0 +OpenLayers 10.7.0: http://openlayers.org/ : BSD 2-clause "Simplified" License @opentelemetry/api 1.9.0: https://github.com/open-telemetry/opentelemetry-js#readme : Apache License 2.0 -@opentelemetry/api-logs 0.200.0: https://github.com/open-telemetry/opentelemetry-js/tree/main/experimental/packages/api-logs : Apache License 2.0 -@opentelemetry/core 2.0.0: https://github.com/open-telemetry/opentelemetry-js#readme : Apache License 2.0 -open-telemetry/opentelemetry-go exporters/otlp/otlptrace/otlptracegrpc/v1.35.0: https://github.com/open-telemetry/opentelemetry-go : Apache License 2.0 -open-telemetry/opentelemetry-go exporters/otlp/otlptrace/v1.35.0: https://github.com/open-telemetry/opentelemetry-go : Apache License 2.0 -open-telemetry/opentelemetry-go metric/v1.35.0: https://github.com/open-telemetry/opentelemetry-go : Apache License 2.0 -open-telemetry/opentelemetry-go sdk/metric/v1.34.0: https://github.com/open-telemetry/opentelemetry-go : Apache License 2.0 -open-telemetry/opentelemetry-go sdk/v1.35.0: https://github.com/open-telemetry/opentelemetry-go : Apache License 2.0 -open-telemetry/opentelemetry-go trace/v1.35.0: https://github.com/open-telemetry/opentelemetry-go : Apache License 2.0 -open-telemetry/opentelemetry-go v1.35.0: https://github.com/open-telemetry/opentelemetry-go : Apache License 2.0 -open-telemetry/opentelemetry-go-contrib detectors/gcp/v1.34.0: https://pkg.go.dev/go.opentelemetry.io/contrib : Apache License 2.0 -open-telemetry/opentelemetry-go-contrib instrumentation/google.golang.org/grpc/otelgrpc/v0.60.0: https://pkg.go.dev/go.opentelemetry.io/contrib : Apache License 2.0 -open-telemetry/opentelemetry-go-contrib instrumentation/net/http/httptrace/otelhttptrace/v0.60.0: https://pkg.go.dev/go.opentelemetry.io/contrib : Apache License 2.0 -open-telemetry/opentelemetry-go-contrib instrumentation/net/http/otelhttp/v0.60.0: https://pkg.go.dev/go.opentelemetry.io/contrib : Apache License 2.0 -open-telemetry/opentelemetry-go-contrib propagators/jaeger/v1.35.0: https://pkg.go.dev/go.opentelemetry.io/contrib : Apache License 2.0 -open-telemetry/opentelemetry-go-contrib samplers/jaegerremote/v0.29.0: https://pkg.go.dev/go.opentelemetry.io/contrib : Apache License 2.0 -open-telemetry/opentelemetry-go-instrumentation sdk/v1.1.0 : Apache License 2.0 -@opentelemetry/otlp-transformer 0.200.0: https://github.com/open-telemetry/opentelemetry-js#readme : Apache License 2.0 -@opentelemetry/resources 2.0.0: https://github.com/open-telemetry/opentelemetry-js#readme : Apache License 2.0 -@opentelemetry/sdk-logs 0.200.0: https://github.com/open-telemetry/opentelemetry-js/tree/main/experimental/packages/sdk-logs : Apache License 2.0 -@opentelemetry/sdk-metrics 2.0.0: https://github.com/open-telemetry/opentelemetry-js/tree/main/experimental/packages/opentelemetry-sdk-metrics : Apache License 2.0 -@opentelemetry/sdk-trace-base 2.0.0: https://github.com/open-telemetry/opentelemetry-js#readme : Apache License 2.0 -@opentelemetry/semantic-conventions 1.33.0: https://github.com/open-telemetry/opentelemetry-js#readme : Apache License 2.0 +@opentelemetry/api-logs 0.202.0: https://github.com/open-telemetry/opentelemetry-js/tree/main/experimental/packages/api-logs : Apache License 2.0 +@opentelemetry/core 2.0.1: https://github.com/open-telemetry/opentelemetry-js#readme : Apache License 2.0 +open-telemetry/opentelemetry-go exporters/otlp/otlptrace/otlptracegrpc/v1.39.0: https://github.com/open-telemetry/opentelemetry-go : Apache License 2.0 +open-telemetry/opentelemetry-go exporters/otlp/otlptrace/v1.39.0: https://github.com/open-telemetry/opentelemetry-go : Apache License 2.0 +open-telemetry/opentelemetry-go metric/v1.40.0: https://github.com/open-telemetry/opentelemetry-go : Apache License 2.0 +open-telemetry/opentelemetry-go sdk/metric/v1.40.0: https://github.com/open-telemetry/opentelemetry-go : Apache License 2.0 +open-telemetry/opentelemetry-go sdk/v1.40.0: https://github.com/open-telemetry/opentelemetry-go : Apache License 2.0 +open-telemetry/opentelemetry-go trace/v1.40.0: https://github.com/open-telemetry/opentelemetry-go : Apache License 2.0 +open-telemetry/opentelemetry-go v1.40.0: https://github.com/open-telemetry/opentelemetry-go : Apache License 2.0 +open-telemetry/opentelemetry-go-contrib detectors/gcp/v1.38.0: https://pkg.go.dev/go.opentelemetry.io/contrib : Apache License 2.0 +open-telemetry/opentelemetry-go-contrib instrumentation/google.golang.org/grpc/otelgrpc/v0.64.0: https://pkg.go.dev/go.opentelemetry.io/contrib : Apache License 2.0 +open-telemetry/opentelemetry-go-contrib instrumentation/net/http/httptrace/otelhttptrace/v0.64.0: https://pkg.go.dev/go.opentelemetry.io/contrib : Apache License 2.0 +open-telemetry/opentelemetry-go-contrib instrumentation/net/http/otelhttp/v0.64.0: https://pkg.go.dev/go.opentelemetry.io/contrib : Apache License 2.0 +open-telemetry/opentelemetry-go-contrib propagators/jaeger/v1.39.0: https://pkg.go.dev/go.opentelemetry.io/contrib : Apache License 2.0 +open-telemetry/opentelemetry-go-contrib samplers/jaegerremote/v0.33.0: https://pkg.go.dev/go.opentelemetry.io/contrib : Apache License 2.0 +open-telemetry/opentelemetry-go-instrumentation sdk/v1.2.1 : Apache License 2.0 +@opentelemetry/otlp-transformer 0.202.0: https://github.com/open-telemetry/opentelemetry-js#readme : Apache License 2.0 +@opentelemetry/resources 2.0.1: https://github.com/open-telemetry/opentelemetry-js#readme : Apache License 2.0 +@opentelemetry/sdk-logs 0.202.0: https://github.com/open-telemetry/opentelemetry-js/tree/main/experimental/packages/sdk-logs : Apache License 2.0 +@opentelemetry/sdk-metrics 2.0.1: https://github.com/open-telemetry/opentelemetry-js/tree/main/experimental/packages/opentelemetry-sdk-metrics : Apache License 2.0 +@opentelemetry/sdk-trace-base 2.0.1: https://github.com/open-telemetry/opentelemetry-js#readme : Apache License 2.0 +@opentelemetry/semantic-conventions 1.37.0: https://github.com/open-telemetry/opentelemetry-js#readme : Apache License 2.0 optionator 0.9.4: https://github.com/gkz/optionator : MIT License own-keys 1.0.1: https://github.com/ljharb/own-keys#readme : MIT License -package-json-from-dist 1.0.0: https://github.com/isaacs/package-json-from-dist#readme : Blue Oak Model License 1.0.0 -PapaParse 5.5.2: http://PapaParse.com : MIT License -@parcel/watcher 2.4.1: https://github.com/parcel-bundler/parcel#readme : MIT License -@parcel/watcher-android-arm64 2.4.1: https://github.com/parcel-bundler/watcher#readme : MIT License -@parcel/watcher-darwin-arm64 2.4.1: https://github.com/parcel-bundler/watcher#readme : MIT License -@parcel/watcher-darwin-x64 2.4.1: https://github.com/parcel-bundler/watcher#readme : MIT License -@parcel/watcher-freebsd-x64 2.4.1: https://github.com/parcel-bundler/watcher#readme : MIT License -@parcel/watcher-linux-arm64-glibc 2.4.1: https://github.com/parcel-bundler/watcher#readme : MIT License -@parcel/watcher-linux-arm64-musl 2.4.1: https://github.com/parcel-bundler/watcher#readme : MIT License -@parcel/watcher-linux-arm-glibc 2.4.1: https://github.com/parcel-bundler/watcher#readme : MIT License -@parcel/watcher-linux-x64-glibc 2.4.1: https://github.com/parcel-bundler/watcher#readme : MIT License -@parcel/watcher-linux-x64-musl 2.4.1: https://github.com/parcel-bundler/watcher#readme : MIT License -@parcel/watcher-win32-arm64 2.4.1: https://github.com/parcel-bundler/watcher#readme : MIT License -@parcel/watcher-win32-ia32 2.4.1: https://github.com/parcel-bundler/watcher#readme : MIT License -@parcel/watcher-win32-x64 2.4.1: https://github.com/parcel-bundler/watcher#readme : MIT License +package-json-from-dist 1.0.1: https://github.com/isaacs/package-json-from-dist#readme : Blue Oak Model License 1.0.0 +PapaParse 5.5.3: http://PapaParse.com : MIT License +@parcel/watcher 2.5.1: https://github.com/parcel-bundler/parcel#readme : MIT License +@parcel/watcher-android-arm64 2.5.1: https://github.com/parcel-bundler/watcher#readme : MIT License +@parcel/watcher-darwin-arm64 2.5.1: https://github.com/parcel-bundler/watcher#readme : MIT License +@parcel/watcher-darwin-x64 2.5.1: https://github.com/parcel-bundler/watcher#readme : MIT License +@parcel/watcher-freebsd-x64 2.5.1: https://github.com/parcel-bundler/watcher#readme : MIT License +@parcel/watcher-linux-arm64-glibc 2.5.1: https://github.com/parcel-bundler/watcher#readme : MIT License +@parcel/watcher-linux-arm64-musl 2.5.1: https://github.com/parcel-bundler/watcher#readme : MIT License +@parcel/watcher-linux-arm-glibc 2.5.1: https://github.com/parcel-bundler/watcher#readme : MIT License +@parcel/watcher-linux-arm-musl 2.5.1: https://github.com/parcel-bundler/watcher#readme : MIT License +@parcel/watcher-linux-x64-glibc 2.5.1: https://github.com/parcel-bundler/watcher#readme : MIT License +@parcel/watcher-linux-x64-musl 2.5.1: https://github.com/parcel-bundler/watcher#readme : MIT License +@parcel/watcher-win32-arm64 2.5.1: https://github.com/parcel-bundler/watcher#readme : MIT License +@parcel/watcher-win32-ia32 2.5.1: https://github.com/parcel-bundler/watcher#readme : MIT License +@parcel/watcher-win32-x64 2.5.1: https://github.com/parcel-bundler/watcher#readme : MIT License parent-module 1.0.1: https://github.com/sindresorhus/parent-module : MIT License parse5 7.1.0: https://github.com/inikulin/parse5 : MIT License parse5 7.1.2: https://github.com/inikulin/parse5 : MIT License parse5 7.3.0: https://github.com/inikulin/parse5 : MIT License -parse-headers 2.0.5: https://github.com/kesla/parse-headers : MIT License +parse-headers 2.0.6: https://github.com/kesla/parse-headers : MIT License parse-imports-exports 0.2.4: https://github.com/uid11/parse-imports-exports#readme : MIT License parse-json v5.2.0: https://github.com/sindresorhus/parse-json : MIT License parse-statements 1.0.11: https://github.com/uid11/parse-statements#readme : MIT License @@ -1054,52 +994,49 @@ path-scurry 1.11.1: https://github.com/isaacs/path-walker#readme : Blue Oak Mode path-scurry 2.0.0: https://github.com/isaacs/path-walker#readme : Blue Oak Model License 1.0.0 path-to-regexp 1.9.0: https://github.com/pillarjs/path-to-regexp : MIT License path-type 4.0.0: https://github.com/sindresorhus/path-type : MIT License -pbf 3.2.1: https://github.com/mapbox/pbf : BSD 3-clause "New" or "Revised" License -p-defer 1.0.0: https://github.com/sindresorhus/p-defer#readme : MIT License +patrickmn-go-cache 2.1.0: https://patrickmn.com/projects/go-cache/ : MIT License +pbf 4.0.1: https://github.com/mapbox/pbf : BSD 3-clause "New" or "Revised" License performance-now 2.1.0: https://github.com/meryn/performance-now : MIT License -@petamoriken/float16 3.8.7: https://github.com/petamoriken/float16 : MIT License -picocolors 1.1.0: https://github.com/alexeyraspopov/picocolors#readme : ISC License +@petamoriken/float16 3.9.3: https://github.com/petamoriken/float16 : MIT License picocolors 1.1.1: https://github.com/alexeyraspopov/picocolors#readme : ISC License picomatch 2.3.1: https://github.com/micromatch/picomatch : MIT License -picomatch 4.0.2: https://github.com/micromatch/picomatch : MIT License -pierrec-lz4 v4.1.22: https://github.com/pierrec/lz4 : BSD 3-clause "New" or "Revised" License +picomatch 4.0.3: https://github.com/micromatch/picomatch : MIT License +pierrec-lz4 v4.1.23: https://github.com/pierrec/lz4 : BSD 3-clause "New" or "Revised" License pirates 4.0.7: https://github.com/ariporad/pirates#readme : MIT License pkg-dir 4.2.0: https://github.com/sindresorhus/pkg-dir : MIT License @pkgjs/parseargs 0.11.0: https://github.com/pkgjs/parseargs#readme : MIT License -@pkgr/core 0.2.7: https://github.com/un-ts/pkgr/blob/master/packages/core : MIT License @pkgr/core 0.2.9: https://github.com/un-ts/pkgr/blob/master/packages/core : MIT License -playwright 1.54.1: https://www.npmjs.com/package/playwright : Apache License 2.0 -@playwright/test 1.54.1: https://github.com/Microsoft/playwright-test#readme : Apache License 2.0 +playwright 1.56.1: https://www.npmjs.com/package/playwright : Apache License 2.0 +@playwright/test 1.56.1: https://github.com/Microsoft/playwright-test#readme : Apache License 2.0 p-limit 2.3.0: https://github.com/sindresorhus/p-limit#readme : MIT License p-limit 3.1.0: https://github.com/sindresorhus/p-limit#readme : MIT License p-locate 4.1.0: https://github.com/sindresorhus/p-locate : MIT License p-locate v5.0.0: https://github.com/sindresorhus/p-locate : MIT License -p-map 4.0.0: https://github.com/sindresorhus/p-map#readme : MIT License -pmezard-go-difflib 1.0.0: https://github.com/pmezard/go-difflib : BSD 3-clause "New" or "Revised" License -point-geometry 0.1.0: https://github.com/mapbox/point-geometry : ISC License +p-map 7.0.3: https://github.com/sindresorhus/p-map#readme : MIT License +pmezard-go-difflib 20190219-snapshot-5d4384ee: https://github.com/pmezard/go-difflib : Apache License 2.0 @popperjs/core 2.11.8: https://github.com/popperjs/popper-core#readme : MIT License -portfinder 1.0.32: https://github.com/indexzero/node-portfinder : MIT License +portfinder 1.0.38: https://github.com/indexzero/node-portfinder : MIT License possible-typed-array-names 1.1.0: https://github.com/ljharb/possible-typed-array-names#readme : MIT License -PostCSS 8.4.45: http://postcss.org/ : MIT License +PostCSS 8.5.6: http://postcss.org/ : MIT License postcss-modules-extract-imports 3.1.0: https://github.com/geelen/postcss-modules-extract-imports : ISC License -postcss-modules-local-by-default 4.0.5: https://github.com/css-modules/postcss-modules-local-by-default : MIT License -postcss-modules-scope 3.2.0: https://github.com/geelen/postcss-modules-scope : ISC License +postcss-modules-local-by-default 4.2.0: https://github.com/css-modules/postcss-modules-local-by-default : MIT License +postcss-modules-scope 3.2.1: https://github.com/geelen/postcss-modules-scope : ISC License postcss-modules-values 4.0.0: https://github.com/css-modules/postcss-modules-constants#readme : ISC License -postcss-selector-parser 6.1.2: https://github.com/postcss/postcss-selector-parser : MIT License +postcss-selector-parser 7.1.0: https://github.com/postcss/postcss-selector-parser : MIT License postcss-value-parser 4.2.0: https://github.com/TrySound/postcss-value-parser : MIT License prefix-style 2.0.1: https://github.com/mattdesl/prefix-style : MIT License prelude-ls 1.2.1: https://github.com/gkz/prelude-ls : MIT License -prettier 3.6.2: https://github.com/jlongster/prettier#readme : MIT License +Prettier IO 3.6.2: https://prettier.io : MIT License prettier-linter-helpers 1.0.0: https://github.com/prettier/prettier-linter-helpers#readme : MIT License pretty-format 27.5.1: https://www.npmjs.org/package/pretty-format : MIT License -pretty-format 30.0.2: https://www.npmjs.org/package/pretty-format : MIT License +pretty-format 30.2.0: https://www.npmjs.org/package/pretty-format : MIT License PrismJS 1.30.0: http://prismjs.com : MIT License -proc-log 4.2.0: https://github.com/npm/proc-log#readme : ISC License +proc-log 5.0.0: https://github.com/npm/proc-log#readme : ISC License prometheus-client_model v0.6.2: https://github.com/prometheus/client_model : Apache License 2.0 -prometheus-common v0.63.0: https://github.com/prometheus/common : Apache License 2.0 +prometheus-common v0.67.5: https://github.com/prometheus/common : Apache License 2.0 prometheus-procfs v0.16.1: https://github.com/prometheus/procfs.git : Apache License 2.0 prop-types 15.8.1: https://github.com/facebook/prop-types : MIT License -ProtoBuf.js 7.4.0: http://dcode.io : BSD 3-clause "New" or "Revised" License +ProtoBuf.js 7.5.4: http://dcode.io : BSD 3-clause "New" or "Revised" License @protobufjs/aspromise 1.1.2: https://github.com/dcodeIO/protobuf.js#readme : BSD 3-clause "New" or "Revised" License @protobufjs/base64 1.1.2: https://github.com/dcodeIO/protobuf.js#readme : BSD 3-clause "New" or "Revised" License @protobufjs/codegen 2.0.4: https://github.com/dcodeIO/protobuf.js#readme : BSD 3-clause "New" or "Revised" License @@ -1111,97 +1048,96 @@ ProtoBuf.js 7.4.0: http://dcode.io : BSD 3-clause "New" or "Revised" License @protobufjs/pool 1.1.0: https://github.com/dcodeIO/protobuf.js#readme : BSD 3-clause "New" or "Revised" License @protobufjs/utf8 1.1.0: https://github.com/dcodeIO/protobuf.js#readme : BSD 3-clause "New" or "Revised" License protocol-buffers-schema 3.6.0: https://github.com/mafintosh/protocol-buffers-schema : MIT License -pterm/pterm v0.12.80: https://github.com/pterm/pterm : MIT License +pterm/pterm v0.12.82: https://github.com/pterm/pterm : MIT License p-try 2.2.0: https://github.com/sindresorhus/p-try#readme : MIT License Punycode.js 2.3.1: http://mths.be/punycode : MIT License pure-rand 7.0.1: https://github.com/dubzzz/pure-rand#readme : MIT License -Qix-/color-convert 1.9.3: https://github.com/Qix-/color-convert : MIT License Qix-/color-convert 2.0.1: https://github.com/Qix-/color-convert : MIT License -qs - QS Querystring 6.13.0: https://github.com/ljharb/qs : BSD 3-clause "New" or "Revised" License queue-microtask 1.2.3: https://github.com/feross/queue-microtask : MIT License quick-lru 6.1.2: https://github.com/sindresorhus/quick-lru#readme : MIT License -quickselect 2.0.0: https://github.com/mourner/quickselect#readme : ISC License +quickselect 3.0.0: https://github.com/mourner/quickselect#readme : ISC License raf-schd 4.0.3: https://github.com/alexreardon/raf-schd#readme : MIT License railroad-diagrams 1.0.0: https://github.com/tabatkins/railroad-diagrams : Creative Commons Zero v1.0 Universal randexp 0.4.6: http://fent.github.io/randexp.js/ : MIT License randombytes 2.1.0: https://github.com/crypto-browserify/randombytes : MIT License raw-body 1.1.7: https://github.com/stream-utils/raw-body : MIT License Raynos/for-each 0.3.5: https://github.com/Raynos/for-each : MIT License -rbush 3.0.1: https://github.com/mourner/rbush : MIT License -rc-cascader 3.33.0: https://github.com/react-component/cascader : MIT License -@rc-component/portal 1.1.2: https://github.com/react-component/portal : MIT License -@rc-component/trigger 2.2.3: https://github.com/react-component/trigger : MIT License -rc-drawer 7.2.0: https://github.com/react-component/drawer : MIT License -rc-motion 2.9.2: https://react-component.github.io/motion : MIT License -rc-overflow 1.3.2: https://react-component.github.io/overflow : MIT License -rc-overflow 1.4.1: https://react-component.github.io/overflow : MIT License -rc-picker 4.9.2: https://react-component.github.io/picker : MIT License -rc-resize-observer 1.4.0: https://react-component.github.io/resize-observer : MIT License +rbush 4.0.1: https://github.com/mourner/rbush : MIT License +@rc-component/cascader 1.9.0: https://github.com/react-component/cascader : MIT License +@rc-component/drawer 1.3.0: https://github.com/react-component/drawer : MIT License +@rc-component/motion 1.3.1: https://react-component.github.io/motion : MIT License +@rc-component/overflow 1.0.0: https://react-component.github.io/overflow : MIT License +@rc-component/picker 1.7.1: https://react-component.github.io/picker : MIT License +@rc-component/portal 2.2.0: https://github.com/react-component/portal : MIT License +@rc-component/resize-observer 1.1.1: https://react-component.github.io/resize-observer : MIT License +@rc-component/select 1.3.6: http://github.com/react-component/select : MIT License +@rc-component/slider 1.0.1: https://react-component.github.io/slider : MIT License +@rc-component/tooltip 1.4.0: http://github.com/react-component/tooltip : MIT License +@rc-component/tree 1.1.0: http://github.com/react-component/tree : MIT License +@rc-component/trigger 3.9.0: https://github.com/react-component/trigger : MIT License +@rc-component/util 1.9.0: http://github.com/react-component/util : MIT License +@rc-component/virtual-list 1.0.2: https://github.com/react-component/virtual-list : MIT License +rc-overflow 1.5.0: https://react-component.github.io/overflow : MIT License rc-resize-observer 1.4.3: https://react-component.github.io/resize-observer : MIT License -rc-select 14.16.7: http://github.com/react-component/select : MIT License -rc-slider 11.1.8: http://github.com/react-component/slider : MIT License -rc-tooltip 6.4.0: http://github.com/react-component/tooltip : MIT License -rc-tree 5.13.1: http://github.com/react-component/tree : MIT License -rc-util 5.43.0: http://github.com/react-component/util : MIT License rc-util 5.44.4: http://github.com/react-component/util : MIT License -rc-virtual-list 3.14.5: https://github.com/react-component/virtual-list : MIT License -@react-aria/dialog 3.5.23: https://github.com/adobe-private/react-spectrum-v3#readme : Apache License 2.0 -@react-aria/focus 3.20.1: https://github.com/adobe-private/react-spectrum-v3#readme : Apache License 2.0 -@react-aria/focus 3.20.2: https://github.com/adobe-private/react-spectrum-v3#readme : Apache License 2.0 -@react-aria/i18n 3.12.8: https://github.com/adobe-private/react-spectrum-v3#readme : Apache License 2.0 -@react-aria/interactions 3.25.0: https://github.com/adobe-private/react-spectrum-v3#readme : Apache License 2.0 -@react-aria/overlays 3.26.1: https://github.com/adobe-private/react-spectrum-v3#readme : Apache License 2.0 -@react-aria/overlays 3.27.0: https://github.com/adobe-private/react-spectrum-v3#readme : Apache License 2.0 -@react-aria/ssr 3.9.8: https://github.com/adobe/react-spectrum#readme : Apache License 2.0 -@react-aria/utils 3.28.1: https://github.com/adobe-private/react-spectrum-v3#readme : Apache License 2.0 -@react-aria/utils 3.28.2: https://github.com/adobe-private/react-spectrum-v3#readme : Apache License 2.0 -@react-aria/visually-hidden 3.8.22: https://github.com/adobe-private/react-spectrum-v3#readme : Apache License 2.0 -react-calendar 5.1.0: https://github.com/freiksenet/react-calendar : MIT License +@react-aria/dialog 3.5.31: https://github.com/adobe-private/react-spectrum-v3#readme : Apache License 2.0 +@react-aria/focus 3.21.2: https://github.com/adobe-private/react-spectrum-v3#readme : Apache License 2.0 +@react-aria/focus 3.21.3: https://github.com/adobe-private/react-spectrum-v3#readme : Apache License 2.0 +@react-aria/i18n 3.12.13: https://github.com/adobe-private/react-spectrum-v3#readme : Apache License 2.0 +@react-aria/i18n 3.12.14: https://github.com/adobe-private/react-spectrum-v3#readme : Apache License 2.0 +@react-aria/interactions 3.25.6: https://github.com/adobe-private/react-spectrum-v3#readme : Apache License 2.0 +@react-aria/interactions 3.26.0: https://github.com/adobe-private/react-spectrum-v3#readme : Apache License 2.0 +@react-aria/overlays 3.30.0: https://github.com/adobe-private/react-spectrum-v3#readme : Apache License 2.0 +@react-aria/overlays 3.31.0: https://github.com/adobe-private/react-spectrum-v3#readme : Apache License 2.0 +@react-aria/ssr 3.9.10: https://github.com/adobe/react-spectrum#readme : Apache License 2.0 +@react-aria/utils 3.31.0: https://github.com/adobe-private/react-spectrum-v3#readme : Apache License 2.0 +@react-aria/utils 3.32.0: https://github.com/adobe-private/react-spectrum-v3#readme : Apache License 2.0 +@react-aria/visually-hidden 3.8.28: https://github.com/adobe-private/react-spectrum-v3#readme : Apache License 2.0 +@react-aria/visually-hidden 3.8.29: https://github.com/adobe-private/react-spectrum-v3#readme : Apache License 2.0 +react-calendar 6.0.0: https://github.com/freiksenet/react-calendar : MIT License react-colorful 5.6.1: https://github.com/omgovich/react-colorful : MIT License react-custom-scrollbars-2 4.5.0 : MIT License -react-data-grid 7.0.0-beta.46: https://github.com/adazzle/react-data-grid : MIT License +react-data-grid 7.0.0-beta.56: https://github.com/adazzle/react-data-grid : MIT License react-dom 18.3.1: https://www.npmjs.com/package/react-dom : MIT License -react-dropzone/react-dropzone 14.3.5: https://github.com/react-dropzone/react-dropzone : MIT License +react-dropzone/react-dropzone 14.3.8: https://github.com/react-dropzone/react-dropzone : MIT License react-from-dom 0.7.5: https://github.com/gilbarbara/react-from-dom#readme : MIT License React from Facebook 18.3.1: https://react.dev : MIT License react-highlight-words 0.21.0: https://bvaughn.github.io/react-highlight-words/ : MIT License -react-hook-form 7.53.0: https://github.com/bluebill1049/react-forme#readme : MIT License -react-i18next 15.5.1: https://github.com/i18next/react-i18next : MIT License +react-hook-form 7.65.0: https://github.com/bluebill1049/react-forme#readme : MIT License +react-i18next 15.7.4: https://github.com/i18next/react-i18next : MIT License react-immutable-proptypes 2.2.0: https://github.com/HurricaneJames/react-immutable-proptypes : MIT License react-inlinesvg 4.2.0: https://github.com/matthewwithanm/react-inlinesvg : MIT License react-is 16.13.1: https://reactjs.org/ : MIT License react-is 17.0.2: https://reactjs.org/ : MIT License react-is 18.2.0: https://reactjs.org/ : MIT License react-is 18.3.1: https://reactjs.org/ : MIT License -ReactiveX RxJS 7.8.1: http://reactivex.io/rxjs : Apache License 2.0 +ReactiveX RxJS 7.8.2: https://rxjs.dev/ : Apache License 2.0 reactredux 9.2.0: https://react-redux.js.org : MIT License react-router-dom 5.3.4: https://github.com/reacttraining/react-router#readme : MIT License -@react-stately/flags 3.1.1: https://github.com/adobe/react-spectrum#readme : Apache License 2.0 -@react-stately/overlays 3.6.15: https://github.com/adobe-private/react-spectrum-v3#readme : Apache License 2.0 -@react-stately/utils 3.10.6: https://github.com/adobe-private/react-spectrum-v3#readme : Apache License 2.0 +@react-stately/flags 3.1.2: https://github.com/adobe/react-spectrum#readme : Apache License 2.0 +@react-stately/overlays 3.6.20: https://github.com/adobe-private/react-spectrum-v3#readme : Apache License 2.0 +@react-stately/overlays 3.6.21: https://github.com/adobe-private/react-spectrum-v3#readme : Apache License 2.0 +@react-stately/utils 3.10.8: https://github.com/adobe-private/react-spectrum-v3#readme : Apache License 2.0 +@react-stately/utils 3.11.0: https://github.com/adobe-private/react-spectrum-v3#readme : Apache License 2.0 react-table 7.8.0: https://github.com/nicktomlin/react-table : MIT License -reacttraining/react-router 5.3.4: https://github.com/reacttraining/react-router : MIT License -reacttraining/react-router 6.27.0: https://github.com/reacttraining/react-router : MIT License react-transition-group 4.4.5: https://github.com/reactjs/react-transition-group#readme : BSD 3-clause "New" or "Revised" License -@react-types/button 3.12.0: https://github.com/adobe-private/react-spectrum-v3#readme : Apache License 2.0 -@react-types/dialog 3.5.17: https://github.com/adobe-private/react-spectrum-v3#readme : Apache License 2.0 -@react-types/overlays 3.8.14: https://github.com/adobe-private/react-spectrum-v3#readme : Apache License 2.0 -@react-types/shared 3.29.0: https://github.com/adobe-private/react-spectrum-v3#readme : Apache License 2.0 +@react-types/button 3.14.1: https://github.com/adobe-private/react-spectrum-v3#readme : Apache License 2.0 +@react-types/dialog 3.5.22: https://github.com/adobe-private/react-spectrum-v3#readme : Apache License 2.0 +@react-types/overlays 3.9.2: https://github.com/adobe-private/react-spectrum-v3#readme : Apache License 2.0 +@react-types/shared 3.32.1: https://github.com/adobe-private/react-spectrum-v3#readme : Apache License 2.0 react-universal-interface 0.6.2: https://github.com/streamich/react-universal-interface#readme : The Unlicense react-use 17.6.0: https://github.com/streamich/react-use#readme : The Unlicense react-window 1.8.11: https://github.com/radubrehar/react-window : MIT License -readdirp 4.0.2: https://github.com/thlorenz/readdirp : MIT License +readdirp 4.1.2: https://github.com/thlorenz/readdirp : MIT License rechoir 0.8.0: https://github.com/tkellen/node-rechoir : MIT License redent 3.0.0: https://github.com/sindresorhus/redent : MIT License Redux JS 5.0.1: http://redux.js.org : MIT License reflect.getprototypeof 1.0.10: https://github.com/es-shims/Reflect.getPrototypeOf : MIT License -regenerator-runtime 0.14.1: https://github.com/hackwaly/regenerator-runtime : MIT License regexp.prototype.flags 1.5.4: https://github.com/es-shims/regexp.prototype.flags : MIT License -remix-run/react-router 6.27.0: https://reactrouter.com : MIT License -@remix-run/router 1.20.0: https://github.com/remix-run/react-router#readme : MIT License replace-in-file-webpack-plugin 1.0.6: https://github.com/oyslin/replace-in-file-webpack-plugin#readme : MIT License require-directory 2.1.1: https://github.com/troygoode/node-require-directory/ : MIT License require-from-string 2.0.2: https://github.com/floatdrop/require-from-string : MIT License +reserved-identifiers 1.2.0: https://github.com/sindresorhus/reserved-identifiers#readme : MIT License resize-observer-polyfill 1.5.1: https://github.com/que-etc/resize-observer-polyfill : MIT License resolve-cwd 3.0.0: https://github.com/sindresorhus/resolve-cwd : MIT License resolve-from 4.0.0: https://github.com/sindresorhus/resolve-from : MIT License @@ -1211,7 +1147,7 @@ resolve-protobuf-schema 2.1.0: https://github.com/mafintosh/resolve-protobuf-sch ret.js 0.1.15: https://github.com/fent/ret.js : MIT License reusify 1.1.0: https://github.com/mcollina/reusify#readme : MIT License robust-predicates 3.0.2: https://github.com/mourner/robust-predicates#readme : The Unlicense -rogpeppe/go-internal v1.13.1: http://github.com/rogpeppe/go-internal/ : BSD 3-clause "New" or "Revised" License +rogpeppe/go-internal v1.14.1: http://github.com/rogpeppe/go-internal/ : BSD 3-clause "New" or "Revised" License rrweb-cssom 0.8.0: https://github.com/rrweb-io/CSSOM#readme : MIT License rst-selector-parser 2.2.3: https://github.com/aweary/rst-selector-parser#readme : BSD 3-clause "New" or "Revised" License rtl-css-js 1.16.1: https://github.com/kentcdodds/rtl-css-js : MIT License @@ -1223,14 +1159,13 @@ safe-json-parse 1.0.1: https://github.com/Raynos/safe-json-parse : MIT License safe-push-apply 1.0.0: https://github.com/ljharb/safe-push-apply#readme : MIT License safer-buffer 2.1.2: https://github.com/ChALkeR/safer-buffer#readme : MIT License safe-regex-test 1.1.0: https://github.com/ljharb/safe-regex-test#readme : MIT License -samccone/chrome-trace-event 1.0.4: https://github.com/joyent/node-trace-event#readme : MIT License +samccone/chrome-trace-event 1.0.4: https://github.com/samccone/chrome-trace-event : MIT License samsonjs/format 0.2.2: https://github.com/samsonjs/format : MIT License -sass 1.89.2: https://github.com/sass/dart-sass : MIT License +sass 1.93.2: https://github.com/sass/dart-sass : MIT License saxes 6.0.0: https://github.com/lddubeau/saxes : MIT License scheduler 0.23.2: https://reactjs.org/ : MIT License schema-utils 3.3.0: https://github.com/webpack-contrib/schema-utils#readme : MIT License -schema-utils 4.2.0: https://github.com/webpack-contrib/schema-utils#readme : MIT License -schema-utils 4.3.2: https://github.com/webpack-contrib/schema-utils#readme : MIT License +schema-utils 4.3.3: https://github.com/webpack-contrib/schema-utils#readme : MIT License screenfull 5.2.0: https://github.com/sindresorhus/screenfull.js : MIT License selection-is-backward 1.0.0: https://github.com/webmodules/selection-is-backward : MIT License serialize-javascript 6.0.2: https://github.com/yahoo/serialize-javascript : BSD 3-clause "New" or "Revised" License @@ -1242,52 +1177,47 @@ shallow-clone 3.0.1: https://github.com/jonschlinkert/shallow-clone : MIT Licens shebang-command 2.0.0: https://github.com/kevva/shebang-command#readme : MIT License shebang-regex 3.0.0: https://github.com/sindresorhus/shebang-regex : MIT License shurcooL-sanitized_anchor_name 1.0.0: https://github.com/shurcooL/sanitized_anchor_name : MIT License -side-channel 1.0.6: https://github.com/ljharb/side-channel#readme : MIT License side-channel 1.1.0: https://github.com/ljharb/side-channel#readme : MIT License side-channel-list 1.0.0: https://github.com/ljharb/side-channel-list#readme : MIT License side-channel-map 1.0.1: https://github.com/ljharb/side-channel-map#readme : MIT License side-channel-weakmap 1.0.2: https://github.com/ljharb/side-channel-weakmap#readme : MIT License -signal-exit 3.0.7: https://github.com/bcoe/signal-exit : ISC License -signal-exit 4.1.0: https://github.com/bcoe/signal-exit : ISC License sigs.k8s.io/randfill v1.0.0: https://github.com/kubernetes-sigs/randfill : Apache License 2.0 @sinclair/typebox 0.27.8: https://github.com/sinclairzx81/typebox#readme : MIT License -@sinclair/typebox 0.34.37: https://github.com/sinclairzx81/typebox#readme : MIT License -sindresorhus/globals 11.12.0: https://github.com/sindresorhus/globals : MIT License +@sinclair/typebox 0.34.41: https://github.com/sinclairzx81/typebox#readme : MIT License +@sindresorhus/base62 1.0.0: https://github.com/sindresorhus/base62#readme : MIT License sindresorhus/globals 14.0.0: https://github.com/sindresorhus/globals : MIT License -sindresorhus/globals 16.3.0: https://github.com/sindresorhus/globals : MIT License +sindresorhus/globals 16.4.0: https://github.com/sindresorhus/globals : MIT License sindresorhus/onetime v5.1.2: https://github.com/sindresorhus/onetime : MIT License sindresorhus/slash v3.0.0: https://github.com/sindresorhus/slash : MIT License +sindresorhus/supports-color 8.1.1: https://github.com/sindresorhus/supports-color : MIT License +sindresorhus/supports-color v7.2.0: https://github.com/sindresorhus/supports-color : MIT License @sinonjs/commons 3.0.1: https://github.com/sinonjs/commons#readme : BSD 3-clause "New" or "Revised" License @sinonjs/fake-timers 13.0.5: http://github.com/sinonjs/fake-timers : BSD 3-clause "New" or "Revised" License smart-buffer 4.2.0: https://github.com/JoshGlazebrook/smart-buffer : MIT License -socks 2.8.3: https://github.com/JoshGlazebrook/socks : MIT License -socks-proxy-agent 8.0.4: https://github.com/TooTallNate/node-socks-proxy-agent : MIT License -sort-asc 0.1.0: https://github.com/jonschlinkert/sort-asc : MIT License -sort-desc 0.1.1: https://github.com/jonschlinkert/sort-desc : MIT License -sort-object 0.3.2: https://github.com/helpers/sort-object : MIT License +socks 2.8.7: https://github.com/JoshGlazebrook/socks : MIT License +socks-proxy-agent 8.0.5: https://github.com/TooTallNate/node-socks-proxy-agent : MIT License source-map 0.5.6: https://github.com/mozilla/source-map : BSD 3-clause "New" or "Revised" License source-map 0.5.7: https://github.com/mozilla/source-map : BSD 3-clause "New" or "Revised" License source-map 0.6.1: https://github.com/mozilla/source-map : BSD 3-clause "New" or "Revised" License source-map-js 1.2.1: https://github.com/7rulnik/source-map : BSD 3-clause "New" or "Revised" License spdx-exceptions 2.5.0: https://github.com/kemitchell/spdx-exceptions.js#readme : Creative Commons Attribution 3.0 spdx-expression-parse.js 4.0.0: https://github.com/jslicense/spdx-expression-parse.js : MIT License -spdx-license-ids 3.0.21: https://github.com/shinnn/spdx-license-ids#readme : Creative Commons Zero v1.0 Universal -spiffe/go-spiffe v2.5.0: https://github.com/spiffe/go-spiffe : Apache License 2.0 +spdx-license-ids 3.0.22: https://github.com/shinnn/spdx-license-ids#readme : Creative Commons Zero v1.0 Universal +spiffe/go-spiffe v2.6.0: https://github.com/spiffe/go-spiffe : Apache License 2.0 sprintf.js 1.0.3: https://github.com/alexei/sprintf.js : BSD 3-clause "New" or "Revised" License -sprintf.js 1.1.3: https://github.com/alexei/sprintf.js : BSD 3-clause "New" or "Revised" License -ssri 10.0.6: https://github.com/zkat/ssri#readme : ISC License +ssri 12.0.0: https://github.com/zkat/ssri#readme : ISC License stable-stringify 1.0.1: https://github.com/samn/json-stable-stringify : MIT License stackframe 1.3.4: https://github.com/stacktracejs/stackframe : MIT License stack-generator 2.0.10: https://github.com/stacktracejs/stack-generator : MIT License stacktrace-gps 3.1.2: https://github.com/stacktracejs/stacktrace-gps : MIT License -stacktrace-js v2.0.2: http://stacktracejs.com : MIT License +stacktrace-js v2.0.2: http://stacktracejs.com/ : MIT License stack-utils 2.0.6: https://github.com/jamestalmage/stack-utils#readme : MIT License state-local 1.0.7: https://github.com/suren-atoyan/state-local#readme : MIT License -stoewer/go-strcase v1.3.0: https://github.com/stoewer/go-strcase : MIT License +stoewer/go-strcase v1.3.1: https://github.com/stoewer/go-strcase : MIT License stop-iteration-iterator 1.1.0: https://github.com/ljharb/stop-iteration-iterator#readme : MIT License -streamich/memfs 3.6.0: https://github.com/streamich/memfs : The Unlicense +streamich/memfs 3.5.3: https://github.com/streamich/memfs : The Unlicense stretchr/objx v0.5.2: https://github.com/stretchr/objx : MIT License -strfmt v0.23.0: https://github.com/go-openapi/strfmt : Apache License 2.0 +strfmt v0.25.0: https://github.com/go-openapi/strfmt : Apache License 2.0 string-hash 1.1.3: https://github.com/darkskyapp/string-hash#readme : Creative Commons Zero v1.0 Universal string-length 4.0.2: https://github.com/sindresorhus/string-length : MIT License string.prototype.matchall 4.0.12: https://github.com/ljharb/String.prototype.matchAll#readme : MIT License @@ -1298,8 +1228,10 @@ string.prototype.trimstart 1.0.8: https://github.com/KhaledElAnsari/String.proto StringTemplate 0.2.1: http://www.stringtemplate.org/ : MIT License string-width 4.2.3: https://github.com/sindresorhus/string-width : MIT License string-width 5.1.2: https://github.com/sindresorhus/string-width : MIT License -Strip ANSI 6.0.1: https://github.com/sindresorhus/strip-ansi : MIT License -Strip ANSI 7.1.0: https://github.com/sindresorhus/strip-ansi : MIT License +string-width-cjs : ISC License +Strip ANSI 6.0.1: https://github.com/chalk/strip-ansi : MIT License +Strip ANSI 7.1.2: https://github.com/chalk/strip-ansi : MIT License +strip-ansi-cjs : ISC License strip-bom 3.0.0: https://github.com/sindresorhus/strip-bom : MIT License strip-bom 4.0.0: https://github.com/sindresorhus/strip-bom : MIT License strip-comments 2.0.1: https://github.com/jonschlinkert/strip-comments : MIT License @@ -1308,42 +1240,49 @@ strip-indent v3.0.0: https://github.com/sindresorhus/strip-indent : MIT License strip-json-comments 3.1.1: https://github.com/sindresorhus/strip-json-comments : MIT License style-loader 4.0.0: https://github.com/webpack/style-loader : MIT License stylis 4.2.0: https://github.com/thysultan/stylis.js : MIT License -stylis 4.3.4: https://github.com/thysultan/stylis.js : MIT License +stylis 4.3.6: https://github.com/thysultan/stylis.js : MIT License @stylistic/eslint-plugin-ts 4.4.1: https://github.com/eslint-stylistic/eslint-stylistic#readme : MIT License -substrait-io/substrait-go v3.9.0 : Apache License 2.0 -supports-color 5.5.0: https://github.com/chalk/supports-color : MIT License -supports-color 8.1.1: https://github.com/chalk/supports-color : MIT License -supports-color v7.2.0: https://github.com/chalk/supports-color : MIT License +substrait-io/substrait v0.78.1 : Apache License 2.0 +substrait-io/substrait-go v7.2.2 : Apache License 2.0 supports-preserve-symlinks-flag 1.0.0: https://github.com/inspect-js/node-supports-preserve-symlinks-flag#readme : MIT License +swag conv/v0.25.4: https://github.com/go-openapi/swag : Apache License 2.0 +swag fileutils/v0.25.1: https://github.com/go-openapi/swag : Apache License 2.0 +swag jsonname/v0.25.4: https://github.com/go-openapi/swag : Apache License 2.0 +swag jsonutils/v0.25.4: https://github.com/go-openapi/swag : Apache License 2.0 +swag loading/v0.25.4: https://github.com/go-openapi/swag : Apache License 2.0 +swag mangling/v0.25.1: https://github.com/go-openapi/swag : Apache License 2.0 +swag stringutils/v0.25.4: https://github.com/go-openapi/swag : Apache License 2.0 +swag typeutils/v0.25.4: https://github.com/go-openapi/swag : Apache License 2.0 swag v0.23.1: https://github.com/go-openapi/swag : Apache License 2.0 -@swc/core 1.12.11: https://github.com/swc-project/node-swc#readme : Apache License 2.0 -@swc/core-darwin-arm64 1.12.11: https://swc.rs : (MIT License AND Apache License 2.0) -@swc/core-darwin-x64 1.12.11: https://swc.rs : (MIT License AND Apache License 2.0) -@swc/core-linux-arm64-gnu 1.12.11: https://swc.rs : (MIT License AND Apache License 2.0) -@swc/core-linux-arm64-musl 1.12.11: https://swc.rs : (MIT License AND Apache License 2.0) -@swc/core-linux-arm-gnueabihf 1.12.11: https://swc.rs : Apache License 2.0 -@swc/core-linux-x64-gnu 1.12.11: https://swc.rs : (MIT License AND Apache License 2.0) -@swc/core-linux-x64-musl 1.12.11: https://swc.rs : (MIT License AND Apache License 2.0) -@swc/core-win32-arm64-msvc 1.12.11: https://swc.rs : (MIT License AND Apache License 2.0) -@swc/core-win32-ia32-msvc 1.12.11: https://swc.rs : (MIT License AND Apache License 2.0) -@swc/core-win32-x64-msvc 1.12.11: https://swc.rs : (MIT License AND Apache License 2.0) +swag yamlutils/v0.25.4: https://github.com/go-openapi/swag : Apache License 2.0 +@swc/core 1.14.0: https://github.com/swc-project/node-swc#readme : Apache License 2.0 +@swc/core-darwin-arm64 1.14.0: https://swc.rs : (MIT License AND Apache License 2.0) +@swc/core-darwin-x64 1.14.0: https://swc.rs : (MIT License AND Apache License 2.0) +@swc/core-linux-arm64-gnu 1.14.0: https://swc.rs : (MIT License AND Apache License 2.0) +@swc/core-linux-arm64-musl 1.14.0: https://swc.rs : (MIT License AND Apache License 2.0) +@swc/core-linux-arm-gnueabihf 1.14.0: https://swc.rs : Apache License 2.0 +@swc/core-linux-x64-gnu 1.14.0: https://swc.rs : (MIT License AND Apache License 2.0) +@swc/core-linux-x64-musl 1.14.0: https://swc.rs : (MIT License AND Apache License 2.0) +@swc/core-win32-arm64-msvc 1.14.0: https://swc.rs : (MIT License AND Apache License 2.0) +@swc/core-win32-ia32-msvc 1.14.0: https://swc.rs : (MIT License AND Apache License 2.0) +@swc/core-win32-x64-msvc 1.14.0: https://swc.rs : (MIT License AND Apache License 2.0) @swc/counter 0.1.3: https://swc.rs : Apache License 2.0 -@swc/helpers 0.5.13: https://github.com/swc-project/helpers#readme : Apache License 2.0 @swc/helpers 0.5.17: https://github.com/swc-project/helpers#readme : Apache License 2.0 @swc/jest 0.2.39: https://github.com/swc-project/jest : MIT License swc-loader 0.2.6: https://github.com/swc-project/swc-loader#readme : MIT License -@swc/types 0.1.23: https://swc.rs : Apache License 2.0 +@swc/types 0.1.25: https://swc.rs : Apache License 2.0 symbol-tree 3.2.4: https://github.com/Joris-van-der-Wel/js-symbol-tree#readme : MIT License -tabbable 6.2.0: https://github.com/davidtheclark/tabbable#readme : MIT License -@tanstack/react-virtual 3.10.8: https://react-virtual.tanstack.com/ : MIT License -@tanstack/virtual-core 3.10.8: https://github.com/tanstack/virtual#readme : MIT License -tapable 2.2.1: https://github.com/webpack/tapable : MIT License -tar 6.2.1: https://github.com/isaacs/node-tar : ISC License -terser 5.39.0: https://github.com/fabiosantoscode/terser : BSD 2-clause "Simplified" License +tabbable 6.3.0: https://github.com/davidtheclark/tabbable#readme : MIT License +@tanstack/react-virtual 3.13.12: https://react-virtual.tanstack.com/ : MIT License +@tanstack/virtual-core 3.13.12: https://github.com/tanstack/virtual#readme : MIT License +tapable 2.3.0: https://github.com/webpack/tapable : MIT License +tapjs/signal-exit 3.0.7: https://github.com/tapjs/signal-exit : ISC License +tapjs/signal-exit 4.1.0: https://github.com/tapjs/signal-exit : ISC License +terser 5.44.0: https://github.com/fabiosantoscode/terser : BSD 2-clause "Simplified" License terser-webpack-plugin 5.3.14: https://github.com/webpack-contrib/terser-webpack-plugin : MIT License test-exclude 6.0.0: https://github.com/bcoe/test-exclude#readme : ISC License -@testing-library/dom 10.4.0: https://github.com/testing-library/dom-testing-library#readme : MIT License -@testing-library/jest-dom 6.6.3: https://github.com/testing-library/jest-dom#readme : MIT License +@testing-library/dom 10.4.1: https://github.com/testing-library/dom-testing-library#readme : MIT License +@testing-library/jest-dom 6.9.1: https://github.com/testing-library/jest-dom#readme : MIT License @testing-library/react 16.3.0: https://github.com/testing-library/react-testing-library#readme : MIT License throttle-debounce v3.0.1: https://github.com/niksy/throttle-debounce : MIT License tidwall/gjson v1.14.2: https://github.com/tidwall/gjson : MIT License @@ -1351,7 +1290,7 @@ tidwall/match v1.1.1: https://github.com/tidwall/match : MIT License tidwall/pretty v1.2.0 : MIT License tidwall/sjson v1.2.5: http://github.com/tidwall/sjson/ : MIT License TinyColor 1.6.0: https://github.com/bgrins/TinyColor : MIT License -tinyglobby 0.2.13: https://github.com/SuperchupuDev/tinyglobby#readme : MIT License +tinyglobby 0.2.15: https://github.com/SuperchupuDev/tinyglobby#readme : MIT License tiny-invariant 1.3.3: https://github.com/alexreardon/tiny-invariant#readme : MIT License tiny-lr 1.1.1: https://github.com/mklabs/tiny-lr : MIT License tiny-warning 0.0.3: https://github.com/alexreardon/tiny-warning#readme : MIT License @@ -1360,12 +1299,12 @@ tldts 6.1.86: https://github.com/remusao/tldts : MIT License tldts-core 6.1.86: https://github.com/remusao/tldts#readme : MIT License tmpl 1.0.5: https://www.npmjs.com/package/tmpl : BSD 3-clause "New" or "Revised" License to-camel-case 1.0.0: https://github.com/ianstormtaylor/to-camel-case : MIT License -to-fast-properties 2.0.0: https://github.com/sindresorhus/to-fast-properties : MIT License toggle-selection 1.0.6: https://github.com/sudodoki/toggle-selection#readme : MIT License to-no-case 1.0.2: https://github.com/ianstormtaylor/to-no-case : MIT License to-regex-range 5.0.1: https://github.com/jonschlinkert/to-regex-range : MIT License to-space-case 1.0.0: https://github.com/ianstormtaylor/to-space-case : MIT License tough-cookie 5.1.2: https://github.com/salesforce/tough-cookie : BSD 3-clause "New" or "Revised" License +to-valid-identifier 1.0.0: https://github.com/sindresorhus/to-valid-identifier#readme : MIT License tr46 5.1.1: https://github.com/Sebmaster/tr46.js#readme : MIT License ts-api-utils 2.1.0: https://github.com/JoshuaKGoldberg/ts-api-utils#readme : MIT License @tsconfig/node10 1.0.11: https://github.com/tsconfig/bases#readme : MIT License @@ -1375,7 +1314,7 @@ ts-api-utils 2.1.0: https://github.com/JoshuaKGoldberg/ts-api-utils#readme : MIT tsconfig-paths 4.2.0: https://github.com/jonaskello/tsconfig-paths : MIT License ts-easing 0.2.0: https://github.com/streamich/ts-easing#readme : The Unlicense ts-node 10.9.2: https://github.com/blakeembrey/ts-node : MIT License -@tybys/wasm-util 0.9.0: https://github.com/toyobayashi/wasm-util#readme : MIT License +@tybys/wasm-util 0.10.1: https://github.com/toyobayashi/wasm-util#readme : MIT License type-check 0.4.0: https://github.com/gkz/type-check : MIT License typed-array-buffer 1.0.3: https://github.com/ljharb/typed-array-buffer#readme : MIT License typed-array-byte-length 1.0.3: https://github.com/inspect-js/typed-array-byte-length#readme : MIT License @@ -1386,113 +1325,108 @@ type-fest 0.21.3: https://github.com/sindresorhus/type-fest#readme : (MIT Licens type-of 2.0.1 : MIT License @types/aria-query 5.0.4: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/aria-query : MIT License @types/babel__core 7.20.5: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/babel__core : MIT License -@types/babel__generator 7.6.8: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/babel__generator : MIT License +@types/babel__generator 7.27.0: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/babel__generator : MIT License @types/babel__template 7.4.4: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/babel__template : MIT License -@types/babel__traverse 7.20.6: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/babel__traverse : MIT License +@types/babel__traverse 7.28.0: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/babel__traverse : MIT License @types/cheerio 0.22.35: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/cheerio : MIT License -TypeScript 5.7.3: http://www.typescriptlang.org/ : Apache License 2.0 -TypeScript 5.8.3: http://www.typescriptlang.org/ : Apache License 2.0 -typescript-eslint 8.38.0: https://github.com/typescript-eslint/typescript-eslint#readme : MIT License -@typescript-eslint/eslint-plugin 8.38.0: https://github.com/typescript-eslint/typescript-eslint#readme : MIT License -@typescript-eslint/parser 8.38.0: https://github.com/typescript-eslint/typescript-eslint#readme : MIT License -@typescript-eslint/project-service 8.38.0: https://typescript-eslint.io : MIT License -@typescript-eslint/scope-manager 8.38.0: https://github.com/typescript-eslint/typescript-eslint#readme : MIT License -@typescript-eslint/tsconfig-utils 8.38.0: https://typescript-eslint.io : MIT License -@typescript-eslint/types 8.38.0: https://github.com/typescript-eslint/typescript-eslint#readme : MIT License -@typescript-eslint/typescript-estree 8.38.0: https://github.com/typescript-eslint/typescript-eslint#readme : MIT License -@typescript-eslint/type-utils 8.38.0: https://github.com/typescript-eslint/typescript-eslint#readme : MIT License -@typescript-eslint/utils 8.38.0: https://github.com/typescript-eslint/typescript-eslint#readme : MIT License -@typescript-eslint/visitor-keys 8.38.0: https://github.com/typescript-eslint/typescript-eslint#readme : MIT License +TypeScript 5.9.2: http://www.typescriptlang.org/ : Apache License 2.0 +TypeScript 5.9.3: http://www.typescriptlang.org/ : Apache License 2.0 +typescript-eslint 8.46.2: https://github.com/typescript-eslint/typescript-eslint#readme : MIT License +@typescript-eslint/eslint-plugin 8.46.2: https://github.com/typescript-eslint/typescript-eslint#readme : MIT License +@typescript-eslint/parser 8.46.2: https://github.com/typescript-eslint/typescript-eslint#readme : MIT License +@typescript-eslint/project-service 8.46.2: https://typescript-eslint.io : MIT License +@typescript-eslint/scope-manager 8.46.2: https://github.com/typescript-eslint/typescript-eslint#readme : MIT License +@typescript-eslint/tsconfig-utils 8.46.2: https://typescript-eslint.io : MIT License +@typescript-eslint/types 8.46.2: https://github.com/typescript-eslint/typescript-eslint#readme : MIT License +@typescript-eslint/typescript-estree 8.46.2: https://github.com/typescript-eslint/typescript-eslint#readme : MIT License +@typescript-eslint/type-utils 8.46.2: https://github.com/typescript-eslint/typescript-eslint#readme : MIT License +@typescript-eslint/utils 8.46.2: https://github.com/typescript-eslint/typescript-eslint#readme : MIT License +@typescript-eslint/visitor-keys 8.46.2: https://github.com/typescript-eslint/typescript-eslint#readme : MIT License @types/d3-color 3.1.3: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/d3-color : MIT License @types/d3-interpolate 3.0.4: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/d3-interpolate : MIT License @types/debug 4.1.12: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/debug : MIT License @types/enzyme 3.10.19: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/enzyme : MIT License @types/eslint 9.6.1: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/eslint : MIT License @types/eslint-scope 3.7.7: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/eslint-scope : MIT License -@types/estree 1.0.5: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/estree : MIT License @types/estree 1.0.8: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/estree : MIT License @types/istanbul-lib-coverage 2.0.6: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/istanbul-lib-coverage : MIT License @types/istanbul-lib-report 3.0.3: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/istanbul-lib-report : MIT License @types/istanbul-reports 3.0.4: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/istanbul-reports : MIT License @types/jest 30.0.0: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jest : MIT License -@types/jquery 3.5.32: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jquery : MIT License +@types/jquery 3.5.33: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jquery : MIT License @types/js-cookie 2.2.7: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/js-cookie : MIT License @types/jsdom 21.1.7: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jsdom : MIT License @types/json-schema 7.0.15: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/json-schema : MIT License -@types/lodash 4.17.15: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/lodash : MIT License @types/lodash 4.17.20: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/lodash : MIT License @types/mdast 4.0.4: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mdast : MIT License @types/ms 2.1.0: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ms : MIT License -@types/node 22.5.4: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node : MIT License -@types/node 24.1.0: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node : MIT License +@types/node 24.9.2: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node : MIT License @types/parse-json 4.0.2: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/parse-json : MIT License -@types/prop-types 15.7.12: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/prop-types : MIT License -@types/react 16.14.65: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react : MIT License -@types/react 18.3.23: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react : MIT License -@types/react 18.3.5: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react : MIT License +@types/prop-types 15.7.15: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/prop-types : MIT License +@types/rbush 4.0.0: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/rbush : MIT License +@types/react 16.14.67: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react : MIT License +@types/react 18.3.26: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react : MIT License +@types/react 19.2.2: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react : MIT License @types/react-dom 18.3.7: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-dom : MIT License @types/react-table 7.7.20: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-table : MIT License -@types/react-transition-group 4.4.11: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-transition-group : MIT License +@types/react-transition-group 4.4.12: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-transition-group : MIT License @types/scheduler 0.16.8: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/scheduler : MIT License -@types/sizzle 2.3.8: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sizzle : MIT License +@types/sizzle 2.3.10: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sizzle : MIT License @types/stack-utils 2.0.3: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/stack-utils : MIT License @types/string-hash 1.1.3: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/string-hash : MIT License -@types/systemjs 6.15.1: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/systemjs : MIT License +@types/systemjs 6.15.3: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/systemjs : MIT License @types/tough-cookie 4.0.5: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/tough-cookie : MIT License @types/trusted-types 2.0.7: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/trusted-types : MIT License @types/unist 3.0.3: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/unist : MIT License @types/use-sync-external-store 0.0.6: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/use-sync-external-store : MIT License -@types/yargs 17.0.33: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/yargs : MIT License +@types/yargs 17.0.34: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/yargs : MIT License @types/yargs-parser 21.0.3: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/yargs-parser : MIT License -UAParser.js 1.0.38: http://github.com/faisalman/ua-parser-js : MIT License +UAParser.js 1.0.41: http://faisalman.github.com/ua-parser-js : MIT License ugorji's go codec/v1.2.7: https://github.com/ugorji/go : MIT License unbox-primitive 1.1.0: https://github.com/ljharb/unbox-primitive#readme : MIT License -undici 7.11.0: https://github.com/mcollina/undici#readme : MIT License -undici-types 6.19.8: https://undici.nodejs.org : MIT License -undici-types 7.8.0: https://undici.nodejs.org : MIT License +undici 7.16.0: https://github.com/mcollina/undici#readme : MIT License +undici-types 7.16.0: https://undici.nodejs.org : MIT License @ungap/structured-clone 1.3.0: https://github.com/ungap/structured-clone#readme : ISC License -unique-filename 3.0.0: https://github.com/iarna/unique-filename : ISC License -unique-slug 4.0.0: https://github.com/iarna/unique-slug : ISC License -unist-util-is 6.0.0: https://github.com/wooorm/unist-util-is#readme : MIT License +unique-filename 4.0.0: https://github.com/iarna/unique-filename : ISC License +unique-slug 5.0.0: https://github.com/iarna/unique-slug : ISC License +unist-util-is 6.0.1: https://github.com/wooorm/unist-util-is#readme : MIT License unist-util-stringify-position 4.0.0: https://github.com/wooorm/unist-util-stringify-position#readme : MIT License unist-util-visit 5.0.0: https://github.com/wooorm/unist-util-visit : MIT License -unist-util-visit-parents 6.0.1: https://github.com/wooorm/unist-util-visit-parents#readme : MIT License +unist-util-visit-parents 6.0.2: https://github.com/wooorm/unist-util-visit-parents#readme : MIT License universalify 2.0.1: https://github.com/RyanZim/universalify#readme : MIT License Unknwon/bra 20200517-snapshot-1e3013ec : Apache License 2.0 Unknwon/com v1.0.1: https://github.com/Unknwon/com : Apache License 2.0 Unknwon-log 20200308-snapshot-929b1006 : Apache License 2.0 -unrs-resolver 1.11.0: https://github.com/unrs/unrs-resolver : MIT License -@unrs/resolver-binding-android-arm64 1.11.0: https://github.com/unrs/unrs-resolver#readme : MIT License -@unrs/resolver-binding-android-arm-eabi 1.11.0: https://github.com/unrs/unrs-resolver#readme : MIT License -@unrs/resolver-binding-darwin-arm64 1.11.0: https://github.com/unrs/unrs-resolver : MIT License -@unrs/resolver-binding-darwin-x64 1.11.0: https://github.com/unrs/unrs-resolver : MIT License -@unrs/resolver-binding-freebsd-x64 1.11.0: https://github.com/unrs/unrs-resolver : MIT License -@unrs/resolver-binding-linux-arm64-gnu 1.11.0: https://github.com/unrs/unrs-resolver : MIT License -@unrs/resolver-binding-linux-arm64-musl 1.11.0: https://github.com/unrs/unrs-resolver : MIT License -@unrs/resolver-binding-linux-arm-gnueabihf 1.11.0: https://github.com/unrs/unrs-resolver : MIT License -@unrs/resolver-binding-linux-arm-musleabihf 1.11.0: https://github.com/unrs/unrs-resolver : MIT License -@unrs/resolver-binding-linux-ppc64-gnu 1.11.0: https://github.com/unrs/unrs-resolver : MIT License -@unrs/resolver-binding-linux-riscv64-gnu 1.11.0: https://github.com/unrs/unrs-resolver : MIT License -@unrs/resolver-binding-linux-riscv64-musl 1.11.0: https://github.com/unrs/unrs-resolver#readme : MIT License -@unrs/resolver-binding-linux-s390x-gnu 1.11.0: https://github.com/unrs/unrs-resolver : MIT License -@unrs/resolver-binding-linux-x64-gnu 1.11.0: https://github.com/unrs/unrs-resolver : MIT License -@unrs/resolver-binding-linux-x64-musl 1.11.0: https://github.com/unrs/unrs-resolver : MIT License -@unrs/resolver-binding-wasm32-wasi 1.11.0: https://github.com/unrs/unrs-resolver : MIT License -@unrs/resolver-binding-win32-arm64-msvc 1.11.0: https://github.com/unrs/unrs-resolver : MIT License -@unrs/resolver-binding-win32-ia32-msvc 1.11.0: https://github.com/unrs/unrs-resolver : MIT License -@unrs/resolver-binding-win32-x64-msvc 1.11.0: https://github.com/unrs/unrs-resolver : MIT License +unrs-resolver 1.11.1: https://github.com/unrs/unrs-resolver : MIT License +@unrs/resolver-binding-android-arm64 1.11.1: https://github.com/unrs/unrs-resolver#readme : MIT License +@unrs/resolver-binding-android-arm-eabi 1.11.1: https://github.com/unrs/unrs-resolver#readme : MIT License +@unrs/resolver-binding-darwin-arm64 1.11.1: https://github.com/unrs/unrs-resolver : MIT License +@unrs/resolver-binding-darwin-x64 1.11.1: https://github.com/unrs/unrs-resolver : MIT License +@unrs/resolver-binding-freebsd-x64 1.11.1: https://github.com/unrs/unrs-resolver : MIT License +@unrs/resolver-binding-linux-arm64-gnu 1.11.1: https://github.com/unrs/unrs-resolver : MIT License +@unrs/resolver-binding-linux-arm64-musl 1.11.1: https://github.com/unrs/unrs-resolver : MIT License +@unrs/resolver-binding-linux-arm-gnueabihf 1.11.1: https://github.com/unrs/unrs-resolver : MIT License +@unrs/resolver-binding-linux-arm-musleabihf 1.11.1: https://github.com/unrs/unrs-resolver : MIT License +@unrs/resolver-binding-linux-ppc64-gnu 1.11.1: https://github.com/unrs/unrs-resolver : MIT License +@unrs/resolver-binding-linux-riscv64-gnu 1.11.1: https://github.com/unrs/unrs-resolver : MIT License +@unrs/resolver-binding-linux-riscv64-musl 1.11.1: https://github.com/unrs/unrs-resolver#readme : MIT License +@unrs/resolver-binding-linux-s390x-gnu 1.11.1: https://github.com/unrs/unrs-resolver : MIT License +@unrs/resolver-binding-linux-x64-gnu 1.11.1: https://github.com/unrs/unrs-resolver : MIT License +@unrs/resolver-binding-linux-x64-musl 1.11.1: https://github.com/unrs/unrs-resolver : MIT License +@unrs/resolver-binding-wasm32-wasi 1.11.1: https://github.com/unrs/unrs-resolver : MIT License +@unrs/resolver-binding-win32-arm64-msvc 1.11.1: https://github.com/unrs/unrs-resolver : MIT License +@unrs/resolver-binding-win32-ia32-msvc 1.11.1: https://github.com/unrs/unrs-resolver : MIT License +@unrs/resolver-binding-win32-x64-msvc 1.11.1: https://github.com/unrs/unrs-resolver : MIT License un-ts/synckit 0.11.11: https://github.com/un-ts/synckit : MIT License -un-ts/synckit 0.11.8: https://github.com/un-ts/synckit : MIT License -update-browserslist-db 1.1.0: https://github.com/browserslist/update-db#readme : MIT License +update-browserslist-db 1.1.4: https://github.com/browserslist/update-db#readme : MIT License uplot 1.6.32: https://github.com/leeoniya/uPlot#readme : MIT License -urfave-cli v1.22.16: https://github.com/urfave/cli : MIT License +urfave-cli v1.22.17: https://github.com/urfave/cli : MIT License uri-js 4.4.1: https://github.com/garycourt/uri-js : BSD 2-clause "Simplified" License -use-isomorphic-layout-effect 1.2.0: https://github.com/Andarist/use-isomorphic-layout-effect#readme : MIT License -use-memo-one 1.1.3: https://github.com/alexreardon/use-memo-one#readme : MIT License -use-sync-external-store 1.5.0: https://github.com/facebook/react#readme : MIT License +use-isomorphic-layout-effect 1.2.1: https://github.com/Andarist/use-isomorphic-layout-effect#readme : MIT License +use-sync-external-store 1.6.0: https://github.com/facebook/react#readme : MIT License util-deprecate 1.0.2: https://github.com/TooTallNate/util-deprecate : MIT License -uuid 11.0.5: https://github.com/uuidjs/uuid : MIT License -uwrap 0.1.1: https://github.com/leeoniya/uWrap#readme : MIT License +uuid 11.1.0: https://github.com/kelektiv/node-uuid : MIT License +uwrap 0.1.2: https://github.com/leeoniya/uWrap#readme : MIT License v8-compile-cache-lib 3.0.1: https://github.com/cspotcode/v8-compile-cache-lib#readme : MIT License v8-to-istanbul 9.3.0: https://github.com/bcoe/v8-to-istanbul#readme : ISC License value-equal 1.0.1: https://github.com/mjackson/value-equal#readme : MIT License @@ -1501,7 +1435,7 @@ w3c-xmlserializer 5.0.0: https://github.com/jsdom/w3c-xmlserializer#readme : MIT warning 4.0.3: https://github.com/r3dm/warning : MIT License watchman 2.0.2: https://github.com/facebook/watchman : Apache License 2.0 watchman 2.1.1: https://github.com/facebook/watchman : Apache License 2.0 -watchpack 2.4.2: https://github.com/webpack/watchpack : MIT License +watchpack 2.4.4: https://github.com/webpack/watchpack : MIT License @webassemblyjs/ast 1.14.1: https://github.com/xtuc/webassemblyjs#readme : MIT License @webassemblyjs/floating-point-hex-parser 1.13.2: https://github.com/xtuc/webassemblyjs#readme : MIT License @webassemblyjs/helper-api-error 1.13.2: https://github.com/xtuc/webassemblyjs#readme : MIT License @@ -1518,12 +1452,11 @@ watchpack 2.4.2: https://github.com/webpack/watchpack : MIT License @webassemblyjs/wasm-parser 1.14.1: https://github.com/xtuc/webassemblyjs#readme : MIT License @webassemblyjs/wast-printer 1.14.1: https://github.com/xtuc/webassemblyjs#readme : MIT License webidl-conversions 7.0.0: https://github.com/domenic/webidl-conversions : BSD 2-clause "Simplified" License -Webpack 5.100.0: https://webpack.js.org : MIT License webpack-cli 6.0.1: https://github.com/webpack/webpack-cli#readme : MIT License @webpack-cli/configtest 3.0.1: https://github.com/webpack/webpack-cli/tree/master/packages/configtest : MIT License @webpack-cli/info 3.0.1: https://github.com/webpack/webpack-cli/tree/master/packages/info : MIT License @webpack-cli/serve 3.0.1: https://github.com/webpack/webpack-cli/tree/master/packages/serve : MIT License -webpack-contrib/sass-loader 16.0.5: https://github.com/webpack-contrib/sass-loader : MIT License +webpack-contrib/sass-loader 16.0.6: https://github.com/webpack-contrib/sass-loader : MIT License webpack-livereload-plugin 3.0.2: https://github.com/statianzo/webpack-livereload-plugin#readme : ISC License webpack-merge 6.0.1: https://github.com/survivejs/webpack-merge : MIT License webpack-sources 3.3.3: https://github.com/webpack/webpack-sources#readme : MIT License @@ -1531,28 +1464,29 @@ webpack-virtual-modules 0.6.2: https://github.com/sysgears/webpack-virtual-modul webreflection/html-escaper 2.0.2: https://github.com/WebReflection/html-escaper : MIT License websocket-driver-node 0.7.4: https://github.com/faye/websocket-driver-node : Apache License 2.0 websocket-extensions-node 0.1.4: https://github.com/faye/websocket-extensions-node : Apache License 2.0 -web-vitals 4.2.3: https://github.com/GoogleChrome/web-vitals#readme : Apache License 2.0 -web-worker 1.3.0: https://github.com/calvinmetcalf/web-worker : Apache License 2.0 +web-vitals 4.2.4: https://github.com/GoogleChrome/web-vitals#readme : Apache License 2.0 +web-worker 1.5.0: https://github.com/calvinmetcalf/web-worker : Apache License 2.0 whatwg-encoding 3.1.1: https://github.com/jsdom/whatwg-encoding#readme : MIT License whatwg-mimetype 4.0.0: https://github.com/jsdom/whatwg-mimetype : MIT License whatwg-url 14.2.0: https://github.com/jsdom/whatwg-url : MIT License which 2.0.2: https://github.com/isaacs/node-which : ISC License -which 4.0.0: https://github.com/isaacs/node-which : ISC License +which 5.0.0: https://github.com/isaacs/node-which : ISC License which-boxed-primitive 1.1.1: https://github.com/ljharb/which-boxed-primitive#readme : MIT License which-builtin-type 1.2.1: https://github.com/es-shims/which-builtin-type#readme : MIT License which-collection 1.0.2: https://github.com/inspect-js/which-collection#readme : MIT License which-typed-array 1.1.19: https://github.com/ljharb/which-typed-array#readme : MIT License wk8/go-ordered-map v2.1.8: https://github.com/wk8/go-ordered-map : Apache License 2.0 -@wojtekmaj/date-utils 1.5.1: https://github.com/wojtekmaj/date-utils#readme : MIT License +@wojtekmaj/date-utils 2.0.2: https://github.com/wojtekmaj/date-utils#readme : MIT License wooorm/ccount 2.0.1: https://github.com/wooorm/ccount : MIT License word-wrap 1.2.5: https://github.com/jonschlinkert : MIT License wrap-ansi 8.1.0: https://github.com/chalk/wrap-ansi : MIT License wrap-ansi v7.0.0: https://github.com/chalk/wrap-ansi : MIT License +wrap-ansi-cjs : ISC License wrappy 1.0.2: https://github.com/npm/wrappy : ISC License xhit/go-str2duration v2.1.0: https://github.com/xhit/go-str2duration : BSD 3-clause "New" or "Revised" License xmlchars 2.2.0: https://github.com/lddubeau/xmlchars#readme : MIT License xml-name-validator 5.0.0: https://github.com/jsdom/xml-name-validator : Apache License 2.0 -xml-utils 1.10.1: https://github.com/DanielJDufour/xml-utils#readme : Creative Commons Zero v1.0 Universal +xml-utils 1.10.2: https://github.com/DanielJDufour/xml-utils#readme : Creative Commons Zero v1.0 Universal @xobotyi/scrollbar-width 1.9.5: https://github.com/xobotyi/scrollbar-width : MIT License xo/terminfo 20220910-snapshot-abceb7e1: https://github.com/xo/terminfo : MIT License @xtuc/ieee754 1.2.0: https://github.com/feross/ieee754#readme : BSD 3-clause "New" or "Revised" License @@ -1560,6 +1494,7 @@ xo/terminfo 20220910-snapshot-abceb7e1: https://github.com/xo/terminfo : MIT Lic y18n 5.0.8: https://github.com/yargs/y18n : ISC License yallist 3.1.1: https://github.com/isaacs/yallist#readme : ISC License yallist 4.0.0: https://github.com/isaacs/yallist#readme : ISC License +yallist 5.0.0: https://github.com/isaacs/yallist#readme : Blue Oak Model License 1.0.0 yaml 1.10.2: https://github.com/tj/js-yaml : ISC License yaml for Go v2.4.0: https://github.com/go-yaml/yaml : Apache License 2.0 yaml for Go v3.0.1: https://github.com/go-yaml/yaml : (MIT License AND Apache License 2.0) @@ -1568,17 +1503,19 @@ yargs 17.7.2: https://github.com/yargs/yargs : MIT License yargs-parser 21.1.1: https://github.com/yargs/yargs-parser : ISC License yn v3.1.1: https://github.com/sindresorhus/yn : MIT License yocto-queue 0.1.0: https://github.com/sindresorhus/yocto-queue#readme : MIT License -yuin/goldmark v1.4.13: https://pkg.go.dev/github.com/go-text/typesetting : MIT License +yuin/goldmark v1.4.13: https://github.com/yuin/goldmark : MIT License zeebo/assert v1.3.0: https://github.com/zeebo/assert : Creative Commons Zero v1.0 Universal -zeebo/errs v1.4.0: https://github.com/zeebo/errs : MIT License zeebo/xxh3 v1.0.2: https://github.com/zeebo/xxh3 : BSD 2-clause "Simplified" License +zod 4.1.12: https://github.com/vriad/zod#readme : MIT License +zod 4.3.6: https://github.com/vriad/zod#readme : MIT License +zod-validation-error 4.0.2: https://github.com/causaly/zod-validation-error#readme : MIT License zstddec 0.1.0: https://github.com/donmccurdy/zstddec#readme : (MIT License AND BSD 3-clause "New" or "Revised" License) zwitch 2.0.4: https://github.com/wooorm/zwitch#readme : MIT License -Licenses: +Licenses: Apache License 2.0 -(@ampproject/remapping 2.3.0, @eslint/config-array 0.21.0, @eslint/config-helpers 0.3.0, @eslint/core 0.12.0, @eslint/core 0.13.0, @eslint/core 0.14.0, @eslint/core 0.15.1, @eslint/css 0.9.0, @eslint/json 0.12.0, @eslint/object-schema 2.1.6, @eslint/plugin-kit 0.2.8, @eslint/plugin-kit 0.3.3, @grafana/data 12.0.2, @grafana/e2e-selectors 12.0.2, @grafana/e2e-selectors 12.1.0, @grafana/eslint-config 8.1.0, @grafana/faro-core 1.18.1, @grafana/faro-web-sdk 1.18.1, @grafana/runtime 12.0.2, @grafana/schema 12.0.2, @grafana/tsconfig 2.0.0, @grafana/ui 12.0.2, @hello-pangea/dnd 17.0.0, @humanfs/core 0.19.1, @humanfs/node 0.16.6, @humanwhocodes/module-importer 1.0.1, @humanwhocodes/momoa 3.3.8, @humanwhocodes/retry 0.3.1, @humanwhocodes/retry 0.4.3, @internationalized/date 3.8.0, @internationalized/message 3.1.7, @internationalized/number 3.6.1, @internationalized/string 3.2.6, @opentelemetry/api 1.9.0, @opentelemetry/api-logs 0.200.0, @opentelemetry/core 2.0.0, @opentelemetry/otlp-transformer 0.200.0, @opentelemetry/resources 2.0.0, @opentelemetry/sdk-logs 0.200.0, @opentelemetry/sdk-metrics 2.0.0, @opentelemetry/sdk-trace-base 2.0.0, @opentelemetry/semantic-conventions 1.33.0, @playwright/test 1.54.1, @react-aria/dialog 3.5.23, @react-aria/focus 3.20.1, @react-aria/focus 3.20.2, @react-aria/i18n 3.12.8, @react-aria/interactions 3.25.0, @react-aria/overlays 3.26.1, @react-aria/overlays 3.27.0, @react-aria/ssr 3.9.8, @react-aria/utils 3.28.1, @react-aria/utils 3.28.2, @react-aria/visually-hidden 3.8.22, @react-stately/flags 3.1.1, @react-stately/overlays 3.6.15, @react-stately/utils 3.10.6, @react-types/button 3.12.0, @react-types/dialog 3.5.17, @react-types/overlays 3.8.14, @react-types/shared 3.29.0, @swc/core 1.12.11, @swc/core-darwin-arm64 1.12.11, @swc/core-darwin-x64 1.12.11, @swc/core-linux-arm-gnueabihf 1.12.11, @swc/core-linux-arm64-gnu 1.12.11, @swc/core-linux-arm64-musl 1.12.11, @swc/core-linux-x64-gnu 1.12.11, @swc/core-linux-x64-musl 1.12.11, @swc/core-win32-arm64-msvc 1.12.11, @swc/core-win32-ia32-msvc 1.12.11, @swc/core-win32-x64-msvc 1.12.11, @swc/counter 0.1.3, @swc/helpers 0.5.13, @swc/helpers 0.5.17, @swc/types 0.1.23, @webassemblyjs/leb128 1.13.2, @xtuc/long 4.2.2, allegro/bigcache 20190220-snapshot-e24eb225, Apache Thrift 0.21.0, aria-query 5.3.0, bufbuild/protocompile v0.4.0, client_golang v1.22.0, cockroachdb/apd v3.2.1, containerd/console 1.0.3, coveo/exponential-backoff 3.1.1, detect-libc 1.0.3, doctrine v2.1.0, DOMPurify 3.2.5, envoyproxy/go-control-plane envoy/v1.32.4, envoyproxy/go-control-plane ratelimit/v0.1.0, envoyproxy/go-control-plane v0.13.4, eslint-visitor-keys 3.4.3, eslint-visitor-keys 4.2.1, fast-diff 1.3.0, FlatBuffers 25.2.10, github.com/apache/arrow-go v18.2.0, github.com/bufbuild/protovalidate-go v0.12.0, github.com/cncf/xds 20250121-snapshot-2f005788, github.com/google/cel-spec v0.23.1, github.com/grafana/otel-profiling-go v0.5.1, github.com/grafana/pyroscope-go godeltaprof/v0.1.8, go-jose v4.0.4, go-logr/logr v1.4.2, go-logr/stdr v1.2.2, go-openapi/analysis v0.23.0, go-openapi/errors v0.22.0, go-openapi/jsonpointer v0.21.1, go-openapi/loads v0.22.0, go-openapi/spec v0.21.0, go-openapi/validate v0.24.0, go.opentelemetry.io/proto otlp/v1.6.0, godebug v1.1.0, golang/glog v1.2.4, google-cloud-go compute/metadata/v0.6.0, google-cloud-go v0.118.0, google-gofuzz v1.0.0, google/cel-go v0.25.0, google/gnostic-models v0.6.9, googleapis/go-genproto 20250505-snapshot-f936aa4a, GoogleCloudPlatform/opentelemetry-operations-go detectors/gcp/v1.26.0, grpc-ecosystem/go-grpc-middleware providers/prometheus/v1.0.1, grpc-ecosystem/go-grpc-middleware v2.3.2, grpc-go v1.72.0, harmony-reflect v1.6.2, human-signals 2.1.0, jhump/protoreflect v1.15.1, jsonreference v0.21.0, k8s.io/kube-openapi 20250318-snapshot-c8a335a9, k8s.io/utils 20240711-snapshot-18e509b5, lerc 3.0.0, Long.js 5.2.3, magefile/mage v1.15.0, matttproud-golang_protobuf_extensions v1.0.1, minio/c2goasm 20190812-snapshot-36a3d3bb, modern-go/concurrent 20180305-snapshot-bacd9c7e, modern-go/reflect2 v1.0.2, mongodb/mongo-go-driver v1.14.0, mwitkow/go-conntrack 20190716-snapshot-2f068394, nodejs-walker 1.0.8, oklog/run v1.1.0, oklog/ulid v1.3.1, open-telemetry/opentelemetry-go exporters/otlp/otlptrace/otlptracegrpc/v1.35.0, open-telemetry/opentelemetry-go exporters/otlp/otlptrace/v1.35.0, open-telemetry/opentelemetry-go metric/v1.35.0, open-telemetry/opentelemetry-go sdk/metric/v1.34.0, open-telemetry/opentelemetry-go sdk/v1.35.0, open-telemetry/opentelemetry-go trace/v1.35.0, open-telemetry/opentelemetry-go v1.35.0, open-telemetry/opentelemetry-go-contrib detectors/gcp/v1.34.0, open-telemetry/opentelemetry-go-contrib instrumentation/google.golang.org/grpc/otelgrpc/v0.60.0, open-telemetry/opentelemetry-go-contrib instrumentation/net/http/httptrace/otelhttptrace/v0.60.0, open-telemetry/opentelemetry-go-contrib instrumentation/net/http/otelhttp/v0.60.0, open-telemetry/opentelemetry-go-contrib propagators/jaeger/v1.35.0, open-telemetry/opentelemetry-go-contrib samplers/jaegerremote/v0.29.0, open-telemetry/opentelemetry-go-instrumentation sdk/v1.1.0, playwright 1.54.1, prometheus-client_model v0.6.2, prometheus-common v0.63.0, prometheus-procfs v0.16.1, ReactiveX RxJS 7.8.1, sigs.k8s.io/randfill v1.0.0, spiffe/go-spiffe v2.5.0, strfmt v0.23.0, substrait-io/substrait-go v3.9.0, swag v0.23.1, TypeScript 5.7.3, TypeScript 5.8.3, Unknwon-log 20200308-snapshot-929b1006, Unknwon/bra 20200517-snapshot-1e3013ec, Unknwon/com v1.0.1, watchman 2.0.2, watchman 2.1.1, web-vitals 4.2.3, web-worker 1.3.0, websocket-driver-node 0.7.4, websocket-extensions-node 0.1.4, wk8/go-ordered-map v2.1.8, xml-name-validator 5.0.0, yaml for Go v2.4.0, yaml for Go v3.0.1) +(@eslint/config-array 0.21.1, @eslint/config-helpers 0.4.1, @eslint/core 0.12.0, @eslint/core 0.13.0, @eslint/core 0.14.0, @eslint/core 0.15.2, @eslint/core 0.16.0, @eslint/css 0.9.0, @eslint/json 0.12.0, @eslint/object-schema 2.1.7, @eslint/plugin-kit 0.2.8, @eslint/plugin-kit 0.3.5, @eslint/plugin-kit 0.4.0, @grafana/data 12.4.0, @grafana/e2e-selectors 12.4.0, @grafana/eslint-config 8.2.0, @grafana/faro-core 1.19.0, @grafana/faro-web-sdk 1.19.0, @grafana/i18n 12.4.0, @grafana/runtime 12.4.0, @grafana/schema 12.4.0, @grafana/tsconfig 2.0.1, @grafana/ui 12.4.0, @hello-pangea/dnd 18.0.1, @humanfs/core 0.19.1, @humanfs/node 0.16.7, @humanwhocodes/module-importer 1.0.1, @humanwhocodes/momoa 3.3.10, @humanwhocodes/retry 0.4.3, @internationalized/date 3.10.0, @internationalized/date 3.10.1, @internationalized/message 3.1.8, @internationalized/number 3.6.5, @internationalized/string 3.2.7, @openfeature/core 1.9.1, @openfeature/ofrep-core 2.0.0, @openfeature/ofrep-web-provider 0.3.5, @openfeature/react-sdk 1.2.1, @opentelemetry/api 1.9.0, @opentelemetry/api-logs 0.202.0, @opentelemetry/core 2.0.1, @opentelemetry/otlp-transformer 0.202.0, @opentelemetry/resources 2.0.1, @opentelemetry/sdk-logs 0.202.0, @opentelemetry/sdk-metrics 2.0.1, @opentelemetry/sdk-trace-base 2.0.1, @opentelemetry/semantic-conventions 1.37.0, @playwright/test 1.56.1, @react-aria/dialog 3.5.31, @react-aria/focus 3.21.2, @react-aria/focus 3.21.3, @react-aria/i18n 3.12.13, @react-aria/i18n 3.12.14, @react-aria/interactions 3.25.6, @react-aria/interactions 3.26.0, @react-aria/overlays 3.30.0, @react-aria/overlays 3.31.0, @react-aria/ssr 3.9.10, @react-aria/utils 3.31.0, @react-aria/utils 3.32.0, @react-aria/visually-hidden 3.8.28, @react-aria/visually-hidden 3.8.29, @react-stately/flags 3.1.2, @react-stately/overlays 3.6.20, @react-stately/overlays 3.6.21, @react-stately/utils 3.10.8, @react-stately/utils 3.11.0, @react-types/button 3.14.1, @react-types/dialog 3.5.22, @react-types/overlays 3.9.2, @react-types/shared 3.32.1, @swc/core 1.14.0, @swc/core-darwin-arm64 1.14.0, @swc/core-darwin-x64 1.14.0, @swc/core-linux-arm-gnueabihf 1.14.0, @swc/core-linux-arm64-gnu 1.14.0, @swc/core-linux-arm64-musl 1.14.0, @swc/core-linux-x64-gnu 1.14.0, @swc/core-linux-x64-musl 1.14.0, @swc/core-win32-arm64-msvc 1.14.0, @swc/core-win32-ia32-msvc 1.14.0, @swc/core-win32-x64-msvc 1.14.0, @swc/counter 0.1.3, @swc/helpers 0.5.17, @swc/types 0.1.25, @webassemblyjs/leb128 1.13.2, @xtuc/long 4.2.2, allegro/bigcache 20190220-snapshot-e24eb225, Apache Thrift 0.22.0, aria-query 5.3.0, aria-query 5.3.2, baseline-browser-mapping 2.8.20, bufbuild/protocompile v0.14.1, client_golang v1.23.2, cockroachdb/apd v3.2.1, containerd/console v1.0.5, coveo/exponential-backoff 3.1.3, detect-libc 1.0.3, doctrine v2.1.0, DOMPurify 3.3.0, envoyproxy/go-control-plane 20251024-snapshot-75eaa193, envoyproxy/go-control-plane envoy/v1.35.0, envoyproxy/go-control-plane ratelimit/v0.1.0, envoyproxy/protoc-gen-validate 1.2.1, eslint-visitor-keys 3.4.3, eslint-visitor-keys 4.2.1, fast-diff 1.3.0, FlatBuffers 25.12.19, github.com/apache/arrow-go v18.5.1-rc0, github.com/bufbuild/protovalidate-go v0.12.0, github.com/cncf/xds 20251022-snapshot-0feb6915, github.com/google/cel-spec v0.24.0, github.com/grafana/otel-profiling-go v0.5.1, github.com/grafana/pyroscope-go godeltaprof/v0.1.9, go-jose v4.1.3, go-logr/logr v1.4.3, go-logr/stdr v1.2.2, go-openapi/analysis v0.24.1, go-openapi/errors v0.22.4, go-openapi/jsonpointer v0.22.4, go-openapi/loads v0.23.2, go-openapi/spec v0.22.3, go-openapi/validate v0.25.1, go.opentelemetry.io/proto otlp/v1.9.0, go.yaml.in/yaml/v2 v2.4.3, godebug v1.1.0, gogo/googleapis v1.4.1, golang/glog v1.2.5, google-cloud-go compute/metadata/v0.9.0, google-cloud-go v0.121.0, google-gofuzz v1.0.0, google/cel-go v0.25.0, google/gnostic-models v0.7.0, googleapis/go-genproto 20251202-snapshot-ff82c1b0, GoogleCloudPlatform/opentelemetry-operations-go detectors/gcp/v1.30.0, grafana/grafana-plugin-sdk-go v0.251.0, grpc-ecosystem/go-grpc-middleware providers/prometheus/v1.1.0, grpc-ecosystem/go-grpc-middleware v2.3.3, grpc-go v1.78.0-dev, harmony-reflect v1.6.2, human-signals 2.1.0, jhump/protoreflect v1.17.0, jsonreference v0.21.4, k8s.io/kube-openapi 20260127-snapshot-a19766b6, k8s.io/utils 20240711-snapshot-18e509b5, lerc 3.0.0, Long.js 5.3.2, magefile/mage v1.15.0, matttproud-golang_protobuf_extensions v1.0.1, minio/c2goasm 20190812-snapshot-36a3d3bb, modern-go/concurrent 20180305-snapshot-bacd9c7e, modern-go/reflect2 v1.0.2, mongodb/mongo-go-driver v1.17.6, mwitkow/go-conntrack 20190716-snapshot-2f068394, nodejs-walker 1.0.8, oklog/run v1.1.0, oklog/ulid v1.3.1, open-telemetry/opentelemetry-go exporters/otlp/otlptrace/otlptracegrpc/v1.39.0, open-telemetry/opentelemetry-go exporters/otlp/otlptrace/v1.39.0, open-telemetry/opentelemetry-go metric/v1.40.0, open-telemetry/opentelemetry-go sdk/metric/v1.40.0, open-telemetry/opentelemetry-go sdk/v1.40.0, open-telemetry/opentelemetry-go trace/v1.40.0, open-telemetry/opentelemetry-go v1.40.0, open-telemetry/opentelemetry-go-contrib detectors/gcp/v1.38.0, open-telemetry/opentelemetry-go-contrib instrumentation/google.golang.org/grpc/otelgrpc/v0.64.0, open-telemetry/opentelemetry-go-contrib instrumentation/net/http/httptrace/otelhttptrace/v0.64.0, open-telemetry/opentelemetry-go-contrib instrumentation/net/http/otelhttp/v0.64.0, open-telemetry/opentelemetry-go-contrib propagators/jaeger/v1.39.0, open-telemetry/opentelemetry-go-contrib samplers/jaegerremote/v0.33.0, open-telemetry/opentelemetry-go-instrumentation sdk/v1.2.1, playwright 1.56.1, pmezard-go-difflib 20190219-snapshot-5d4384ee, prometheus-client_model v0.6.2, prometheus-common v0.67.5, prometheus-procfs v0.16.1, ReactiveX RxJS 7.8.2, sigs.k8s.io/randfill v1.0.0, spiffe/go-spiffe v2.6.0, strfmt v0.25.0, substrait-io/substrait v0.78.1, substrait-io/substrait-go v7.2.2, swag conv/v0.25.4, swag fileutils/v0.25.1, swag jsonname/v0.25.4, swag jsonutils/v0.25.4, swag loading/v0.25.4, swag mangling/v0.25.1, swag stringutils/v0.25.4, swag typeutils/v0.25.4, swag v0.23.1, swag yamlutils/v0.25.4, TypeScript 5.9.2, TypeScript 5.9.3, Unknwon-log 20200308-snapshot-929b1006, Unknwon/bra 20200517-snapshot-1e3013ec, Unknwon/com v1.0.1, watchman 2.0.2, watchman 2.1.1, web-vitals 4.2.4, web-worker 1.5.0, websocket-driver-node 0.7.4, websocket-extensions-node 0.1.4, wk8/go-ordered-map v2.1.8, xml-name-validator 5.0.0, yaml for Go v2.4.0, yaml for Go v3.0.1) Apache License Version 2.0, January 2004 @@ -1765,11 +1702,11 @@ third-party archives. --- BSD 2-clause "Simplified" License -(@mapbox/unitbezier 0.0.0) +(blackfriday v2.1.0-pre.1, cheerio-select 2.1.0, css-what 6.2.2, CSSselect 5.2.2, doctrine v2.1.0, domelementtype 2.3.0, DomHandler 5.0.3, domutils 3.2.2, eslint-scope 8.4.0, eslint-scope v5.1.1, espree 10.4.0, Esprima 4.0.1, esrecurse v4.3.0, estraverse 5.3.0, estraverse v4.3.0, esutils 2.0.3, glob-to-regexp 0.4.1, go-check-check 20201130-snapshot-10cb9826, gopherjs 20181203-snapshot-d547d1d9, http-cache-semantics 4.2.0, node-entities 4.5.0, node-entities 6.0.1, nth-check 2.1.1, OpenLayers 10.7.0, terser 5.44.0, uri-js 4.4.1, webidl-conversions 7.0.0, zeebo/xxh3 v1.0.2) BSD Two Clause License ====================== -Copyright (C) 2008 Apple Inc. All Rights Reserved. +Copyright Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -1794,33 +1731,37 @@ DAMAGE. --- -BSD 2-clause "Simplified" License -(blackfriday v2.1.0, cheerio-select 2.1.0, css-what 6.2.2, CSSselect 5.2.2, doctrine v2.1.0, domelementtype 2.3.0, DomHandler 5.0.3, domutils 3.2.2, eslint-scope 8.4.0, eslint-scope v5.1.1, espree 10.4.0, Esprima 4.0.1, esrecurse v4.3.0, estraverse 5.3.0, estraverse v4.3.0, esutils 2.0.3, glob-to-regexp 0.4.1, go-check-check 20201130-snapshot-10cb9826, gopherjs 20181203-snapshot-d547d1d9, http-cache-semantics 4.1.1, mapbox-to-css-font 2.4.5, node-entities 4.5.0, node-entities 6.0.1, nth-check 2.1.1, ol-mapbox-style 10.7.0, OpenLayers 7.4.0, OpenLayers 7.5.2, terser 5.39.0, uri-js 4.4.1, webidl-conversions 7.0.0, zeebo/xxh3 v1.0.2) +BSD 3-clause "New" or "Revised" License +(ANTLR 4 4.13.2) -BSD Two Clause License -====================== -Copyright +Copyright (c) 2012-2022 The ANTLR Project. +All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - 1. Redistributions of source code must retain the above copyright notice, this + * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright notice, + * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED -WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT -SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT -OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. + * Neither the name of the nor the names of its contributors may + be used to endorse or promote products derived from this software without + specific prior written permission. + + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS +OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN +IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --- @@ -1829,7 +1770,7 @@ BSD 3-clause "New" or "Revised" License Copyright (c) 2009 The Go Authors. All rights reserved. - + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are @@ -1926,50 +1867,6 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE --- -BSD 3-clause "New" or "Revised" License -(pmezard-go-difflib 1.0.0) - -Source: https://github.com/pmezard/go-difflib - -Files: * -Copyright: 2013 Patrick Mézard -License: BSD-3-clause - -Files: debian/* -Copyright: 2016 Dmitry Smirnov -License: BSD-3-clause - -License: BSD-3-clause - -Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - . - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - . - Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - . - The names of its contributors may not be used to endorse or promote - products derived from this software without specific prior written - permission. - . - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED - TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE - ---- - BSD 3-clause "New" or "Revised" License (github.com/rogpeppe/fastuuid v1.2.0) @@ -2002,50 +1899,6 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE --- -BSD 3-clause "New" or "Revised" License -(ieee754 v1.2.1) - -Upstream-Contact: https://github.com/feross/ieee754/issues -Source: https://github.com/feross/ieee754#readme - -Files: * -Copyright: 2008 Fair Oaks Labs, Inc -License: BSD-3-Clause - -Files: debian/* -Copyright: 2017 Siddhesh Rane - 2018 Bastien Roucariès - 2020 Xavier Guimard -License: BSD-3-Clause - -License: BSD-3-Clause - -Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - . - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE HOLDERS OR - CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE - ---- - BSD 3-clause "New" or "Revised" License (hughsk/flat 5.0.2) @@ -2242,7 +2095,40 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE --- BSD 3-clause "New" or "Revised" License -(@sinonjs/commons 3.0.1, @sinonjs/fake-timers 13.0.5, ANTLR 4 4.13.2, babel-plugin-istanbul 7.0.0, bigfft 20230129-snapshot-24d4a6f8, d3-ease 3.0.1, esquery 1.6.0, exp 20250430-snapshot-ce4c2cf3, gajus/eslint-plugin-jsdoc 51.4.1, github.com/antlr4-go/antlr v4.13.1, github.com/go-json-experiment/json 20250211-snapshot-1ae217ad, github.com/munnerz/goautoneg 20191010-snapshot-a7dc8b61, github.com/planetscale/vtprotobuf 20240319-snapshot-0393e58b, gitlab.com/cznic/gc 20240107-snapshot-57347160, gitlab.com/cznic/libc v1.41.0, gitlab.com/cznic/mathutil v1.6.0, gitlab.com/cznic/memory v1.7.2, gitlab.com/cznic/sqlite v1.29.6, gitlab.com/cznic/strutil v1.2.0, gitlab.com/cznic/token v1.1.0, Golang Protobuf v1.36.6, Golang Protobuf v1.5.4, golang-snappy-go-dev v1.0.0, golang.org/x/crypto v0.38.0, golang.org/x/mod v0.24.0, golang.org/x/net v0.40.0, golang.org/x/oauth2 v0.29.0, golang.org/x/sys v0.33.0, golang.org/x/term v0.32.0, golang.org/x/tools v0.33.0, golang.org/x/xerrors 20240902-snapshot-7835f813, golang/sync v0.14.0, golang/telemetry 20240517-snapshot-bda55230, golang/text v0.25.0, Gonum numerical packages v0.15.1, google/go-cmp v0.7.0, Googleuuid v1.6.0, goproxy v1.7.2, gorilla/mux v1.8.1, grpc-gateway v2.26.3, hoist-non-react-statics v3.3.2, hyphenate-style-name 1.1.0, intl-messageformat 10.5.14, istanbul-lib-coverage 3.2.2, istanbul-lib-instrument 6.0.3, istanbul-lib-report 3.0.1, istanbul-lib-source-maps 5.0.6, istanbul-reports 3.1.7, jsdiff 4.0.2, klauspost-compress v1.18.0, moo 0.5.2, pbf 3.2.1, pierrec-lz4 v4.1.22, ProtoBuf.js 7.4.0, qs - QS Querystring 6.13.0, react-transition-group 4.4.5, rogpeppe/go-internal v1.13.1, rst-selector-parser 2.2.3, serialize-javascript 6.0.2, source-map-js 1.2.1, sprintf.js 1.1.3, tough-cookie 5.1.2, xhit/go-str2duration v2.1.0, zstddec 0.1.0) +(golang.org/x/tools v0.1.1) + +Copyright (c) 2009 The Go Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE + +--- + +BSD 3-clause "New" or "Revised" License +(@sinonjs/commons 3.0.1, @sinonjs/fake-timers 13.0.5, babel-plugin-istanbul 7.0.1, bigfft 20230129-snapshot-24d4a6f8, d3-ease 3.0.1, esquery 1.6.0, exp 20250929-snapshot-27f1f14c, fast-uri 3.1.0, gajus/eslint-plugin-jsdoc 61.1.10, github.com/antlr4-go/antlr v4.13.1, github.com/bahlo/generic-list-go 0.2.0, github.com/go-json-experiment/json 20250211-snapshot-1ae217ad, github.com/munnerz/goautoneg 20191010-snapshot-a7dc8b61, github.com/planetscale/vtprotobuf 20240319-snapshot-0393e58b, gitlab.com/cznic/gc 20240107-snapshot-57347160, gitlab.com/cznic/libc v1.41.0, gitlab.com/cznic/mathutil v1.6.0, gitlab.com/cznic/memory v1.7.2, gitlab.com/cznic/sqlite v1.29.6, gitlab.com/cznic/strutil v1.2.0, gitlab.com/cznic/token v1.1.0, Golang Protobuf 1.36.11, Golang Protobuf v1.5.4, golang-snappy-go-dev v1.0.0, golang.org/x/crypto v0.47.0, golang.org/x/mod v0.32.0, golang.org/x/net v0.49.0, golang.org/x/oauth2 v0.35.0, golang.org/x/sys v0.40.0, golang.org/x/term v0.39.0, golang.org/x/tools v0.41.0, golang.org/x/xerrors 20240902-snapshot-7835f813, golang/sync v0.19.0, golang/telemetry 20260109-snapshot-bd525da8, golang/text v0.33.0, Gonum numerical packages v0.16.0, google/go-cmp v0.7.0, Googleuuid v1.6.0, goproxy v1.8.0, gorilla/mux v1.8.1, grpc-gateway v2.27.3, hoist-non-react-statics v3.3.2, hyphenate-style-name 1.1.0, intl-messageformat 10.7.18, istanbul-lib-coverage 3.2.2, istanbul-lib-instrument 6.0.3, istanbul-lib-report 3.0.1, istanbul-lib-source-maps 5.0.6, istanbul-reports 3.2.0, klauspost-compress v1.18.2, moo 0.5.2, pbf 4.0.1, pierrec-lz4 v4.1.23, ProtoBuf.js 7.5.4, react-transition-group 4.4.5, rogpeppe/go-internal v1.14.1, rst-selector-parser 2.2.3, serialize-javascript 6.0.2, source-map-js 1.2.1, tough-cookie 5.1.2, xhit/go-str2duration v2.1.0, zstddec 0.1.0) Copyright (c) , All rights reserved. @@ -2344,7 +2230,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE --- BSD Zero Clause License -(Microsofttslib 2.7.0, Microsofttslib 2.8.1) +(Microsofttslib 2.8.1) BSD Zero Clause License ======================= @@ -2365,7 +2251,7 @@ THIS SOFTWARE. --- Blue Oak Model License 1.0.0 -(isaacs/jackspeak 3.4.3, isaacs/jackspeak 4.1.1, package-json-from-dist 1.0.0, path-scurry 1.11.1, path-scurry 2.0.0) +(isaacs/jackspeak 3.4.3, isaacs/jackspeak 4.1.1, node-glob 11.1.0, package-json-from-dist 1.0.1, path-scurry 1.11.1, path-scurry 2.0.0, yallist 5.0.0) Blue Oak Model License ====================== @@ -2564,7 +2450,7 @@ as stated below: d. to Distribute and Publicly Perform Adaptations. - e. + e. For the avoidance of doubt: @@ -2761,7 +2647,7 @@ POSSIBILITY OF SUCH DAMAGES. --- Creative Commons Attribution 4.0 -(caniuse-lite 1.0.30001660, caniuse-lite 1.0.30001668) +(caniuse-lite 1.0.30001751) Creative Commons Attribution 4.0 ================================ @@ -3093,7 +2979,7 @@ Creative Commons may be contacted at creativecommons.org. --- Creative Commons Zero v1.0 Universal -(mdn-data 2.0.14, mdn-data 2.21.0, railroad-diagrams 1.0.0, spdx-license-ids 3.0.21, string-hash 1.1.3, type-fest 0.21.3, xml-utils 1.10.1, zeebo/assert v1.3.0) +(mdn-data 2.0.14, mdn-data 2.23.0, railroad-diagrams 1.0.0, spdx-license-ids 3.0.22, string-hash 1.1.3, type-fest 0.21.3, xml-utils 1.10.2, zeebo/assert v1.3.0) Creative Commons CC0 1.0 Universal ================================== @@ -3245,7 +3131,7 @@ case Affirmer hereby affirms that he or she will not --- Expat License -(atomicgo.dev/schedule 0.1.0, github.com/atomicgo/cursor 0.2.0) +(atomicgo.dev/schedule 0.1.0, github.com/atomicgo/cursor 0.2.0, github.com/olekukonko/errors v1.1.0) Expat License ============= @@ -3292,6 +3178,60 @@ THIS SOFTWARE --- +ISC License +(isaacs/once 1.4.0) + +License: ISC + The ISC License + . + +Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + . + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE + +--- + +ISC License +(webpack-livereload-plugin 3.0.2) + +ISC License (ISC) +Copyright (c) 2015, Jason Staten + +Permission to use, copy, modify, and/or distribute this software for +any purpose with or without fee is hereby granted, provided that the +above copyright notice and this permission notice appear in all +copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL +WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE +AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL +DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR +PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THIS SOFTWARE + +--- + +ISC License +(make-error 1.3.6) + +Copyright 2014 Julien Fontanet + +Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE + +--- + ISC License (@istanbuljs/load-nyc-config 1.1.0) @@ -3314,6 +3254,60 @@ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE --- +ISC License +(node-lru-cache 5.1.1) + +Upstream-Contact: https://github.com/isaacs/node-lru-cache/issues +Source: https://github.com/isaacs/node-lru-cache + +Files: * +Copyright: 2009, 2010, 2011 Isaac Z. Schlueter and Contributors +License: ISC + +Files: debian/* +Copyright: 2012, Jérémy Lal +License: ISC + +License: ISC + +Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + . + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE + +--- + +ISC License +(get-caller-file 2.0.5) + +ISC License (ISC) +Copyright 2018 Stefan Penner + +Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE + +--- + +ISC License +(icss-utils 5.1.0) + +ISC License (ISC) +Copyright 2018 Glen Maddern + +Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE + +--- + ISC License (d3-fetch 3.0.1) @@ -3355,28 +3349,88 @@ PERFORMANCE OF THIS SOFTWARE --- ISC License -(inflight 1.0.6) +(postcss-modules-values 4.0.0) -The ISC License +ISC License (ISC) -Copyright (c) Isaac Z. Schlueter +Copyright (c) 2015, Glen Maddern -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. +Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE + +--- + +ISC License +(wrappy 1.0.2) + +Upstream-Contact: https://github.com/npm/wrappy/issues +Source: https://github.com/npm/wrappy + +Files: * +Copyright: 2015 Isaac Z. Schlueter (http://blog.izs.me/) +License: ISC + +Files: debian/* +Copyright: 2015 Thorsten Alteholz +License: ISC + +License: ISC + +Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + . + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE + +--- + +ISC License +(d3-axis 3.0.0, d3-brush 3.0.0, d3-chord 3.0.1, d3-dispatch 3.0.1, d3-drag 3.0.0, d3-force 3.0.0, d3-format 3.1.0, d3-interpolate 3.0.1, d3-polygon 3.0.1, d3-quadtree 3.0.1, d3-random 3.0.1, d3-scale 4.0.2, d3-selection 3.0.0, d3-time-format 4.1.0, d3-timer 3.0.1, d3-transition 3.0.1, d3-zoom 3.0.0) + +Copyright 2010-2021 Mike Bostock + +Permission to use, copy, modify, and/or distribute this software for any purpose +with or without fee is hereby granted, provided that the above copyright notice +and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH +REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, +INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS +OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF +THIS SOFTWARE + +--- + +ISC License +(yaml 1.10.2) + +Copyright 2018 Eemeli Aro + +Permission to use, copy, modify, and/or distribute this software for any purpose +with or without fee is hereby granted, provided that the above copyright notice +and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH +REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, +INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS +OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF +THIS SOFTWARE --- ISC License -(chownr 2.0.0, fs-minipass v2.1.0, fs.realpath 1.0.0, isexe 2.0.0, minimatch 3.1.2, minipass-flush 1.0.5, minipass-pipeline 1.2.4, minipass-sized 1.0.3, which 2.0.2, yallist 3.1.1, yallist 4.0.0) +(fs.realpath 1.0.0, isexe 2.0.0, minimatch 3.1.2, minipass-flush 1.0.5, minipass-pipeline 1.2.4, minipass-sized 1.0.3, which 2.0.2, yallist 3.1.1, yallist 4.0.0) The ISC License @@ -3416,7 +3470,7 @@ THIS SOFTWARE --- ISC License -(@isaacs/cliui 8.0.2, @npmcli/agent 2.2.2, @npmcli/fs 3.1.1, @ungap/structured-clone 1.3.0, abbrev 2.0.0, anymatch 3.1.3, boolbase 1.0.0, cacache 18.0.4, cliui 8.0.1, d3-array 3.2.4, d3-color 3.1.0, d3-contour 4.0.2, d3-delaunay 6.0.4, d3-geo 3.1.1, d3-hierarchy 3.1.2, d3-path 3.1.0, d3-scale-chromatic 3.1.0, d3-shape 3.2.0, d3-time 3.1.0, D3.js 7.9.0, delaunator 5.0.1, earcut 2.2.4, electron-to-chromium 1.5.20, electron-to-chromium 1.5.36, fastq 1.19.1, flatted 3.3.3, foreground-child 3.3.0, foreground-child 3.3.1, fs-minipass 3.0.3, github-slugger 2.0.0, iarna/write-file-atomic 5.0.1, isexe 3.1.1, make-fetch-happen 13.0.1, mapbox-gl-style-spec 13.28.0, minimatch 10.0.3, minimatch 9.0.5, minipass 3.3.6, minipass 5.0.0, minipass 7.1.2, minipass-collect 2.0.1, node-glob 10.4.5, node-glob 11.0.3, node-glob 7.2.3, node-graceful-fs 4.2.11, node-lru-cache 10.4.3, node-lru-cache 11.0.1, node-semver 6.3.1, node-semver 7.6.3, node-semver 7.7.1, node-semver 7.7.2, nopt 7.2.1, picocolors 1.1.0, picocolors 1.1.1, postcss-modules-extract-imports 3.1.0, postcss-modules-scope 3.2.0, proc-log 4.2.0, signal-exit 4.1.0, ssri 10.0.6, tar 6.2.1, unique-filename 3.0.0, unique-slug 4.0.0, v8-to-istanbul 9.3.0, which 4.0.0, yargs-parser 21.1.1) +(@isaacs/cliui 8.0.2, @isaacs/fs-minipass 4.0.1, @npmcli/agent 3.0.0, @npmcli/fs 4.0.0, @ungap/structured-clone 1.3.0, abbrev 3.0.1, anymatch 3.1.3, boolbase 1.0.0, cacache 19.0.1, chownr 3.0.0, cliui 8.0.1, d3-array 3.2.4, d3-color 3.1.0, d3-contour 4.0.2, d3-delaunay 6.0.4, d3-geo 3.1.1, d3-hierarchy 3.1.2, d3-path 3.1.0, d3-scale-chromatic 3.1.0, d3-shape 3.2.0, d3-time 3.1.0, D3.js 7.9.0, delaunator 5.0.1, earcut 3.0.2, electron-to-chromium 1.5.243, fastq 1.19.1, flatted 3.3.3, foreground-child 3.3.1, fs-minipass 3.0.3, github-slugger 2.0.0, github.com/coder/websocket v1.8.14, iarna/write-file-atomic 5.0.1, isexe 3.1.1, make-fetch-happen 14.0.3, minimatch 10.1.1, minimatch 9.0.5, minipass 3.3.6, minipass 7.1.2, minipass-collect 2.0.1, node-glob 10.4.5, node-glob 7.2.3, node-graceful-fs 4.2.11, node-lru-cache 10.4.3, node-lru-cache 11.2.2, node-semver 6.3.1, node-semver 7.7.3, picocolors 1.1.1, postcss-modules-extract-imports 3.1.0, postcss-modules-scope 3.2.1, proc-log 5.0.0, quickselect 3.0.0, ssri 12.0.0, string-width-cjs, strip-ansi-cjs, tapjs/signal-exit 4.1.0, unique-filename 4.0.0, unique-slug 5.0.0, v8-to-istanbul 9.3.0, which 5.0.0, wrap-ansi-cjs, yargs-parser 21.1.1) ISC License (ISCL) ================== @@ -3458,9 +3512,11 @@ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE --- ISC License -(point-geometry 0.1.0) +(glob-parent 6.0.2) -Copyright (c) 2015, Mapbox <> +The ISC License + +Copyright (c) 2015, 2019 Elan Shanker, 2021 Blaine Bublitz , Eric Schoffstall and other contributors Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above @@ -3471,13 +3527,13 @@ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE --- ISC License -(signal-exit 3.0.7) +(tapjs/signal-exit 3.0.7) The ISC License @@ -3499,11 +3555,11 @@ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE --- ISC License -(go-spew v1.1.1) +(glob-parent 5.1.2) -ISC License +The ISC License -Copyright (c) 2012-2016 Dave Collins +Copyright (c) 2015, 2019 Elan Shanker Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above @@ -3514,206 +3570,15 @@ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE - ---- - -ISC License -(isaacs/once 1.4.0) - -License: ISC - The ISC License - . - -Permission to use, copy, modify, and/or distribute this software for any - purpose with or without fee is hereby granted, provided that the above - copyright notice and this permission notice appear in all copies. - . - THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES - WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR - ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN - ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR - IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE - ---- - -ISC License -(webpack-livereload-plugin 3.0.2) - -ISC License (ISC) -Copyright (c) 2015, Jason Staten - -Permission to use, copy, modify, and/or distribute this software for -any purpose with or without fee is hereby granted, provided that the -above copyright notice and this permission notice appear in all -copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL -WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE -AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL -DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR -PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE - ---- - -ISC License -(make-error 1.3.6) - -Copyright 2014 Julien Fontanet - -Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE - ---- - -ISC License -(node-lru-cache 5.1.1) - -Upstream-Contact: https://github.com/isaacs/node-lru-cache/issues -Source: https://github.com/isaacs/node-lru-cache - -Files: * -Copyright: 2009, 2010, 2011 Isaac Z. Schlueter and Contributors -License: ISC - -Files: debian/* -Copyright: 2012, Jérémy Lal -License: ISC - -License: ISC - -Permission to use, copy, modify, and/or distribute this software for any - purpose with or without fee is hereby granted, provided that the above - copyright notice and this permission notice appear in all copies. - . - THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES - WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR - ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN - ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR - IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE - ---- - -ISC License -(get-caller-file 2.0.5) - -ISC License (ISC) -Copyright 2018 Stefan Penner - -Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE - ---- - -ISC License -(icss-utils 5.1.0) - -ISC License (ISC) -Copyright 2018 Glen Maddern - -Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE - ---- - -ISC License -(postcss-modules-values 4.0.0) - -ISC License (ISC) - -Copyright (c) 2015, Glen Maddern - -Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE - ---- - -ISC License -(wrappy 1.0.2) - -Upstream-Contact: https://github.com/npm/wrappy/issues -Source: https://github.com/npm/wrappy - -Files: * -Copyright: 2015 Isaac Z. Schlueter (http://blog.izs.me/) -License: ISC - -Files: debian/* -Copyright: 2015 Thorsten Alteholz -License: ISC - -License: ISC - -Permission to use, copy, modify, and/or distribute this software for any - purpose with or without fee is hereby granted, provided that the above - copyright notice and this permission notice appear in all copies. - . - THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES - WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR - ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN - ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF - OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE - ---- - -ISC License -(d3-axis 3.0.0, d3-brush 3.0.0, d3-chord 3.0.1, d3-dispatch 3.0.1, d3-drag 3.0.0, d3-force 3.0.0, d3-format 3.1.0, d3-interpolate 3.0.1, d3-polygon 3.0.1, d3-quadtree 3.0.1, d3-random 3.0.1, d3-scale 4.0.2, d3-selection 3.0.0, d3-time-format 4.1.0, d3-timer 3.0.1, d3-transition 3.0.1, d3-zoom 3.0.0) - -Copyright 2010-2021 Mike Bostock - -Permission to use, copy, modify, and/or distribute this software for any purpose -with or without fee is hereby granted, provided that the above copyright notice -and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH -REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, -INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS -OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF -THIS SOFTWARE - ---- - -ISC License -(yaml 1.10.2) - -Copyright 2018 Eemeli Aro - -Permission to use, copy, modify, and/or distribute this software for any purpose -with or without fee is hereby granted, provided that the above copyright notice -and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH -REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, -INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS -OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF -THIS SOFTWARE +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE --- ISC License -(quickselect 2.0.0) - -ISC License +(y18n 5.0.8) -Copyright (c) 2018, Vladimir Agafonkin +Copyright (c) 2015, Contributors Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice @@ -3730,32 +3595,11 @@ THIS SOFTWARE --- ISC License -(glob-parent 6.0.2) - -The ISC License - -Copyright (c) 2015, 2019 Elan Shanker, 2021 Blaine Bublitz , Eric Schoffstall and other contributors - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE - ---- +(go-spew 20180930-snapshot-d8f796af) ISC License -(glob-parent 5.1.2) -The ISC License - -Copyright (c) 2015, 2019 Elan Shanker +Copyright (c) 2012-2016 Dave Collins Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above @@ -3766,27 +3610,8 @@ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE - ---- - -ISC License -(y18n 5.0.8) - -Copyright (c) 2015, Contributors - -Permission to use, copy, modify, and/or distribute this software for any purpose -with or without fee is hereby granted, provided that the above copyright notice -and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH -REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, -INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS -OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF -THIS SOFTWARE +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE --- @@ -4016,27 +3841,6 @@ THE SOFTWARE --- -MIT License -(node-jsonfile 6.1.0) - -(The MIT License) - -Copyright (c) 2012-2015, JP Richardson - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files -(the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, - merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS -OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, - ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE - ---- - MIT License (bytes.js 1.0.0) @@ -4068,32 +3872,6 @@ Permission is hereby granted, free of charge, to any person --- -MIT License -(faye-websocket-node 0.10.0) - -(The MIT License) - -Copyright (c) 2010-2015 James Coglan - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the 'Software'), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE - ---- - MIT License (performance-now 2.1.0) @@ -4147,7 +3925,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI --- MIT License -(memoize-one 4.1.0) +(memoize-one v4.0.3) MIT License @@ -4174,7 +3952,7 @@ SOFTWARE --- MIT License -(balanced-match 1.0.2, brace-expansion 1.1.11, isarray 0.0.1) +(balanced-match 1.0.2, isarray 0.0.1) Copyright (c) 2013 Julian Gruber <julian@juliangruber.com> @@ -4422,7 +4200,7 @@ Permission is hereby granted, free of charge, to any person --- MIT License -(color-name 1.1.3, color-name 1.1.4) +(color-name 1.1.4) The MIT License (MIT) @@ -4799,7 +4577,7 @@ Permission is hereby granted, free of charge, to any person --- MIT License -(Qix-/color-convert 1.9.3, Qix-/color-convert 2.0.1) +(Qix-/color-convert 2.0.1) Copyright (c) 2011-2016 Heather Arthur @@ -4825,7 +4603,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE --- MIT License -(chokidar 4.0.1, chokidar 4.0.3) +(chokidar 4.0.3) The MIT License (MIT) @@ -4878,33 +4656,6 @@ SOFTWARE --- -MIT License -(has-symbols 1.0.3) - -MIT License - -Copyright (c) 2016 Jordan Harband - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE - ---- - MIT License (go-test/deep v1.0.8) @@ -4939,7 +4690,7 @@ MIT License Copyright (c) Microsoft Corporation. - + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -4990,45 +4741,6 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE --- -MIT License -(brace-expansion 2.0.1) - -Upstream-Contact: Julian Gruber -Source: https://github.com/juliangruber/brace-expansion - -Files: * -Copyright: 2013, Julian Gruber -License: Expat - -Files: debian/* -Copyright: 2015, Bas Couwenberg - 2020, Yadd -License: Expat - -License: Expat - -Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation files - (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, - publish, distribute, sublicense, and/or sell copies of the Software, - and to permit persons to whom the Software is furnished to do so, - subject to the following conditions: - . - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - . - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE - ---- - MIT License (node-promise-retry 2.0.1) @@ -5094,30 +4806,29 @@ Permission is hereby granted, free of charge, to any person --- MIT License -(sort-object 0.3.2) +(i18next 19.9.2) -Copyright (c) 2014 Brian Woodward, Jon Schlinkert, contributors. +The MIT License (MIT) -Permission is hereby granted, free of charge, to any person -obtaining a copy of this software and associated documentation -files (the "Software"), to deal in the Software without -restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following -conditions: +Copyright (c) 2017 i18next -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT -HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -OTHER DEALINGS IN THE SOFTWARE +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE --- @@ -5184,8 +4895,35 @@ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE + +--- + +MIT License +(cheerio 1.1.2) + +MIT License + +Copyright (c) 2016 Matt Mueller + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE --- @@ -5551,21 +5289,6 @@ THE SOFTWARE --- -MIT License -(map-age-cleaner 0.1.3) - -MIT License - -Copyright (c) Sam Verschueren (github.com/SamVerschueren) - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE - ---- - MIT License (resize-observer-polyfill 1.5.1) @@ -5674,33 +5397,6 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE --- -MIT License -(ajv 6.12.6) - -The MIT License (MIT) - -Copyright (c) 2015-2017 Evgeny Poberezkin - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE - ---- - MIT License (prettier-linter-helpers 1.0.0) @@ -5786,33 +5482,6 @@ THE SOFTWARE --- -MIT License -(Jest from Facebook 30.0.1, Jest from Facebook 30.0.2) - -MIT License - -Copyright (c) 2019 Jest Community - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE - ---- - MIT License (p-locate v5.0.0) @@ -5977,34 +5646,7 @@ Permission is hereby granted, free of charge, to any person --- MIT License -(json-stringify-pretty-compact 2.0.0) - -The MIT License (MIT) - -Copyright (c) 2014, 2016, 2017, 2019 Simon Lydell - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE - ---- - -MIT License -(css.escape 1.5.1, cssesc 3.0.0, emoji-regex 9.2.2, emoji-regex v8.0.0, is-potential-custom-element-name 1.0.1, jsesc 3.0.2, jsesc v2.5.2, mathiasbynens's esrever 0.2.0, string.prototype.repeat v1.0.0) +(css.escape 1.5.1, cssesc 3.0.0, emoji-regex 9.2.2, emoji-regex v8.0.0, is-potential-custom-element-name 1.0.1, mathiasbynens's esrever 0.2.0, string.prototype.repeat v1.0.0) Copyright Mathias Bynens @@ -6139,31 +5781,6 @@ THE SOFTWARE --- -MIT License -(olekukonko-tablewriter v0.0.5) - -Copyright (C) 2014 by Oleku Konko - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE - ---- - MIT License (continuable-cache 0.3.1) @@ -6232,33 +5849,6 @@ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR I --- -MIT License -(rbush 3.0.1) - -MIT License - -Copyright (c) 2016 Vladimir Agafonkin - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE - ---- - MIT License (resolve-pathname 3.0.0, value-equal 1.0.1) @@ -6376,33 +5966,6 @@ SOFTWARE --- -MIT License -(highlight-words-core 1.2.2) - -The MIT License (MIT) - -Copyright (c) 2015 Treasure Data - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE - ---- - MIT License (object-keys 1.1.1) @@ -6469,114 +6032,29 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE - ---- - -MIT License -(gensync 1.0.0-beta.2) - -Copyright 2018 Logan Smyth - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE - ---- - -MIT License -(sort-asc 0.1.0, sort-desc 0.1.1) - -Copyright (c) 2014 Jon Schlinkert, contributors. - -Permission is hereby granted, free of charge, to any person -obtaining a copy of this software and associated documentation -files (the "Software"), to deal in the Software without -restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following -conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT -HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -OTHER DEALINGS IN THE SOFTWARE - ---- - -MIT License -(JSHTTP's negotiator 0.6.3) - -(The MIT License) - -Copyright (c) 2012-2014 Federico Romero -Copyright (c) 2012-2014 Isaac Z. Schlueter -Copyright (c) 2014-2015 Douglas Christopher Wilson - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -'Software'), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE - ---- - -MIT License -(tapable 2.2.1) - -The MIT License - -Copyright JS Foundation and other contributors - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE + +--- + +MIT License +(gensync 1.0.0-beta.2) + +Copyright 2018 Logan Smyth + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE --- @@ -6719,7 +6197,7 @@ THE SOFTWARE --- MIT License -(is-arrayish 0.2.1, node-error-ex 1.3.2) +(is-arrayish 0.2.1) The MIT License (MIT) @@ -6799,33 +6277,6 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE --- -MIT License -(is-lambda 1.0.1) - -The MIT License (MIT) - -Copyright (c) 2016-2017 Thomas Watson Steen - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE - ---- - MIT License (find-root 1.1.0) @@ -6931,31 +6382,6 @@ Permission is hereby granted, free of charge, to any person --- -MIT License -(csscolorparser 1.0.3) - -(c) Dean McNamee , 2012. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to -deal in the Software without restriction, including without limitation the -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -IN THE SOFTWARE - ---- - MIT License (kisielk-gotool v1.0.0) @@ -7147,7 +6573,7 @@ Permission is hereby granted, free of charge, to any person obtaining a copy --- MIT License -(Lodash 4.17.21, lodash.escape 4.0.1, lodash.flattendeep 4.4.0, lodash.isequal 4.5.0, lodash.merge 4.6.2) +(lodash.escape 4.0.1, lodash.flattendeep 4.4.0, lodash.isequal 4.5.0, lodash.merge 4.6.2) ==== @@ -7172,33 +6598,6 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE --- -MIT License -(parse-headers 2.0.5) - -Copyright (c) 2014 David Björklund - -This software is released under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE - ---- - MIT License (saxes 6.0.0) @@ -7206,7 +6605,7 @@ MIT License, as follows: Copyright Mathias Bynens - + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the @@ -7420,34 +6819,6 @@ THE SOFTWARE --- -MIT License -(minizlib v2.1.2) - -""" -Copyright Isaac Z. Schlueter and Contributors -Copyright Node.js contributors. All rights reserved. -Copyright Joyent, Inc. and other Node contributors. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE - ---- - MIT License (node-int64 0.4.0) @@ -7500,7 +6871,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE --- MIT License -(escape-string-regexp 1.0.5, object-assign 4.1.1, p-defer 1.0.0, path-is-absolute 1.0.1, strip-bom 3.0.0) +(object-assign 4.1.1, path-is-absolute 1.0.1, strip-bom 3.0.0) The MIT License (MIT) @@ -7527,7 +6898,7 @@ THE SOFTWARE --- MIT License -(@adobe/css-tools 4.4.0, @asamuzakjp/css-color 3.2.0, @babel/code-frame 7.24.7, @babel/code-frame 7.27.1, @babel/compat-data 7.25.4, @babel/compat-data 7.27.2, @babel/core 7.25.2, @babel/core 7.28.0, @babel/generator 7.25.6, @babel/generator 7.27.1, @babel/generator 7.28.0, @babel/helper-compilation-targets 7.25.2, @babel/helper-compilation-targets 7.27.2, @babel/helper-globals 7.28.0, @babel/helper-module-imports 7.24.7, @babel/helper-module-imports 7.27.1, @babel/helper-module-transforms 7.25.2, @babel/helper-module-transforms 7.27.3, @babel/helper-plugin-utils 7.24.8, @babel/helper-plugin-utils 7.27.1, @babel/helper-simple-access 7.24.7, @babel/helper-string-parser 7.24.8, @babel/helper-string-parser 7.27.1, @babel/helper-validator-identifier 7.24.7, @babel/helper-validator-identifier 7.27.1, @babel/helper-validator-option 7.24.8, @babel/helper-validator-option 7.27.1, @babel/helpers 7.25.6, @babel/helpers 7.27.6, @babel/highlight 7.24.7, @babel/parser 7.25.6, @babel/parser 7.27.2, @babel/parser 7.28.0, @babel/plugin-syntax-import-attributes 7.25.6, @babel/plugin-syntax-jsx 7.27.1, @babel/plugin-syntax-typescript 7.27.1, @babel/runtime 7.25.6, @babel/runtime 7.25.7, @babel/runtime 7.25.9, @babel/runtime 7.27.1, @babel/template 7.25.0, @babel/template 7.27.2, @babel/types 7.25.6, @babel/types 7.27.1, @babel/types 7.28.0, @braintree/sanitize-url 7.0.1, @cspotcode/source-map-support 0.8.1, @csstools/color-helpers 5.0.2, @csstools/css-calc 2.1.4, @csstools/css-color-parser 3.0.10, @csstools/css-parser-algorithms 3.0.5, @csstools/css-tokenizer 3.0.4, @discoveryjs/json-ext 0.6.3, @emnapi/core 1.4.4, @emnapi/runtime 1.4.4, @emnapi/wasi-threads 1.0.3, @emotion/babel-plugin 11.12.0, @emotion/babel-plugin 11.13.5, @emotion/cache 11.13.1, @emotion/cache 11.14.0, @emotion/css 11.13.5, @emotion/hash 0.9.2, @emotion/memoize 0.9.0, @emotion/react 11.13.3, @emotion/react 11.14.0, @emotion/serialize 1.3.1, @emotion/serialize 1.3.3, @emotion/sheet 1.4.0, @emotion/unitless 0.10.0, @emotion/use-insertion-effect-with-fallbacks 1.1.0, @emotion/use-insertion-effect-with-fallbacks 1.2.0, @emotion/utils 1.4.0, @emotion/utils 1.4.2, @emotion/weak-memoize 0.4.0, @es-joy/jsdoccomment 0.52.0, @eslint-community/eslint-utils 4.7.0, @eslint-community/regexpp 4.12.1, @eslint/css-tree 3.6.2, @eslint/eslintrc 3.3.1, @eslint/js 9.30.1, @eslint/js 9.31.0, @eslint/markdown 6.6.0, @floating-ui/core 1.6.7, @floating-ui/dom 1.6.10, @floating-ui/react 0.27.7, @floating-ui/react-dom 2.1.2, @floating-ui/utils 0.2.7, @floating-ui/utils 0.2.9, @formatjs/ecma402-abstract 2.0.0, @formatjs/fast-memoize 2.2.0, @formatjs/icu-messageformat-parser 2.7.8, @formatjs/icu-skeleton-parser 1.8.2, @formatjs/intl-localematcher 0.5.4, @isaacs/balanced-match 4.0.1, @isaacs/brace-expansion 5.0.0, @jest/console 30.0.4, @jest/core 30.0.4, @jest/create-cache-key-function 30.0.2, @jest/diff-sequences 30.0.1, @jest/environment 30.0.4, @jest/environment-jsdom-abstract 30.0.4, @jest/expect 30.0.4, @jest/expect-utils 30.0.4, @jest/fake-timers 30.0.4, @jest/get-type 30.0.1, @jest/globals 30.0.4, @jest/pattern 30.0.1, @jest/reporters 30.0.4, @jest/schemas 29.6.3, @jest/schemas 30.0.1, @jest/snapshot-utils 30.0.4, @jest/source-map 30.0.1, @jest/test-result 30.0.4, @jest/test-sequencer 30.0.4, @jest/transform 30.0.4, @jest/types 29.6.3, @jest/types 30.0.1, @jridgewell/gen-mapping 0.3.12, @jridgewell/gen-mapping 0.3.5, @jridgewell/resolve-uri 3.1.2, @jridgewell/set-array 1.2.1, @jridgewell/source-map 0.3.6, @jridgewell/sourcemap-codec 1.5.0, @jridgewell/sourcemap-codec 1.5.4, @jridgewell/trace-mapping 0.3.25, @jridgewell/trace-mapping 0.3.29, @jridgewell/trace-mapping 0.3.9, @leeoniya/ufuzzy 1.0.18, @mapbox/jsonlint-lines-primitives 2.0.2, @monaco-editor/loader 1.4.0, @monaco-editor/react 4.6.0, @napi-rs/wasm-runtime 0.2.11, @parcel/watcher 2.4.1, @parcel/watcher-android-arm64 2.4.1, @parcel/watcher-darwin-arm64 2.4.1, @parcel/watcher-darwin-x64 2.4.1, @parcel/watcher-freebsd-x64 2.4.1, @parcel/watcher-linux-arm-glibc 2.4.1, @parcel/watcher-linux-arm64-glibc 2.4.1, @parcel/watcher-linux-arm64-musl 2.4.1, @parcel/watcher-linux-x64-glibc 2.4.1, @parcel/watcher-linux-x64-musl 2.4.1, @parcel/watcher-win32-arm64 2.4.1, @parcel/watcher-win32-ia32 2.4.1, @parcel/watcher-win32-x64 2.4.1, @petamoriken/float16 3.8.7, @pkgjs/parseargs 0.11.0, @pkgr/core 0.2.7, @pkgr/core 0.2.9, @popperjs/core 2.11.8, @rc-component/portal 1.1.2, @rc-component/trigger 2.2.3, @remix-run/router 1.20.0, @sinclair/typebox 0.27.8, @sinclair/typebox 0.34.37, @stylistic/eslint-plugin-ts 4.4.1, @swc/core-darwin-arm64 1.12.11, @swc/core-darwin-x64 1.12.11, @swc/core-linux-arm64-gnu 1.12.11, @swc/core-linux-arm64-musl 1.12.11, @swc/core-linux-x64-gnu 1.12.11, @swc/core-linux-x64-musl 1.12.11, @swc/core-win32-arm64-msvc 1.12.11, @swc/core-win32-ia32-msvc 1.12.11, @swc/core-win32-x64-msvc 1.12.11, @swc/jest 0.2.39, @tanstack/react-virtual 3.10.8, @tanstack/virtual-core 3.10.8, @testing-library/dom 10.4.0, @testing-library/jest-dom 6.6.3, @testing-library/react 16.3.0, @tsconfig/node10 1.0.11, @tsconfig/node12 1.0.11, @tsconfig/node14 1.0.3, @tsconfig/node16 1.0.4, @tybys/wasm-util 0.9.0, @types/aria-query 5.0.4, @types/babel__core 7.20.5, @types/babel__generator 7.6.8, @types/babel__template 7.4.4, @types/babel__traverse 7.20.6, @types/cheerio 0.22.35, @types/d3-color 3.1.3, @types/d3-interpolate 3.0.4, @types/debug 4.1.12, @types/enzyme 3.10.19, @types/eslint 9.6.1, @types/eslint-scope 3.7.7, @types/estree 1.0.5, @types/estree 1.0.8, @types/istanbul-lib-coverage 2.0.6, @types/istanbul-lib-report 3.0.3, @types/istanbul-reports 3.0.4, @types/jest 30.0.0, @types/jquery 3.5.32, @types/jsdom 21.1.7, @types/json-schema 7.0.15, @types/lodash 4.17.15, @types/lodash 4.17.20, @types/mdast 4.0.4, @types/ms 2.1.0, @types/node 22.5.4, @types/node 24.1.0, @types/parse-json 4.0.2, @types/prop-types 15.7.12, @types/react 16.14.65, @types/react 18.3.23, @types/react 18.3.5, @types/react-dom 18.3.7, @types/react-table 7.7.20, @types/react-transition-group 4.4.11, @types/scheduler 0.16.8, @types/sizzle 2.3.8, @types/stack-utils 2.0.3, @types/string-hash 1.1.3, @types/systemjs 6.15.1, @types/tough-cookie 4.0.5, @types/trusted-types 2.0.7, @types/unist 3.0.3, @types/use-sync-external-store 0.0.6, @types/yargs 17.0.33, @types/yargs-parser 21.0.3, @typescript-eslint/eslint-plugin 8.38.0, @typescript-eslint/parser 8.38.0, @typescript-eslint/project-service 8.38.0, @typescript-eslint/scope-manager 8.38.0, @typescript-eslint/tsconfig-utils 8.38.0, @typescript-eslint/type-utils 8.38.0, @typescript-eslint/types 8.38.0, @typescript-eslint/typescript-estree 8.38.0, @typescript-eslint/utils 8.38.0, @typescript-eslint/visitor-keys 8.38.0, @unrs/resolver-binding-android-arm-eabi 1.11.0, @unrs/resolver-binding-android-arm64 1.11.0, @unrs/resolver-binding-darwin-arm64 1.11.0, @unrs/resolver-binding-darwin-x64 1.11.0, @unrs/resolver-binding-freebsd-x64 1.11.0, @unrs/resolver-binding-linux-arm-gnueabihf 1.11.0, @unrs/resolver-binding-linux-arm-musleabihf 1.11.0, @unrs/resolver-binding-linux-arm64-gnu 1.11.0, @unrs/resolver-binding-linux-arm64-musl 1.11.0, @unrs/resolver-binding-linux-ppc64-gnu 1.11.0, @unrs/resolver-binding-linux-riscv64-gnu 1.11.0, @unrs/resolver-binding-linux-riscv64-musl 1.11.0, @unrs/resolver-binding-linux-s390x-gnu 1.11.0, @unrs/resolver-binding-linux-x64-gnu 1.11.0, @unrs/resolver-binding-linux-x64-musl 1.11.0, @unrs/resolver-binding-wasm32-wasi 1.11.0, @unrs/resolver-binding-win32-arm64-msvc 1.11.0, @unrs/resolver-binding-win32-ia32-msvc 1.11.0, @unrs/resolver-binding-win32-x64-msvc 1.11.0, @webassemblyjs/ast 1.14.1, @webassemblyjs/floating-point-hex-parser 1.13.2, @webassemblyjs/helper-api-error 1.13.2, @webassemblyjs/helper-buffer 1.14.1, @webassemblyjs/helper-numbers 1.13.2, @webassemblyjs/helper-wasm-bytecode 1.13.2, @webassemblyjs/helper-wasm-section 1.14.1, @webassemblyjs/ieee754 1.13.2, @webassemblyjs/utf8 1.13.2, @webassemblyjs/wasm-edit 1.14.1, @webassemblyjs/wasm-gen 1.14.1, @webassemblyjs/wasm-opt 1.14.1, @webassemblyjs/wasm-parser 1.14.1, @webassemblyjs/wast-printer 1.14.1, @webpack-cli/configtest 3.0.1, @webpack-cli/info 3.0.1, @webpack-cli/serve 3.0.1, @wojtekmaj/date-utils 1.5.1, Acorn 8.12.1, Acorn 8.15.0, acorn-import-phases 1.0.3, acorn-walk 8.3.4, agent-base 7.1.1, agent-base 7.1.4, ajv 8.17.1, alecthomas-kingpin v2.4.0, alecthomas-units 20211218-snapshot-b94a6e3c, andybalholm/brotli v1.1.1, andylibrian/atomicgo-keyboard v0.2.9, ansi-regex 6.1.0, ansi-styles 6.2.1, are-docs-informative 0.0.2, array-buffer-byte-length 1.0.2, array-includes 3.1.9, array.prototype.filter 1.0.4, array.prototype.findlast 1.2.5, array.prototype.flat 1.3.3, array.prototype.flatmap 1.3.3, array.prototype.tosorted 1.1.4, arraybuffer.prototype.slice 1.0.4, Async 2.6.4, async-function 1.0.0, attr-accept 2.2.5, available-typed-arrays 1.0.7, babel-preset-current-node-syntax 1.1.0, babel-traverse 7.25.6, babel-traverse 7.27.1, babel-traverse 7.28.0, browserify/resolve 1.22.8, browserify/resolve 2.0.0-next.5, browserslist 4.23.3, browserslist 4.24.0, BurntSushi/toml v1.5.0, call-bind 1.0.7, call-bind 1.0.8, call-bind-apply-helpers 1.0.2, call-bound 1.0.4, cenkalti/backoff v4.3.0, cespare/xxhash v2.3.0, character-entities 2.0.2, cheerio 1.1.0, chromedp/cdproto 20250429-snapshot-6ed5b534, chromedp/sysutil v1.1.0, ci-info 3.9.0, ci-info 4.3.0, cjs-module-lexer 2.1.0, classnames 2.5.1, clsx 2.1.1, collect-v8-coverage 1.0.2, colorette 2.0.20, Commander.js 12.1.0, comment-parser 1.4.1, compute-scroll-into-view 3.1.0, convert-source-map 1.9.0, convert-source-map 2.0.0, copy-to-clipboard 3.3.3, copy-webpack-plugin 13.0.0, cosmiconfig 7.1.0, cosmiconfig 8.3.6, cpuguy83-go-md2man v2.0.7, creasty/defaults v1.8.0, css-loader 7.1.2, cssstyle 4.6.0, csstype 3.1.3, DamonOehlman/wildcard 2.0.1, data-urls 5.0.0, data-view-buffer 1.0.2, data-view-byte-length 1.0.2, data-view-byte-offset 1.0.1, date-fns/date-fns 4.1.0, debug-js/debug 4.3.7, debug-js/debug 4.4.1, decimal.js 10.6.0, decode-named-character-reference 1.2.0, dedent 1.6.0, deepmerge 4.3.1, define-data-property 1.1.4, define-properties 1.2.1, dequal 2.0.3, devlop 1.1.0, dom-accessibility-api 0.5.16, dom-accessibility-api 0.6.3, dom-serializer 2.0.0, downshift 9.0.8, dunder-proto 1.0.1, dvtng/react-loading-skeleton 3.5.0, eastasianwidth 0.2.0, einaros/ws 8.18.3, emittery 0.13.1, encoding-sniffer 0.2.1, enhanced-resolve 5.18.2, envinfo 7.14.0, enzymejs 1.0.7, err-code 2.0.3, error 7.2.1, error-stack-parser 2.1.4, es-abstract 1.24.0, es-define-property 1.0.0, es-define-property 1.0.1, es-errors 1.3.0, es-iterator-helpers 1.2.1, es-module-lexer 1.5.4, es-object-atoms 1.1.1, es-set-tostringtag 2.1.0, es-shim-unscopables 1.1.0, es-to-primitive 1.3.0, escalade 3.2.0, ESLint 9.30.1, eslint-config-prettier 10.1.8, eslint-plugin-prettier 5.5.3, eslint-plugin-react-hooks 5.2.0, eslint-webpack-plugin 5.0.2, eventemitter3 5.0.1, exit-x 0.2.2, expect 30.0.4, fast-glob 3.3.3, fast-uri 3.0.1, fast_array_intersect 1.1.0, fastcache v1.12.2, fastest-levenshtein 1.0.16, fatih-color v1.18.0, fdir 6.4.4, felixge/httpsnoop v1.0.4, file-entry-cache 8.0.0, file-selector 2.1.2, fill-range 7.1.1, flat-cache 4.0.1, fork-ts-checker-webpack-plugin 9.1.0, fsevents 2.3.3, function-bind 1.1.2, function.prototype.name 1.1.8, functions-have-names 1.2.3, geotiff 2.1.3, get-document 1.0.0, get-intrinsic 1.2.4, get-intrinsic 1.3.0, get-proto 1.0.1, get-symbol-description 1.1.0, get-user-locale 2.3.2, getkin/kin-openapi v0.132.0, github.com/antihax/optional 1.0.0, github.com/rivo/uniseg v0.4.7, globalthis 1.0.4, go humanize 1.0.1, Go Testify v1.10.0, go-restful v3.11.0, go.uber.org/goleak v1.3.0, goccy/go-json v0.10.5, goccy/go-yaml v1.11.0, goconvey 20190121-snapshot-044398e4, gookit/color v1.5.4, gopd 1.0.1, gopd 1.2.0, govalidator 20230301-snapshot-a9d515a0, graphemer 1.4.0, hamba/avro v2.28.0, has 1.0.4, has-bigints 1.1.0, has-property-descriptors 1.0.2, has-proto 1.0.3, has-proto 1.2.0, has-symbols 1.1.0, has-tostringtag 1.0.2, hashicorp/go-hclog v1.6.3, hasown 2.0.2, html-encoding-sniffer 4.0.0, html-parse-stringify v3.0.1, htmlparser2 10.0.0, http-parser-js 0.5.8, https-proxy-agent 7.0.5, https-proxy-agent 7.0.6, i18next 24.2.3, i18next-browser-languagedetector 8.1.0, ianstormtaylor/slate 0.2.115, ianstormtaylor/slate 0.2.9, ianstormtaylor/slate 0.47.9, immutable-js 5.0.3, immutable-js 5.1.2, import-local 3.2.0, imports-loader 5.0.0, inline-style-prefixer 7.0.1, internal-slot 1.1.0, interpret 3.1.1, invopop/jsonschema v0.13.0, ipaddress 9.0.5, is-array-buffer 3.0.5, is-async-function 2.1.1, is-bigint 1.1.0, is-boolean-object 1.2.2, is-callable 1.2.7, is-core-module 2.15.1, is-data-view 1.0.2, is-date-object 1.1.0, is-finalizationregistry 1.1.1, is-generator-function 1.1.0, is-in-browser 1.1.3, is-map 2.0.3, is-negative-zero 2.0.3, is-number-object 1.1.1, is-regex 1.2.1, is-set 2.0.3, is-shared-array-buffer 1.0.4, is-string 1.1.1, is-symbol 1.1.1, is-typed-array 1.1.15, is-weakmap 2.0.2, is-weakref 1.1.1, is-weakset 2.0.4, isomorphic-base64 1.0.2, iterator.prototype 1.1.5, JedWatson/react-select 5.10.0, Jest from Facebook 30.0.4, jest-changed-files 30.0.2, jest-config 30.0.4, jest-diff 30.0.4, jest-each 30.0.2, jest-environment-jsdom 30.0.4, jest-environment-node 30.0.4, jest-haste-map 30.0.2, jest-leak-detector 30.0.2, jest-matcher-utils 30.0.4, jest-message-util 30.0.2, jest-pnp-resolver 1.2.3, jest-regex-util 30.0.1, jest-resolve 30.0.2, jest-resolve-dependencies 30.0.4, jest-runner 30.0.4, jest-runtime 30.0.4, jest-snapshot 30.0.4, jest-util 29.7.0, jest-util 30.0.2, jest-validate 30.0.2, jest-worker 29.7.0, jest-worker 30.0.2, jQuery 3.7.1, js-xss 1.0.15, jsdoc-type-pratt-parser 4.1.0, jsdom 26.1.0, jsjest 30.0.4, jsonc-parser 3.3.1, jsx-ast-utils 3.3.5, keyv 4.5.4, klauspost-cpuid v2.2.10, klauspost/asmfmt v1.3.2, kr/pretty v0.3.1, lithammer/fuzzysearch v1.1.8, ljharb/object.assign 4.1.7, loader-runner 4.3.0, longest-streak 3.1.0, lz-string 1.5.0, mailru/easyjson v0.9.0, make-dir 4.0.0, mapstructure v1.5.0, markdown-table 3.0.4, marked-mangle 1.1.10, markedjs 15.0.6, math-intrinsics 1.1.0, mattn-go-colorable v0.1.14, mattn-go-isatty v0.0.20, mattn-go-runewidth v0.0.16, mdast-util-find-and-replace 3.0.2, mdast-util-from-markdown 2.0.2, mdast-util-frontmatter 2.0.1, mdast-util-gfm 3.1.0, mdast-util-gfm-autolink-literal 2.0.1, mdast-util-gfm-footnote 2.1.0, mdast-util-gfm-strikethrough 2.0.0, mdast-util-gfm-table 2.0.0, mdast-util-gfm-task-list-item 2.0.0, mdast-util-phrasing 4.1.0, mdast-util-to-markdown 2.1.2, mdast-util-to-string 4.0.0, micro-memoize 4.1.2, micromark 4.0.2, micromark-core-commonmark 2.0.3, micromark-extension-frontmatter 2.0.0, micromark-extension-gfm 3.0.0, micromark-extension-gfm-autolink-literal 2.1.0, micromark-extension-gfm-footnote 2.1.0, micromark-extension-gfm-strikethrough 2.1.0, micromark-extension-gfm-table 2.1.1, micromark-extension-gfm-tagfilter 2.0.0, micromark-extension-gfm-task-list-item 2.1.0, micromark-factory-destination 2.0.1, micromark-factory-label 2.0.1, micromark-factory-space 2.0.1, micromark-factory-title 2.0.1, micromark-factory-whitespace 2.0.1, micromark-util-character 2.1.1, micromark-util-chunked 2.0.1, micromark-util-classify-character 2.0.1, micromark-util-combine-extensions 2.0.1, micromark-util-decode-numeric-character-reference 2.0.2, micromark-util-decode-string 2.0.1, micromark-util-encode 2.0.1, micromark-util-html-tag-name 2.0.1, micromark-util-normalize-identifier 2.0.1, micromark-util-resolve-all 2.0.1, micromark-util-sanitize-uri 2.0.1, micromark-util-subtokenize 2.1.0, micromark-util-symbol 2.0.1, micromark-util-types 2.0.2, micromatch 4.0.8, micromatch/braces 3.0.3, minimist 1.2.8, minipass-fetch 3.0.5, moment-timezone 0.5.47, moment/moment 2.30.1, monaco-editor 0.34.1, moxystudio/node-cross-spawn 7.0.6, nanoid 3.3.7, napi-postinstall 0.3.0, natural-compare 1.4.0, node-abort-controller 3.1.1, node-addon-api 7.1.1, node-fs-extra 10.1.0, node-gyp 10.2.0, node-http-proxy-agent 7.0.2, node-ignore 5.3.2, node-ignore 7.0.5, node-mkdirp 0.5.6, node-releases 2.0.18, nodeca/pako 2.1.0, nwsapi 2.2.20, object-inspect 1.13.2, object-inspect 1.13.4, object-is 1.1.6, object.entries 1.1.9, object.fromentries 2.0.8, object.values 1.2.1, optionator 0.9.4, own-keys 1.0.1, PapaParse 5.5.2, parse-imports-exports 0.2.4, parse-statements 1.0.11, parse5 7.1.0, parse5 7.1.2, parse5 7.3.0, path-to-regexp 1.9.0, picomatch 4.0.2, pirates 4.0.7, portfinder 1.0.32, possible-typed-array-names 1.1.0, PostCSS 8.4.45, postcss-modules-local-by-default 4.0.5, postcss-selector-parser 6.1.2, prettier 3.6.2, pretty-format 30.0.2, PrismJS 1.30.0, pterm/pterm v0.12.80, Punycode.js 2.3.1, pure-rand 7.0.1, quick-lru 6.1.2, Raynos/for-each 0.3.5, rc-cascader 3.33.0, rc-drawer 7.2.0, rc-motion 2.9.2, rc-overflow 1.3.2, rc-overflow 1.4.1, rc-picker 4.9.2, rc-resize-observer 1.4.0, rc-resize-observer 1.4.3, rc-select 14.16.7, rc-slider 11.1.8, rc-tooltip 6.4.0, rc-tree 5.13.1, rc-util 5.43.0, rc-util 5.44.4, rc-virtual-list 3.14.5, React from Facebook 18.3.1, react-calendar 5.1.0, react-colorful 5.6.1, react-custom-scrollbars-2 4.5.0, react-data-grid 7.0.0-beta.46, react-dom 18.3.1, react-dropzone/react-dropzone 14.3.5, react-from-dom 0.7.5, react-highlight-words 0.21.0, react-hook-form 7.53.0, react-i18next 15.5.1, react-inlinesvg 4.2.0, react-is 18.2.0, react-is 18.3.1, react-router-dom 5.3.4, react-table 7.8.0, react-window 1.8.11, reactredux 9.2.0, reacttraining/react-router 5.3.4, reacttraining/react-router 6.27.0, readdirp 4.0.2, Redux JS 5.0.1, reflect.getprototypeof 1.0.10, regenerator-runtime 0.14.1, regexp.prototype.flags 1.5.4, remix-run/react-router 6.27.0, reusify 1.1.0, rrweb-cssom 0.8.0, rtl-css-js 1.16.1, safe-array-concat 1.1.3, safe-push-apply 1.0.0, safe-regex-test 1.1.0, samccone/chrome-trace-event 1.0.4, samsonjs/format 0.2.2, sass 1.89.2, scheduler 0.23.2, schema-utils 3.3.0, schema-utils 4.2.0, schema-utils 4.3.2, selection-is-backward 1.0.0, set-function-length 1.2.2, set-function-name 2.0.2, set-proto 1.0.0, side-channel 1.0.6, side-channel 1.1.0, side-channel-list 1.0.0, side-channel-map 1.0.1, side-channel-weakmap 1.0.2, sindresorhus/globals 14.0.0, sindresorhus/globals 16.3.0, socks 2.8.3, socks-proxy-agent 8.0.4, spdx-expression-parse.js 4.0.0, stack-generator 2.0.10, stack-utils 2.0.6, stackframe 1.3.4, stacktrace-gps 3.1.2, stacktrace-js v2.0.2, stoewer/go-strcase v1.3.0, stop-iteration-iterator 1.1.0, stretchr/objx v0.5.2, string-width 5.1.2, string.prototype.matchall 4.0.12, string.prototype.trim 1.2.10, string.prototype.trimend 1.0.9, string.prototype.trimstart 1.0.8, Strip ANSI 7.1.0, style-loader 4.0.0, stylis 4.2.0, stylis 4.3.4, swc-loader 0.2.6, tabbable 6.2.0, terser-webpack-plugin 5.3.14, tidwall/gjson v1.14.2, tidwall/sjson v1.2.5, tiny-invariant 1.3.3, tiny-warning 0.0.3, TinyColor 1.6.0, tinyglobby 0.2.13, tldts 6.1.86, tldts-core 6.1.86, toggle-selection 1.0.6, tr46 5.1.1, ts-api-utils 2.1.0, ts-node 10.9.2, tsconfig-paths 4.2.0, typed-array-buffer 1.0.3, typed-array-byte-length 1.0.3, typed-array-byte-offset 1.0.4, typed-array-length 1.0.7, typescript-eslint 8.38.0, UAParser.js 1.0.38, un-ts/synckit 0.11.11, un-ts/synckit 0.11.8, unbox-primitive 1.1.0, undici 7.11.0, undici-types 6.19.8, undici-types 7.8.0, unist-util-is 6.0.0, unist-util-stringify-position 4.0.0, unist-util-visit 5.0.0, unist-util-visit-parents 6.0.1, universalify 2.0.1, unrs-resolver 1.11.0, update-browserslist-db 1.1.0, uplot 1.6.32, urfave-cli v1.22.16, use-isomorphic-layout-effect 1.2.0, use-memo-one 1.1.3, use-sync-external-store 1.5.0, uuid 11.0.5, uwrap 0.1.1, v8-compile-cache-lib 3.0.1, w3c-xmlserializer 5.0.0, watchpack 2.4.2, Webpack 5.100.0, webpack-cli 6.0.1, webpack-contrib/sass-loader 16.0.5, webpack-merge 6.0.1, webpack-sources 3.3.3, webpack-virtual-modules 0.6.2, whatwg-encoding 3.1.1, whatwg-mimetype 4.0.0, whatwg-url 14.2.0, which-boxed-primitive 1.1.1, which-builtin-type 1.2.1, which-collection 1.0.2, which-typed-array 1.1.19, word-wrap 1.2.5, wrap-ansi 8.1.0, xo/terminfo 20220910-snapshot-abceb7e1, yaml for Go v3.0.1, yannickcr/eslint-plugin-react 7.37.5, yargs 17.7.2, yuin/goldmark v1.4.13, zeebo/errs v1.4.0, zstddec 0.1.0, zwitch 2.0.4) +(@adobe/css-tools 4.4.4, @asamuzakjp/css-color 3.2.0, @babel/code-frame 7.27.1, @babel/compat-data 7.28.5, @babel/generator 7.28.5, @babel/helper-compilation-targets 7.27.2, @babel/helper-globals 7.28.0, @babel/helper-module-imports 7.27.1, @babel/helper-module-transforms 7.28.3, @babel/helper-plugin-utils 7.27.1, @babel/helper-string-parser 7.27.1, @babel/helper-validator-identifier 7.28.5, @babel/helper-validator-option 7.27.1, @babel/parser 7.28.5, @babel/plugin-syntax-import-attributes 7.27.1, @babel/plugin-syntax-jsx 7.27.1, @babel/plugin-syntax-typescript 7.27.1, @babel/template 7.27.2, @babel/types 7.28.5, @braintree/sanitize-url 7.0.1, @cspotcode/source-map-support 0.8.1, @csstools/color-helpers 5.1.0, @csstools/css-calc 2.1.4, @csstools/css-color-parser 3.1.0, @csstools/css-parser-algorithms 3.0.5, @csstools/css-tokenizer 3.0.4, @discoveryjs/json-ext 0.6.3, @emnapi/core 1.6.0, @emnapi/runtime 1.6.0, @emnapi/wasi-threads 1.1.0, @emotion/babel-plugin 11.13.5, @emotion/cache 11.14.0, @emotion/css 11.13.5, @emotion/hash 0.9.2, @emotion/memoize 0.9.0, @emotion/react 11.14.0, @emotion/serialize 1.3.3, @emotion/sheet 1.4.0, @emotion/unitless 0.10.0, @emotion/use-insertion-effect-with-fallbacks 1.2.0, @emotion/utils 1.4.2, @emotion/weak-memoize 0.4.0, @es-joy/jsdoccomment 0.76.0, @es-joy/resolve.exports 1.2.0, @eslint-community/eslint-utils 4.9.0, @eslint-community/regexpp 4.12.2, @eslint/css-tree 3.6.6, @eslint/eslintrc 3.3.1, @eslint/js 9.38.0, @eslint/markdown 6.6.0, @floating-ui/core 1.7.3, @floating-ui/dom 1.7.4, @floating-ui/react 0.27.16, @floating-ui/react-dom 2.1.6, @floating-ui/utils 0.2.10, @formatjs/ecma402-abstract 2.3.6, @formatjs/fast-memoize 2.2.7, @formatjs/icu-messageformat-parser 2.11.4, @formatjs/icu-skeleton-parser 1.8.16, @formatjs/intl-durationformat 0.7.6, @formatjs/intl-localematcher 0.6.2, @isaacs/balanced-match 4.0.1, @jest/console 30.2.0, @jest/core 30.2.0, @jest/create-cache-key-function 30.2.0, @jest/diff-sequences 30.0.1, @jest/environment 30.2.0, @jest/environment-jsdom-abstract 30.2.0, @jest/expect 30.2.0, @jest/expect-utils 30.2.0, @jest/fake-timers 30.2.0, @jest/get-type 30.1.0, @jest/globals 30.2.0, @jest/pattern 30.0.1, @jest/reporters 30.2.0, @jest/schemas 29.6.3, @jest/schemas 30.0.5, @jest/snapshot-utils 30.2.0, @jest/source-map 30.0.1, @jest/test-result 30.2.0, @jest/test-sequencer 30.2.0, @jest/transform 30.2.0, @jest/types 29.6.3, @jest/types 30.2.0, @jridgewell/gen-mapping 0.3.13, @jridgewell/remapping 2.3.5, @jridgewell/resolve-uri 3.1.2, @jridgewell/source-map 0.3.11, @jridgewell/sourcemap-codec 1.5.5, @jridgewell/trace-mapping 0.3.31, @jridgewell/trace-mapping 0.3.9, @leeoniya/ufuzzy 1.0.19, @monaco-editor/loader 1.6.1, @monaco-editor/react 4.7.0, @napi-rs/wasm-runtime 0.2.12, @parcel/watcher 2.5.1, @parcel/watcher-android-arm64 2.5.1, @parcel/watcher-darwin-arm64 2.5.1, @parcel/watcher-darwin-x64 2.5.1, @parcel/watcher-freebsd-x64 2.5.1, @parcel/watcher-linux-arm-glibc 2.5.1, @parcel/watcher-linux-arm-musl 2.5.1, @parcel/watcher-linux-arm64-glibc 2.5.1, @parcel/watcher-linux-arm64-musl 2.5.1, @parcel/watcher-linux-x64-glibc 2.5.1, @parcel/watcher-linux-x64-musl 2.5.1, @parcel/watcher-win32-arm64 2.5.1, @parcel/watcher-win32-ia32 2.5.1, @parcel/watcher-win32-x64 2.5.1, @petamoriken/float16 3.9.3, @pkgjs/parseargs 0.11.0, @pkgr/core 0.2.9, @popperjs/core 2.11.8, @rc-component/cascader 1.9.0, @rc-component/drawer 1.3.0, @rc-component/motion 1.3.1, @rc-component/overflow 1.0.0, @rc-component/picker 1.7.1, @rc-component/portal 2.2.0, @rc-component/resize-observer 1.1.1, @rc-component/select 1.3.6, @rc-component/slider 1.0.1, @rc-component/tooltip 1.4.0, @rc-component/tree 1.1.0, @rc-component/trigger 3.9.0, @rc-component/util 1.9.0, @rc-component/virtual-list 1.0.2, @sinclair/typebox 0.27.8, @sinclair/typebox 0.34.41, @sindresorhus/base62 1.0.0, @stylistic/eslint-plugin-ts 4.4.1, @swc/core-darwin-arm64 1.14.0, @swc/core-darwin-x64 1.14.0, @swc/core-linux-arm64-gnu 1.14.0, @swc/core-linux-arm64-musl 1.14.0, @swc/core-linux-x64-gnu 1.14.0, @swc/core-linux-x64-musl 1.14.0, @swc/core-win32-arm64-msvc 1.14.0, @swc/core-win32-ia32-msvc 1.14.0, @swc/core-win32-x64-msvc 1.14.0, @swc/jest 0.2.39, @tanstack/react-virtual 3.13.12, @tanstack/virtual-core 3.13.12, @testing-library/dom 10.4.1, @testing-library/jest-dom 6.9.1, @testing-library/react 16.3.0, @tsconfig/node10 1.0.11, @tsconfig/node12 1.0.11, @tsconfig/node14 1.0.3, @tsconfig/node16 1.0.4, @tybys/wasm-util 0.10.1, @types/aria-query 5.0.4, @types/babel__core 7.20.5, @types/babel__generator 7.27.0, @types/babel__template 7.4.4, @types/babel__traverse 7.28.0, @types/cheerio 0.22.35, @types/d3-color 3.1.3, @types/d3-interpolate 3.0.4, @types/debug 4.1.12, @types/enzyme 3.10.19, @types/eslint 9.6.1, @types/eslint-scope 3.7.7, @types/estree 1.0.8, @types/istanbul-lib-coverage 2.0.6, @types/istanbul-lib-report 3.0.3, @types/istanbul-reports 3.0.4, @types/jest 30.0.0, @types/jquery 3.5.33, @types/jsdom 21.1.7, @types/json-schema 7.0.15, @types/lodash 4.17.20, @types/mdast 4.0.4, @types/ms 2.1.0, @types/node 24.9.2, @types/parse-json 4.0.2, @types/prop-types 15.7.15, @types/rbush 4.0.0, @types/react 16.14.67, @types/react 18.3.26, @types/react 19.2.2, @types/react-dom 18.3.7, @types/react-table 7.7.20, @types/react-transition-group 4.4.12, @types/scheduler 0.16.8, @types/sizzle 2.3.10, @types/stack-utils 2.0.3, @types/string-hash 1.1.3, @types/systemjs 6.15.3, @types/tough-cookie 4.0.5, @types/trusted-types 2.0.7, @types/unist 3.0.3, @types/use-sync-external-store 0.0.6, @types/yargs 17.0.34, @types/yargs-parser 21.0.3, @typescript-eslint/eslint-plugin 8.46.2, @typescript-eslint/parser 8.46.2, @typescript-eslint/project-service 8.46.2, @typescript-eslint/scope-manager 8.46.2, @typescript-eslint/tsconfig-utils 8.46.2, @typescript-eslint/type-utils 8.46.2, @typescript-eslint/types 8.46.2, @typescript-eslint/typescript-estree 8.46.2, @typescript-eslint/utils 8.46.2, @typescript-eslint/visitor-keys 8.46.2, @unrs/resolver-binding-android-arm-eabi 1.11.1, @unrs/resolver-binding-android-arm64 1.11.1, @unrs/resolver-binding-darwin-arm64 1.11.1, @unrs/resolver-binding-darwin-x64 1.11.1, @unrs/resolver-binding-freebsd-x64 1.11.1, @unrs/resolver-binding-linux-arm-gnueabihf 1.11.1, @unrs/resolver-binding-linux-arm-musleabihf 1.11.1, @unrs/resolver-binding-linux-arm64-gnu 1.11.1, @unrs/resolver-binding-linux-arm64-musl 1.11.1, @unrs/resolver-binding-linux-ppc64-gnu 1.11.1, @unrs/resolver-binding-linux-riscv64-gnu 1.11.1, @unrs/resolver-binding-linux-riscv64-musl 1.11.1, @unrs/resolver-binding-linux-s390x-gnu 1.11.1, @unrs/resolver-binding-linux-x64-gnu 1.11.1, @unrs/resolver-binding-linux-x64-musl 1.11.1, @unrs/resolver-binding-wasm32-wasi 1.11.1, @unrs/resolver-binding-win32-arm64-msvc 1.11.1, @unrs/resolver-binding-win32-ia32-msvc 1.11.1, @unrs/resolver-binding-win32-x64-msvc 1.11.1, @webassemblyjs/ast 1.14.1, @webassemblyjs/floating-point-hex-parser 1.13.2, @webassemblyjs/helper-api-error 1.13.2, @webassemblyjs/helper-buffer 1.14.1, @webassemblyjs/helper-numbers 1.13.2, @webassemblyjs/helper-wasm-bytecode 1.13.2, @webassemblyjs/helper-wasm-section 1.14.1, @webassemblyjs/ieee754 1.13.2, @webassemblyjs/utf8 1.13.2, @webassemblyjs/wasm-edit 1.14.1, @webassemblyjs/wasm-gen 1.14.1, @webassemblyjs/wasm-opt 1.14.1, @webassemblyjs/wasm-parser 1.14.1, @webassemblyjs/wast-printer 1.14.1, @webpack-cli/configtest 3.0.1, @webpack-cli/info 3.0.1, @webpack-cli/serve 3.0.1, @wojtekmaj/date-utils 2.0.2, Acorn 8.15.0, acorn-import-phases 1.0.4, acorn-walk 8.3.4, agent-base 7.1.4, alecthomas-kingpin v2.4.0, alecthomas-units 20240927-snapshot-0f3dac36, altinity/clickhouse-grafana v2.2.2, andybalholm/brotli v1.2.0, andylibrian/atomicgo-keyboard v0.2.9, ansi-regex 6.2.2, ansi-styles 6.2.3, are-docs-informative 0.0.2, array-buffer-byte-length 1.0.2, array-includes 3.1.9, array.prototype.filter 1.0.4, array.prototype.findlast 1.2.5, array.prototype.flat 1.3.3, array.prototype.flatmap 1.3.3, array.prototype.tosorted 1.1.4, arraybuffer.prototype.slice 1.0.4, Async 3.2.6, async-function 1.0.0, async-generator-function 1.0.0, attr-accept 2.2.5, available-typed-arrays 1.0.7, babel-preset-current-node-syntax 1.2.0, babel-traverse 7.28.5, browserify/resolve 1.22.11, browserify/resolve 2.0.0-next.5, browserslist 4.27.0, BurntSushi/toml v1.5.0, call-bind 1.0.8, call-bind-apply-helpers 1.0.2, call-bound 1.0.4, cenkalti/backoff v4.3.0, cenkalti/backoff v5.0.3, cespare/xxhash v2.3.0, character-entities 2.0.2, chromedp/cdproto 20250803-snapshot-d308e07a, chromedp/sysutil v1.1.0, ci-info 3.9.0, ci-info 4.3.1, cjs-module-lexer 2.1.0, classnames 2.5.1, clipperhouse/displaywidth v0.6.2, clipperhouse/uax29 v2.3.0, clsx 2.1.1, collect-v8-coverage 1.0.3, colorette 2.0.20, Commander.js 12.1.0, comment-parser 1.4.1, compute-scroll-into-view 3.1.1, convert-source-map 1.9.0, convert-source-map 2.0.0, copy-to-clipboard 3.3.3, copy-webpack-plugin 13.0.1, cosmiconfig 7.1.0, cosmiconfig 8.3.6, cpuguy83-go-md2man 2.0.7, creasty/defaults v1.8.0, css-loader 7.1.2, cssstyle 4.6.0, csstype 3.1.3, DamonOehlman/wildcard 2.0.1, data-urls 5.0.0, data-view-buffer 1.0.2, data-view-byte-length 1.0.2, data-view-byte-offset 1.0.1, date-fns/date-fns 4.1.0, debug-js/debug 4.4.3, decimal.js 10.6.0, decode-named-character-reference 1.2.0, dedent 1.7.0, deepmerge 4.3.1, define-data-property 1.1.4, define-properties 1.2.1, dequal 2.0.3, devlop 1.1.0, dom-accessibility-api 0.5.16, dom-accessibility-api 0.6.3, dom-serializer 2.0.0, downshift 9.0.10, dunder-proto 1.0.1, dvtng/react-loading-skeleton 3.5.0, eastasianwidth 0.2.0, einaros/ws 8.18.3, emittery 0.13.1, encoding-sniffer 0.2.1, enhanced-resolve 5.18.3, envinfo 7.19.0, enzymejs 1.0.7, err-code 2.0.3, error 7.2.1, error-stack-parser 2.1.4, es-abstract 1.24.0, es-define-property 1.0.1, es-errors 1.3.0, es-iterator-helpers 1.2.1, es-module-lexer 1.7.0, es-object-atoms 1.1.1, es-set-tostringtag 2.1.0, es-shim-unscopables 1.1.0, es-to-primitive 1.3.0, escalade 3.2.0, ESLint 9.38.0, eslint-config-prettier 10.1.8, eslint-plugin-prettier 5.5.4, eslint-plugin-react-hooks 7.0.1, eslint-webpack-plugin 5.0.2, eventemitter3 5.0.1, exit-x 0.2.2, expect 30.2.0, facebookhermes 0.25.1, fast-glob 3.3.3, fast_array_intersect 1.1.0, fastcache v1.12.2, fastest-levenshtein 1.0.16, fatih-color v1.18.0, fdir 6.5.0, felixge/httpsnoop v1.0.4, file-entry-cache 8.0.0, file-selector 2.1.2, fill-range 7.1.1, flat-cache 4.0.1, fork-ts-checker-webpack-plugin 9.1.0, fsevents 2.3.3, function-bind 1.1.2, function.prototype.name 1.1.8, functions-have-names 1.2.3, generator-function 2.0.1, geotiff 2.1.3, get-document 1.0.0, get-intrinsic 1.3.1, get-proto 1.0.1, get-symbol-description 1.1.0, get-user-locale 3.0.0, getkin/kin-openapi v0.133.0, github.com/antihax/optional 1.0.0, github.com/clipperhouse/stringish v0.1.1, github.com/go-viper/mapstructure v2.4.0, github.com/olekukonko/cat 20250911-snapshot-50322a06, github.com/olekukonko/ll 20260115-snapshot-9e59c228, github.com/rivo/uniseg v0.4.7, globalthis 1.0.4, go humanize 1.0.1, Go Testify v1.11.1, go-restful v3.11.0, go.uber.org/goleak v1.3.0, go.yaml.in/yaml/v2 v3.0.4, goccy/go-json v0.10.5, goccy/go-yaml v1.17.1, goconvey 20190121-snapshot-044398e4, golang-jwt/jwt v5.3.0, gookit/color v1.5.4, gopd 1.2.0, graphemer 1.4.0, hamba/avro v2.30.0, has 1.0.4, has-bigints 1.1.0, has-property-descriptors 1.0.2, has-proto 1.2.0, has-symbols 1.1.0, has-tostringtag 1.0.2, hashicorp/go-hclog v1.6.3, hasown 2.0.2, highlight-words-core 1.2.3, html-encoding-sniffer 4.0.0, html-parse-stringify v3.0.1, htmlparser2 10.0.0, http-parser-js 0.5.10, https-proxy-agent 7.0.6, i18next 25.6.0, i18next-browser-languagedetector 8.2.0, ianstormtaylor/slate 0.2.115, ianstormtaylor/slate 0.2.9, ianstormtaylor/slate 0.47.9, immutable-js 5.1.4, import-fresh 3.3.1, import-local 3.2.0, imports-loader 5.0.0, inline-style-prefixer 7.0.1, internal-slot 1.1.0, interpret 3.1.1, invopop/jsonschema v0.13.0, ipaddress 10.0.1, is-array-buffer 3.0.5, is-async-function 2.1.1, is-bigint 1.1.0, is-boolean-object 1.2.2, is-callable 1.2.7, is-core-module 2.16.1, is-data-view 1.0.2, is-date-object 1.1.0, is-finalizationregistry 1.1.1, is-generator-function 1.1.2, is-in-browser 1.1.3, is-map 2.0.3, is-mobile 5.0.0, is-negative-zero 2.0.3, is-number-object 1.1.1, is-regex 1.2.1, is-set 2.0.3, is-shared-array-buffer 1.0.4, is-string 1.1.1, is-symbol 1.1.1, is-typed-array 1.1.15, is-weakmap 2.0.2, is-weakref 1.1.1, is-weakset 2.0.4, isomorphic-base64 1.0.2, iterator.prototype 1.1.5, JedWatson/react-select 5.10.2, Jest from Facebook 30.2.0, jest-changed-files 30.2.0, jest-config 30.2.0, jest-diff 30.2.0, jest-each 30.2.0, jest-environment-jsdom 30.2.0, jest-environment-node 30.2.0, jest-haste-map 30.2.0, jest-leak-detector 30.2.0, jest-matcher-utils 30.2.0, jest-message-util 30.2.0, jest-pnp-resolver 1.2.3, jest-regex-util 30.0.1, jest-resolve 30.2.0, jest-resolve-dependencies 30.2.0, jest-runner 30.2.0, jest-runtime 30.2.0, jest-snapshot 30.2.0, jest-util 29.7.0, jest-util 30.2.0, jest-validate 30.2.0, jest-worker 29.7.0, jest-worker 30.2.0, jQuery 3.7.1, js-xss 1.0.15, jsdoc-type-pratt-parser 6.10.0, jsdom 26.1.0, jsesc 3.1.0, JSHTTP's negotiator 1.0.0, jsjest 30.2.0, jsonc-parser 3.3.1, jsx-ast-utils 3.3.5, keyv 4.5.4, klauspost-cpuid v2.3.0, klauspost/asmfmt v1.3.2, kr/pretty v0.3.1, lithammer/fuzzysearch v1.1.8, ljharb/object.assign 4.1.7, loader-runner 4.3.1, Lodash 4.17.23, longest-streak 3.1.0, lz-string 1.5.0, mailru/easyjson v0.9.0, make-dir 4.0.0, markdown-table 3.0.4, marked-mangle 1.1.12, markedjs 16.3.0, math-intrinsics 1.1.0, mattn-go-colorable v0.1.14, mattn-go-isatty v0.0.20, mattn-go-runewidth v0.0.19, mdast-util-find-and-replace 3.0.2, mdast-util-from-markdown 2.0.2, mdast-util-frontmatter 2.0.1, mdast-util-gfm 3.1.0, mdast-util-gfm-autolink-literal 2.0.1, mdast-util-gfm-footnote 2.1.0, mdast-util-gfm-strikethrough 2.0.0, mdast-util-gfm-table 2.0.0, mdast-util-gfm-task-list-item 2.0.0, mdast-util-phrasing 4.1.0, mdast-util-to-markdown 2.1.2, mdast-util-to-string 4.0.0, memoize 10.2.0, micro-memoize 4.2.0, micromark 4.0.2, micromark-core-commonmark 2.0.3, micromark-extension-frontmatter 2.0.0, micromark-extension-gfm 3.0.0, micromark-extension-gfm-autolink-literal 2.1.0, micromark-extension-gfm-footnote 2.1.0, micromark-extension-gfm-strikethrough 2.1.0, micromark-extension-gfm-table 2.1.1, micromark-extension-gfm-tagfilter 2.0.0, micromark-extension-gfm-task-list-item 2.1.0, micromark-factory-destination 2.0.1, micromark-factory-label 2.0.1, micromark-factory-space 2.0.1, micromark-factory-title 2.0.1, micromark-factory-whitespace 2.0.1, micromark-util-character 2.1.1, micromark-util-chunked 2.0.1, micromark-util-classify-character 2.0.1, micromark-util-combine-extensions 2.0.1, micromark-util-decode-numeric-character-reference 2.0.2, micromark-util-decode-string 2.0.1, micromark-util-encode 2.0.1, micromark-util-html-tag-name 2.0.1, micromark-util-normalize-identifier 2.0.1, micromark-util-resolve-all 2.0.1, micromark-util-sanitize-uri 2.0.1, micromark-util-subtokenize 2.1.0, micromark-util-symbol 2.0.1, micromark-util-types 2.0.2, micromatch 4.0.8, micromatch/braces 3.0.3, mimic-function 5.0.1, minimist 1.2.8, minipass-fetch 4.0.1, minizlib 3.1.0, moment-timezone 0.5.47, moment/moment 2.30.1, monaco-editor 0.34.1, napi-postinstall 0.3.4, natural-compare 1.4.0, ncruces/go-strftime v0.1.9, node-abort-controller 3.1.1, node-addon-api 7.1.1, node-error-ex 1.3.4, node-fs-extra 10.1.0, node-gyp 11.5.0, node-html-entities 2.6.0, node-http-proxy-agent 7.0.2, node-ignore 5.3.2, node-ignore 7.0.5, node-jsonfile 6.2.0, node-releases 2.0.26, nodeca/pako 2.1.0, nopt 8.1.0, nwsapi 2.2.22, object-deep-merge 2.0.0, object-inspect 1.13.4, object-is 1.1.6, object.entries 1.1.9, object.fromentries 2.0.8, object.values 1.2.1, olekukonko-tablewriter v1.1.3, olekukonko/ts 20171002-snapshot-78ecb042, optionator 0.9.4, own-keys 1.0.1, p-map 7.0.3, PapaParse 5.5.3, parse-headers 2.0.6, parse-imports-exports 0.2.4, parse-statements 1.0.11, parse5 7.1.0, parse5 7.1.2, parse5 7.3.0, path-to-regexp 1.9.0, picomatch 4.0.3, pirates 4.0.7, portfinder 1.0.38, possible-typed-array-names 1.1.0, PostCSS 8.5.6, postcss-modules-local-by-default 4.2.0, postcss-selector-parser 7.1.0, Prettier IO 3.6.2, pretty-format 30.2.0, PrismJS 1.30.0, pterm/pterm v0.12.82, Punycode.js 2.3.1, pure-rand 7.0.1, quick-lru 6.1.2, Raynos/for-each 0.3.5, rbush 4.0.1, rc-overflow 1.5.0, rc-resize-observer 1.4.3, rc-util 5.44.4, React from Facebook 18.3.1, react-calendar 6.0.0, react-colorful 5.6.1, react-custom-scrollbars-2 4.5.0, react-data-grid 7.0.0-beta.56, react-dom 18.3.1, react-dropzone/react-dropzone 14.3.8, react-from-dom 0.7.5, react-highlight-words 0.21.0, react-hook-form 7.65.0, react-i18next 15.7.4, react-inlinesvg 4.2.0, react-is 18.2.0, react-is 18.3.1, react-router-dom 5.3.4, react-table 7.8.0, react-window 1.8.11, reactredux 9.2.0, readdirp 4.1.2, Redux JS 5.0.1, reflect.getprototypeof 1.0.10, regexp.prototype.flags 1.5.4, reserved-identifiers 1.2.0, reusify 1.1.0, rrweb-cssom 0.8.0, rtl-css-js 1.16.1, safe-array-concat 1.1.3, safe-push-apply 1.0.0, safe-regex-test 1.1.0, samccone/chrome-trace-event 1.0.4, samsonjs/format 0.2.2, sass 1.93.2, scheduler 0.23.2, schema-utils 3.3.0, schema-utils 4.3.3, selection-is-backward 1.0.0, set-function-length 1.2.2, set-function-name 2.0.2, set-proto 1.0.0, side-channel 1.1.0, side-channel-list 1.0.0, side-channel-map 1.0.1, side-channel-weakmap 1.0.2, sindresorhus/globals 14.0.0, sindresorhus/globals 16.4.0, socks 2.8.7, socks-proxy-agent 8.0.5, spdx-expression-parse.js 4.0.0, stack-generator 2.0.10, stack-utils 2.0.6, stackframe 1.3.4, stacktrace-gps 3.1.2, stacktrace-js v2.0.2, stoewer/go-strcase v1.3.1, stop-iteration-iterator 1.1.0, stretchr/objx v0.5.2, string-width 5.1.2, string.prototype.matchall 4.0.12, string.prototype.trim 1.2.10, string.prototype.trimend 1.0.9, string.prototype.trimstart 1.0.8, Strip ANSI 7.1.2, style-loader 4.0.0, stylis 4.2.0, stylis 4.3.6, swc-loader 0.2.6, tabbable 6.3.0, tapable 2.3.0, terser-webpack-plugin 5.3.14, tidwall/gjson v1.14.2, tidwall/sjson v1.2.5, tiny-invariant 1.3.3, tiny-warning 0.0.3, TinyColor 1.6.0, tinyglobby 0.2.15, tldts 6.1.86, tldts-core 6.1.86, to-valid-identifier 1.0.0, toggle-selection 1.0.6, tr46 5.1.1, ts-api-utils 2.1.0, ts-node 10.9.2, tsconfig-paths 4.2.0, typed-array-buffer 1.0.3, typed-array-byte-length 1.0.3, typed-array-byte-offset 1.0.4, typed-array-length 1.0.7, typescript-eslint 8.46.2, UAParser.js 1.0.41, un-ts/synckit 0.11.11, unbox-primitive 1.1.0, undici 7.16.0, undici-types 7.16.0, unist-util-is 6.0.1, unist-util-stringify-position 4.0.0, unist-util-visit 5.0.0, unist-util-visit-parents 6.0.2, universalify 2.0.1, unrs-resolver 1.11.1, update-browserslist-db 1.1.4, uplot 1.6.32, urfave-cli v1.22.17, use-isomorphic-layout-effect 1.2.1, use-sync-external-store 1.6.0, uuid 11.1.0, uwrap 0.1.2, v8-compile-cache-lib 3.0.1, w3c-xmlserializer 5.0.0, watchpack 2.4.4, webpack-cli 6.0.1, webpack-contrib/sass-loader 16.0.6, webpack-merge 6.0.1, webpack-sources 3.3.3, webpack-virtual-modules 0.6.2, whatwg-encoding 3.1.1, whatwg-mimetype 4.0.0, whatwg-url 14.2.0, which-boxed-primitive 1.1.1, which-builtin-type 1.2.1, which-collection 1.0.2, which-typed-array 1.1.19, word-wrap 1.2.5, wrap-ansi 8.1.0, xo/terminfo 20220910-snapshot-abceb7e1, yaml for Go v3.0.1, yannickcr/eslint-plugin-react 7.37.5, yargs 17.7.2, yuin/goldmark v1.4.13, zod 4.1.12, zod 4.3.6, zod-validation-error 4.0.2, zstddec 0.1.0, zwitch 2.0.4) The MIT License =============== @@ -7632,7 +7003,7 @@ THE SOFTWARE --- MIT License -(expressjs/mime-types 2.1.35) +(jshttp/mime-types 2.1.35) (The MIT License) @@ -7685,44 +7056,6 @@ THE SOFTWARE --- -MIT License -(jsbn 1.1.0) - -Upstream-Contact: https://github.com/andyperlitch/jsbn/issues -Source: https://github.com/andyperlitch/jsbn#readme - -Files: * -Copyright: 2017 Tom Wu -License: Expat - -Files: debian/* -Copyright: 2017 Pirate Praveen -License: Expat - -License: Expat - -Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation files - (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, - publish, distribute, sublicense, and/or sell copies of the Software, - and to permit persons to whom the Software is furnished to do so, - subject to the following conditions: - . - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - . - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE - ---- - MIT License (react-immutable-proptypes 2.2.0) @@ -7892,25 +7225,25 @@ MIT License Copyright (c) 2013 Dominic Tarr -Permission is hereby granted, free of charge, -to any person obtaining a copy of this software and -associated documentation files (the "Software"), to -deal in the Software without restriction, including -without limitation the rights to use, copy, modify, -merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom -the Software is furnished to do so, +Permission is hereby granted, free of charge, +to any person obtaining a copy of this software and +associated documentation files (the "Software"), to +deal in the Software without restriction, including +without limitation the rights to use, copy, modify, +merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom +the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR -ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR +ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE --- @@ -8050,33 +7383,6 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE --- -MIT License -(node-mkdirp 1.0.4) - -Copyright James Halliday (mail@substack.net) and Isaac Z. Schlueter (i@izs.me) - -This project is free software released under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE - ---- - MIT License (css-in-js-utils 3.1.0) @@ -8213,7 +7519,7 @@ SOFTWARE --- MIT License -(aggregate-error 3.1.0, ansi-styles 3.2.1, ansi-styles 5.2.0, ansi-styles v4.3.0, callsites 3.1.0, camelcase 5.3.1, Chalk 2.4.2, Chalk 3.0.0, Chalk 4.1.2, clean-stack 2.2.0, detect-newline v3.1.0, env-paths 2.2.1, escape-string-regexp v2.0.0, has-flag 3.0.0, has-flag 4.0.0, indent-string v4.0.0, is-fullwidth-code-point 3.0.0, is-generator-fn 2.1.0, leven 3.1.0, mimic-fn 2.1.0, mimic-fn 3.1.0, npm-run-path 4.0.1, p-limit 2.3.0, p-locate 4.1.0, p-try 2.2.0, parent-module 1.0.1, path-exists 4.0.0, path-key 3.1.1, pkg-dir 4.2.0, redent 3.0.0, resolve-cwd 3.0.0, resolve-from 4.0.0, resolve-from 5.0.0, screenfull 5.2.0, shebang-regex 3.0.0, sindresorhus/globals 11.12.0, sindresorhus/slash v3.0.0, string-width 4.2.3, strip-bom 4.0.0, strip-final-newline 2.0.0, strip-indent v3.0.0, supports-color 5.5.0, supports-color v7.2.0, yn v3.1.1) +(ansi-styles 5.2.0, ansi-styles v4.3.0, callsites 3.1.0, camelcase 5.3.1, Chalk 4.1.2, detect-newline v3.1.0, env-paths 2.2.1, escape-string-regexp v2.0.0, has-flag 4.0.0, indent-string v4.0.0, is-fullwidth-code-point 3.0.0, is-generator-fn 2.1.0, leven 3.1.0, mimic-fn 2.1.0, npm-run-path 4.0.1, p-limit 2.3.0, p-locate 4.1.0, p-try 2.2.0, parent-module 1.0.1, path-exists 4.0.0, path-key 3.1.1, pkg-dir 4.2.0, redent 3.0.0, resolve-cwd 3.0.0, resolve-from 4.0.0, resolve-from 5.0.0, screenfull 5.2.0, shebang-regex 3.0.0, sindresorhus/slash v3.0.0, sindresorhus/supports-color v7.2.0, string-width 4.2.3, strip-bom 4.0.0, strip-final-newline 2.0.0, strip-indent v3.0.0, yn v3.1.1) MIT License @@ -8370,19 +7676,19 @@ MIT License Copyright (c) 2014 TJ Holowaychuk -Permission is hereby granted, free of charge, to any person obtaining a copy of this software -and associated documentation files (the 'Software'), to deal in the Software without restriction, -including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, +Permission is hereby granted, free of charge, to any person obtaining a copy of this software +and associated documentation files (the 'Software'), to deal in the Software without restriction, +including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all copies or substantial +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT -LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT +LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE --- @@ -8469,7 +7775,7 @@ DEALINGS IN THE SOFTWARE --- MIT License -(ansi-escapes 4.3.2, camelcase 6.3.0, escape-string-regexp 5.0.0, escape-string-regexp v4.0.0, execa 5.1.1, find-up v5.0.0, get-stream 6.0.1, import-fresh 3.3.0, is-stream 2.0.1, mem 8.1.1, p-limit 3.1.0, p-map 4.0.0, parse-json v5.2.0, sindresorhus/onetime v5.1.2, string-length 4.0.2, strip-json-comments 3.1.1, supports-color 8.1.1, wrap-ansi v7.0.0, yocto-queue 0.1.0) +(ansi-escapes 4.3.2, camelcase 6.3.0, escape-string-regexp 5.0.0, escape-string-regexp v4.0.0, execa 5.1.1, find-up v5.0.0, get-stream 6.0.1, is-stream 2.0.1, p-limit 3.1.0, parse-json v5.2.0, sindresorhus/onetime v5.1.2, sindresorhus/supports-color 8.1.1, string-length 4.0.2, strip-json-comments 3.1.1, wrap-ansi v7.0.0, yocto-queue 0.1.0) MIT License @@ -8619,17 +7925,6 @@ SOFTWARE --- -MIT License -(to-fast-properties 2.0.0) - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE - ---- - MIT License (imurmurhash 0.1.4) @@ -8704,6 +7999,33 @@ Permission is hereby granted, free of charge, to any person --- +MIT License +(i18next-pseudo 2.2.1) + +MIT License + +Copyright (c) 2020 Matt Boatman + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE + +--- + MIT License (jest-worker 27.5.1, pretty-format 27.5.1, react-is 16.13.1, react-is 17.0.2) @@ -8758,6 +8080,31 @@ THE SOFTWARE --- +MIT License +(patrickmn-go-cache 2.1.0) + +Copyright (c) 2012-2017 Patrick Mylund Nielsen and the go-cache contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE + +--- + MIT License (min-indent 1.0.1) @@ -8853,33 +8200,6 @@ Permission is hereby granted, free of charge, to any person obtaining a copy --- -MIT License -(moxystudio/node-cross-spawn 7.0.3) - -The MIT License (MIT) - -Copyright (c) 2018 Made With MOXY Lda - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE - ---- - MIT License (shebang-command 2.0.0) @@ -9392,7 +8712,7 @@ EXHIBIT A -Mozilla Public License. --- Mozilla Public License 2.0 -(DOMPurify 3.2.5, hashicorp-go-plugin v1.6.3, hashicorp-golang-lru v2.0.7, hashicorp-yamux v0.1.2) +(DOMPurify 3.3.0, hashicorp-go-plugin v1.7.0, hashicorp-golang-lru v2.0.7, hashicorp-yamux v0.1.2) Mozilla Public License Version 2.0 @@ -9426,12 +8746,12 @@ Version 2.0 means - a. + a. that the initial Contributor has attached the notice described in Exhibit B to the Covered Software; or - b. + b. that the Covered Software was made available under the terms of version 1.1 or earlier of the License, but not also under the terms of a Secondary @@ -9460,12 +8780,12 @@ Version 2.0 means any of the following: - a. + a. any file in Source Code Form that results from an addition to, deletion from, or modification of the contents of Covered Software; or - b. + b. any new file in Source Code Form that contains any Covered Software. @@ -9507,7 +8827,7 @@ Version 2.0 Each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license: - a. + a. under intellectual property rights (other than patent or trademark) Licensable by such Contributor to use, reproduce, make available, modify, @@ -9515,7 +8835,7 @@ Version 2.0 either on an unmodified basis, with Modifications, or as part of a Larger Work; and - b. + b. under Patent Claims of such Contributor to make, use, sell, offer for sale, have made, import, and otherwise transfer either its Contributions or its @@ -9536,18 +8856,18 @@ Version 2.0 or licensing of Covered Software under this License. Notwithstanding Section 2.1(b) above, no patent license is granted by a Contributor: - a. + a. for any code that a Contributor has removed from Covered Software; or - b. + b. for infringements caused by: (i) Your and any other third party's modifications of Covered Software, or (ii) the combination of its Contributions with other software (except as part of its Contributor Version); or - c. + c. under Patent Claims infringed by Covered Software in the absence of its Contributions. @@ -9602,7 +8922,7 @@ Version 2.0 If You distribute Covered Software in Executable Form then: - a. + a. such Covered Software must also be made available in Source Code Form, as described in Section 3.1, and You must inform recipients of the Executable @@ -9610,7 +8930,7 @@ Version 2.0 means in a timely manner, at a charge no more than the cost of distribution to the recipient; and - b. + b. You may distribute such Executable Form under the terms of this License, or sublicense it under different terms, provided that the license for the @@ -9871,7 +9191,7 @@ PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 --- The Unlicense -(fs-monkey 1.0.6, nano-css 5.6.2, react-universal-interface 0.6.2, react-use 17.6.0, robust-predicates 3.0.2, set-harmonic-interval 1.0.1, streamich/memfs 3.6.0, ts-easing 0.2.0) +(fs-monkey 1.1.0, nano-css 5.6.2, react-universal-interface 0.6.2, react-use 17.6.0, robust-predicates 3.0.2, set-harmonic-interval 1.0.1, streamich/memfs 3.5.3, ts-easing 0.2.0) The Unlicense ============= From ff47f486dde5159fc478696e4f22b7540a130aa2 Mon Sep 17 00:00:00 2001 From: dprizentsov Date: Thu, 26 Feb 2026 10:33:59 +0100 Subject: [PATCH 21/26] update test dependencies Signed-off-by: dprizentsov --- grafana/rmf-app/go.sum | 3 +++ 1 file changed, 3 insertions(+) diff --git a/grafana/rmf-app/go.sum b/grafana/rmf-app/go.sum index d0fb85b5..83f09469 100644 --- a/grafana/rmf-app/go.sum +++ b/grafana/rmf-app/go.sum @@ -43,6 +43,7 @@ github.com/cpuguy83/go-md2man/v2 v2.0.7/go.mod h1:oOW0eioCTA6cOiMLiUPZOpcVxMig6N github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM= github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/elazarl/goproxy v1.7.2 h1:Y2o6urb7Eule09PjlhQRGNsqRfPmYI3KKQLFpCAV3+o= github.com/elazarl/goproxy v1.7.2/go.mod h1:82vkLNir0ALaW14Rc399OTTjyNREgmdL2cVoIbS6XaE= @@ -215,6 +216,7 @@ github.com/pierrec/lz4/v4 v4.1.23 h1:oJE7T90aYBGtFNrI8+KbETnPymobAhzRrR8Mu8n1yfU github.com/pierrec/lz4/v4 v4.1.23/go.mod h1:EoQMVJgeeEOMsCqCzqFm2O0cJvljX2nGZjcRIPL34O4= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRIccs7FGNTlIRMkT8wgtp5eCXdBlqhYGL6U= github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v1.22.0 h1:rb93p9lokFEsctTys46VnV1kLCDpVZ0a/Y92Vm0Zc6Q= github.com/prometheus/client_golang v1.22.0/go.mod h1:R7ljNsLXhuQXYZYtw6GAE9AZg8Y7vEW5scdCXrWRXC0= @@ -253,6 +255,7 @@ github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXl github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA= github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= +github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U= github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U= github.com/ugorji/go/codec v1.2.7 h1:YPXUKf7fYbp/y8xloBqZOw2qaVggbfwMlI8WM3wZUJ0= github.com/ugorji/go/codec v1.2.7/go.mod h1:WGN1fab3R1fzQlVQTkfxVtIBhWDRqOviHU95kRgeqEY= From 481166d53db317732052f01ef1643b06b78535d5 Mon Sep 17 00:00:00 2001 From: dprizentsov Date: Thu, 26 Feb 2026 11:21:38 +0100 Subject: [PATCH 22/26] remove version from NOTICES file Signed-off-by: dprizentsov --- grafana/rmf-app/NOTICES | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/grafana/rmf-app/NOTICES b/grafana/rmf-app/NOTICES index 02a97567..7d4eaeb7 100644 --- a/grafana/rmf-app/NOTICES +++ b/grafana/rmf-app/NOTICES @@ -1,6 +1,6 @@ NOTICES AND INFORMATION -IBM® RMF for z/OS Grafana plugin v1.x +IBM® RMF for z/OS Grafana plugin The IBM license agreement and any applicable information on the web download page for IBM products refers Licensee to this file for details @@ -29,7 +29,7 @@ limitation URLs or references to any third party websites. ===================================================================== -Start of Notices for IBM® RMF for z/OS Grafana plugin v1.x +Start of Notices for IBM® RMF for z/OS Grafana plugin ===================================================================== From 5eb9a57840353b672ad621d536d38d842ac778e4 Mon Sep 17 00:00:00 2001 From: dprizentsov Date: Mon, 2 Mar 2026 14:01:07 +0100 Subject: [PATCH 23/26] update NOTICES Signed-off-by: dprizentsov --- grafana/rmf-app/NOTICES | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/grafana/rmf-app/NOTICES b/grafana/rmf-app/NOTICES index 7d4eaeb7..f6ddf8a5 100644 --- a/grafana/rmf-app/NOTICES +++ b/grafana/rmf-app/NOTICES @@ -55,9 +55,9 @@ andylibrian/atomicgo-keyboard v0.2.9: https://github.com/andylibrian/atomicgo-ke ansi-escapes 4.3.2: https://github.com/sindresorhus/ansi-escapes : MIT License ansi-regex 5.0.1: https://github.com/sindresorhus/ansi-regex : MIT License ansi-regex 6.2.2: https://github.com/sindresorhus/ansi-regex : MIT License -ansi-styles 5.2.0: https://github.com/chalk/ansi-styles : MIT License -ansi-styles 6.2.3: https://github.com/chalk/ansi-styles : MIT License -ansi-styles v4.3.0: https://github.com/chalk/ansi-styles : MIT License +ansi-styles 5.2.0: https://github.com/sindresorhus/ansi-styles : MIT License +ansi-styles 6.2.3: https://github.com/sindresorhus/ansi-styles : MIT License +ansi-styles v4.3.0: https://github.com/sindresorhus/ansi-styles : MIT License ANTLR 4 4.13.2: https://github.com/antlr/antlr4-javascript : BSD 3-clause "New" or "Revised" License anymatch 3.1.3: https://github.com/es128/anymatch : ISC License Apache Thrift 0.22.0: http://thrift.apache.org/ : Apache License 2.0 @@ -867,7 +867,6 @@ moment-timezone 0.5.47: http://momentjs.com/timezone : MIT License monaco-editor 0.34.1: https://microsoft.github.io/monaco-editor/ : MIT License @monaco-editor/loader 1.6.1: https://github.com/suren-atoyan/monaco-loader.git : MIT License @monaco-editor/react 4.7.0: https://github.com/SurenAt93/monaco-react#readme : MIT License -mongodb/mongo-go-driver v1.17.6: https://github.com/mongodb/mongo-go-driver.git : Apache License 2.0 moo 0.5.2: https://github.com/tjvr/moo#readme : BSD 3-clause "New" or "Revised" License ms.js 2.1.3: https://github.com/guille/ms.js : MIT License mwitkow/go-conntrack 20190716-snapshot-2f068394: https://github.com/mwitkow/go-conntrack : Apache License 2.0 @@ -1515,7 +1514,7 @@ zwitch 2.0.4: https://github.com/wooorm/zwitch#readme : MIT License Licenses: Apache License 2.0 -(@eslint/config-array 0.21.1, @eslint/config-helpers 0.4.1, @eslint/core 0.12.0, @eslint/core 0.13.0, @eslint/core 0.14.0, @eslint/core 0.15.2, @eslint/core 0.16.0, @eslint/css 0.9.0, @eslint/json 0.12.0, @eslint/object-schema 2.1.7, @eslint/plugin-kit 0.2.8, @eslint/plugin-kit 0.3.5, @eslint/plugin-kit 0.4.0, @grafana/data 12.4.0, @grafana/e2e-selectors 12.4.0, @grafana/eslint-config 8.2.0, @grafana/faro-core 1.19.0, @grafana/faro-web-sdk 1.19.0, @grafana/i18n 12.4.0, @grafana/runtime 12.4.0, @grafana/schema 12.4.0, @grafana/tsconfig 2.0.1, @grafana/ui 12.4.0, @hello-pangea/dnd 18.0.1, @humanfs/core 0.19.1, @humanfs/node 0.16.7, @humanwhocodes/module-importer 1.0.1, @humanwhocodes/momoa 3.3.10, @humanwhocodes/retry 0.4.3, @internationalized/date 3.10.0, @internationalized/date 3.10.1, @internationalized/message 3.1.8, @internationalized/number 3.6.5, @internationalized/string 3.2.7, @openfeature/core 1.9.1, @openfeature/ofrep-core 2.0.0, @openfeature/ofrep-web-provider 0.3.5, @openfeature/react-sdk 1.2.1, @opentelemetry/api 1.9.0, @opentelemetry/api-logs 0.202.0, @opentelemetry/core 2.0.1, @opentelemetry/otlp-transformer 0.202.0, @opentelemetry/resources 2.0.1, @opentelemetry/sdk-logs 0.202.0, @opentelemetry/sdk-metrics 2.0.1, @opentelemetry/sdk-trace-base 2.0.1, @opentelemetry/semantic-conventions 1.37.0, @playwright/test 1.56.1, @react-aria/dialog 3.5.31, @react-aria/focus 3.21.2, @react-aria/focus 3.21.3, @react-aria/i18n 3.12.13, @react-aria/i18n 3.12.14, @react-aria/interactions 3.25.6, @react-aria/interactions 3.26.0, @react-aria/overlays 3.30.0, @react-aria/overlays 3.31.0, @react-aria/ssr 3.9.10, @react-aria/utils 3.31.0, @react-aria/utils 3.32.0, @react-aria/visually-hidden 3.8.28, @react-aria/visually-hidden 3.8.29, @react-stately/flags 3.1.2, @react-stately/overlays 3.6.20, @react-stately/overlays 3.6.21, @react-stately/utils 3.10.8, @react-stately/utils 3.11.0, @react-types/button 3.14.1, @react-types/dialog 3.5.22, @react-types/overlays 3.9.2, @react-types/shared 3.32.1, @swc/core 1.14.0, @swc/core-darwin-arm64 1.14.0, @swc/core-darwin-x64 1.14.0, @swc/core-linux-arm-gnueabihf 1.14.0, @swc/core-linux-arm64-gnu 1.14.0, @swc/core-linux-arm64-musl 1.14.0, @swc/core-linux-x64-gnu 1.14.0, @swc/core-linux-x64-musl 1.14.0, @swc/core-win32-arm64-msvc 1.14.0, @swc/core-win32-ia32-msvc 1.14.0, @swc/core-win32-x64-msvc 1.14.0, @swc/counter 0.1.3, @swc/helpers 0.5.17, @swc/types 0.1.25, @webassemblyjs/leb128 1.13.2, @xtuc/long 4.2.2, allegro/bigcache 20190220-snapshot-e24eb225, Apache Thrift 0.22.0, aria-query 5.3.0, aria-query 5.3.2, baseline-browser-mapping 2.8.20, bufbuild/protocompile v0.14.1, client_golang v1.23.2, cockroachdb/apd v3.2.1, containerd/console v1.0.5, coveo/exponential-backoff 3.1.3, detect-libc 1.0.3, doctrine v2.1.0, DOMPurify 3.3.0, envoyproxy/go-control-plane 20251024-snapshot-75eaa193, envoyproxy/go-control-plane envoy/v1.35.0, envoyproxy/go-control-plane ratelimit/v0.1.0, envoyproxy/protoc-gen-validate 1.2.1, eslint-visitor-keys 3.4.3, eslint-visitor-keys 4.2.1, fast-diff 1.3.0, FlatBuffers 25.12.19, github.com/apache/arrow-go v18.5.1-rc0, github.com/bufbuild/protovalidate-go v0.12.0, github.com/cncf/xds 20251022-snapshot-0feb6915, github.com/google/cel-spec v0.24.0, github.com/grafana/otel-profiling-go v0.5.1, github.com/grafana/pyroscope-go godeltaprof/v0.1.9, go-jose v4.1.3, go-logr/logr v1.4.3, go-logr/stdr v1.2.2, go-openapi/analysis v0.24.1, go-openapi/errors v0.22.4, go-openapi/jsonpointer v0.22.4, go-openapi/loads v0.23.2, go-openapi/spec v0.22.3, go-openapi/validate v0.25.1, go.opentelemetry.io/proto otlp/v1.9.0, go.yaml.in/yaml/v2 v2.4.3, godebug v1.1.0, gogo/googleapis v1.4.1, golang/glog v1.2.5, google-cloud-go compute/metadata/v0.9.0, google-cloud-go v0.121.0, google-gofuzz v1.0.0, google/cel-go v0.25.0, google/gnostic-models v0.7.0, googleapis/go-genproto 20251202-snapshot-ff82c1b0, GoogleCloudPlatform/opentelemetry-operations-go detectors/gcp/v1.30.0, grafana/grafana-plugin-sdk-go v0.251.0, grpc-ecosystem/go-grpc-middleware providers/prometheus/v1.1.0, grpc-ecosystem/go-grpc-middleware v2.3.3, grpc-go v1.78.0-dev, harmony-reflect v1.6.2, human-signals 2.1.0, jhump/protoreflect v1.17.0, jsonreference v0.21.4, k8s.io/kube-openapi 20260127-snapshot-a19766b6, k8s.io/utils 20240711-snapshot-18e509b5, lerc 3.0.0, Long.js 5.3.2, magefile/mage v1.15.0, matttproud-golang_protobuf_extensions v1.0.1, minio/c2goasm 20190812-snapshot-36a3d3bb, modern-go/concurrent 20180305-snapshot-bacd9c7e, modern-go/reflect2 v1.0.2, mongodb/mongo-go-driver v1.17.6, mwitkow/go-conntrack 20190716-snapshot-2f068394, nodejs-walker 1.0.8, oklog/run v1.1.0, oklog/ulid v1.3.1, open-telemetry/opentelemetry-go exporters/otlp/otlptrace/otlptracegrpc/v1.39.0, open-telemetry/opentelemetry-go exporters/otlp/otlptrace/v1.39.0, open-telemetry/opentelemetry-go metric/v1.40.0, open-telemetry/opentelemetry-go sdk/metric/v1.40.0, open-telemetry/opentelemetry-go sdk/v1.40.0, open-telemetry/opentelemetry-go trace/v1.40.0, open-telemetry/opentelemetry-go v1.40.0, open-telemetry/opentelemetry-go-contrib detectors/gcp/v1.38.0, open-telemetry/opentelemetry-go-contrib instrumentation/google.golang.org/grpc/otelgrpc/v0.64.0, open-telemetry/opentelemetry-go-contrib instrumentation/net/http/httptrace/otelhttptrace/v0.64.0, open-telemetry/opentelemetry-go-contrib instrumentation/net/http/otelhttp/v0.64.0, open-telemetry/opentelemetry-go-contrib propagators/jaeger/v1.39.0, open-telemetry/opentelemetry-go-contrib samplers/jaegerremote/v0.33.0, open-telemetry/opentelemetry-go-instrumentation sdk/v1.2.1, playwright 1.56.1, pmezard-go-difflib 20190219-snapshot-5d4384ee, prometheus-client_model v0.6.2, prometheus-common v0.67.5, prometheus-procfs v0.16.1, ReactiveX RxJS 7.8.2, sigs.k8s.io/randfill v1.0.0, spiffe/go-spiffe v2.6.0, strfmt v0.25.0, substrait-io/substrait v0.78.1, substrait-io/substrait-go v7.2.2, swag conv/v0.25.4, swag fileutils/v0.25.1, swag jsonname/v0.25.4, swag jsonutils/v0.25.4, swag loading/v0.25.4, swag mangling/v0.25.1, swag stringutils/v0.25.4, swag typeutils/v0.25.4, swag v0.23.1, swag yamlutils/v0.25.4, TypeScript 5.9.2, TypeScript 5.9.3, Unknwon-log 20200308-snapshot-929b1006, Unknwon/bra 20200517-snapshot-1e3013ec, Unknwon/com v1.0.1, watchman 2.0.2, watchman 2.1.1, web-vitals 4.2.4, web-worker 1.5.0, websocket-driver-node 0.7.4, websocket-extensions-node 0.1.4, wk8/go-ordered-map v2.1.8, xml-name-validator 5.0.0, yaml for Go v2.4.0, yaml for Go v3.0.1) +(@eslint/config-array 0.21.1, @eslint/config-helpers 0.4.1, @eslint/core 0.12.0, @eslint/core 0.13.0, @eslint/core 0.14.0, @eslint/core 0.15.2, @eslint/core 0.16.0, @eslint/css 0.9.0, @eslint/json 0.12.0, @eslint/object-schema 2.1.7, @eslint/plugin-kit 0.2.8, @eslint/plugin-kit 0.3.5, @eslint/plugin-kit 0.4.0, @grafana/data 12.4.0, @grafana/e2e-selectors 12.4.0, @grafana/eslint-config 8.2.0, @grafana/faro-core 1.19.0, @grafana/faro-web-sdk 1.19.0, @grafana/i18n 12.4.0, @grafana/runtime 12.4.0, @grafana/schema 12.4.0, @grafana/tsconfig 2.0.1, @grafana/ui 12.4.0, @hello-pangea/dnd 18.0.1, @humanfs/core 0.19.1, @humanfs/node 0.16.7, @humanwhocodes/module-importer 1.0.1, @humanwhocodes/momoa 3.3.10, @humanwhocodes/retry 0.4.3, @internationalized/date 3.10.0, @internationalized/date 3.10.1, @internationalized/message 3.1.8, @internationalized/number 3.6.5, @internationalized/string 3.2.7, @openfeature/core 1.9.1, @openfeature/ofrep-core 2.0.0, @openfeature/ofrep-web-provider 0.3.5, @openfeature/react-sdk 1.2.1, @opentelemetry/api 1.9.0, @opentelemetry/api-logs 0.202.0, @opentelemetry/core 2.0.1, @opentelemetry/otlp-transformer 0.202.0, @opentelemetry/resources 2.0.1, @opentelemetry/sdk-logs 0.202.0, @opentelemetry/sdk-metrics 2.0.1, @opentelemetry/sdk-trace-base 2.0.1, @opentelemetry/semantic-conventions 1.37.0, @playwright/test 1.56.1, @react-aria/dialog 3.5.31, @react-aria/focus 3.21.2, @react-aria/focus 3.21.3, @react-aria/i18n 3.12.13, @react-aria/i18n 3.12.14, @react-aria/interactions 3.25.6, @react-aria/interactions 3.26.0, @react-aria/overlays 3.30.0, @react-aria/overlays 3.31.0, @react-aria/ssr 3.9.10, @react-aria/utils 3.31.0, @react-aria/utils 3.32.0, @react-aria/visually-hidden 3.8.28, @react-aria/visually-hidden 3.8.29, @react-stately/flags 3.1.2, @react-stately/overlays 3.6.20, @react-stately/overlays 3.6.21, @react-stately/utils 3.10.8, @react-stately/utils 3.11.0, @react-types/button 3.14.1, @react-types/dialog 3.5.22, @react-types/overlays 3.9.2, @react-types/shared 3.32.1, @swc/core 1.14.0, @swc/core-darwin-arm64 1.14.0, @swc/core-darwin-x64 1.14.0, @swc/core-linux-arm-gnueabihf 1.14.0, @swc/core-linux-arm64-gnu 1.14.0, @swc/core-linux-arm64-musl 1.14.0, @swc/core-linux-x64-gnu 1.14.0, @swc/core-linux-x64-musl 1.14.0, @swc/core-win32-arm64-msvc 1.14.0, @swc/core-win32-ia32-msvc 1.14.0, @swc/core-win32-x64-msvc 1.14.0, @swc/counter 0.1.3, @swc/helpers 0.5.17, @swc/types 0.1.25, @webassemblyjs/leb128 1.13.2, @xtuc/long 4.2.2, allegro/bigcache 20190220-snapshot-e24eb225, Apache Thrift 0.22.0, aria-query 5.3.0, aria-query 5.3.2, baseline-browser-mapping 2.8.20, bufbuild/protocompile v0.14.1, client_golang v1.23.2, cockroachdb/apd v3.2.1, containerd/console v1.0.5, coveo/exponential-backoff 3.1.3, detect-libc 1.0.3, doctrine v2.1.0, DOMPurify 3.3.0, envoyproxy/go-control-plane 20251024-snapshot-75eaa193, envoyproxy/go-control-plane envoy/v1.35.0, envoyproxy/go-control-plane ratelimit/v0.1.0, envoyproxy/protoc-gen-validate 1.2.1, eslint-visitor-keys 3.4.3, eslint-visitor-keys 4.2.1, fast-diff 1.3.0, FlatBuffers 25.12.19, github.com/apache/arrow-go v18.5.1-rc0, github.com/bufbuild/protovalidate-go v0.12.0, github.com/cncf/xds 20251022-snapshot-0feb6915, github.com/google/cel-spec v0.24.0, github.com/grafana/otel-profiling-go v0.5.1, github.com/grafana/pyroscope-go godeltaprof/v0.1.9, go-jose v4.1.3, go-logr/logr v1.4.3, go-logr/stdr v1.2.2, go-openapi/analysis v0.24.1, go-openapi/errors v0.22.4, go-openapi/jsonpointer v0.22.4, go-openapi/loads v0.23.2, go-openapi/spec v0.22.3, go-openapi/validate v0.25.1, go.opentelemetry.io/proto otlp/v1.9.0, go.yaml.in/yaml/v2 v2.4.3, godebug v1.1.0, gogo/googleapis v1.4.1, golang/glog v1.2.5, google-cloud-go compute/metadata/v0.9.0, google-cloud-go v0.121.0, google-gofuzz v1.0.0, google/cel-go v0.25.0, google/gnostic-models v0.7.0, googleapis/go-genproto 20251202-snapshot-ff82c1b0, GoogleCloudPlatform/opentelemetry-operations-go detectors/gcp/v1.30.0, grafana/grafana-plugin-sdk-go v0.251.0, grpc-ecosystem/go-grpc-middleware providers/prometheus/v1.1.0, grpc-ecosystem/go-grpc-middleware v2.3.3, grpc-go v1.78.0-dev, harmony-reflect v1.6.2, human-signals 2.1.0, jhump/protoreflect v1.17.0, jsonreference v0.21.4, k8s.io/kube-openapi 20260127-snapshot-a19766b6, k8s.io/utils 20240711-snapshot-18e509b5, lerc 3.0.0, Long.js 5.3.2, magefile/mage v1.15.0, matttproud-golang_protobuf_extensions v1.0.1, minio/c2goasm 20190812-snapshot-36a3d3bb, modern-go/concurrent 20180305-snapshot-bacd9c7e, modern-go/reflect2 v1.0.2, mwitkow/go-conntrack 20190716-snapshot-2f068394, nodejs-walker 1.0.8, oklog/run v1.1.0, oklog/ulid v1.3.1, open-telemetry/opentelemetry-go exporters/otlp/otlptrace/otlptracegrpc/v1.39.0, open-telemetry/opentelemetry-go exporters/otlp/otlptrace/v1.39.0, open-telemetry/opentelemetry-go metric/v1.40.0, open-telemetry/opentelemetry-go sdk/metric/v1.40.0, open-telemetry/opentelemetry-go sdk/v1.40.0, open-telemetry/opentelemetry-go trace/v1.40.0, open-telemetry/opentelemetry-go v1.40.0, open-telemetry/opentelemetry-go-contrib detectors/gcp/v1.38.0, open-telemetry/opentelemetry-go-contrib instrumentation/google.golang.org/grpc/otelgrpc/v0.64.0, open-telemetry/opentelemetry-go-contrib instrumentation/net/http/httptrace/otelhttptrace/v0.64.0, open-telemetry/opentelemetry-go-contrib instrumentation/net/http/otelhttp/v0.64.0, open-telemetry/opentelemetry-go-contrib propagators/jaeger/v1.39.0, open-telemetry/opentelemetry-go-contrib samplers/jaegerremote/v0.33.0, open-telemetry/opentelemetry-go-instrumentation sdk/v1.2.1, playwright 1.56.1, pmezard-go-difflib 20190219-snapshot-5d4384ee, prometheus-client_model v0.6.2, prometheus-common v0.67.5, prometheus-procfs v0.16.1, ReactiveX RxJS 7.8.2, sigs.k8s.io/randfill v1.0.0, spiffe/go-spiffe v2.6.0, strfmt v0.25.0, substrait-io/substrait v0.78.1, substrait-io/substrait-go v7.2.2, swag conv/v0.25.4, swag fileutils/v0.25.1, swag jsonname/v0.25.4, swag jsonutils/v0.25.4, swag loading/v0.25.4, swag mangling/v0.25.1, swag stringutils/v0.25.4, swag typeutils/v0.25.4, swag v0.23.1, swag yamlutils/v0.25.4, TypeScript 5.9.2, TypeScript 5.9.3, Unknwon-log 20200308-snapshot-929b1006, Unknwon/bra 20200517-snapshot-1e3013ec, Unknwon/com v1.0.1, watchman 2.0.2, watchman 2.1.1, web-vitals 4.2.4, web-worker 1.5.0, websocket-driver-node 0.7.4, websocket-extensions-node 0.1.4, wk8/go-ordered-map v2.1.8, xml-name-validator 5.0.0, yaml for Go v2.4.0, yaml for Go v3.0.1) Apache License Version 2.0, January 2004 From 130552cb69f210029b927c3bcefb135676fbd7e1 Mon Sep 17 00:00:00 2001 From: Ramanath Shanbhag Date: Fri, 6 Mar 2026 13:19:59 +0530 Subject: [PATCH 24/26] doc updates for v2.0 Signed-off-by: Ramanath Shanbhag --- .../grafana/rmf-app/access_grafana_zosmf.html | 151 +- docs/grafana/rmf-app/alerts.html | 151 +- docs/grafana/rmf-app/apply_visualize.html | 163 +- docs/grafana/rmf-app/commonltr.css | 642 ------- docs/grafana/rmf-app/commonrtl.css | 692 ------- docs/grafana/rmf-app/context-help-map.xml | 24 +- docs/grafana/rmf-app/create_datasources.html | 179 +- docs/grafana/rmf-app/cshelp.html | 10 + docs/grafana/rmf-app/db_ovw.html | 283 --- .../grafana/rmf-app/define_grafana_zosmf.html | 159 +- docs/grafana/rmf-app/error_reports.html | 153 +- .../grafana/rmf-app/grafana_config_parms.html | 156 +- docs/grafana/rmf-app/grafana_via_zosmf.html | 153 +- docs/grafana/rmf-app/historical_data.html | 157 +- .../rmf-app/images/default_db_view.png | Bin 97238 -> 0 bytes docs/grafana/rmf-app/images/del.png | Bin 450 -> 0 bytes docs/grafana/rmf-app/images/import_db.png | Bin 2281 -> 0 bytes docs/grafana/rmf-app/images/reimport.png | Bin 1310 -> 0 bytes .../grafana/rmf-app/importing_dashboards.html | 195 ++ docs/grafana/rmf-app/index.html | 113 +- docs/grafana/rmf-app/indexTerms.html | 103 +- .../rmf-app/install_grafana_plugin.html | 197 +- .../rmf-app/integrating_dds_omegamon.html | 167 +- docs/grafana/rmf-app/license-3rd-party.txt | 72 +- .../oxygen-webhelp/app/{img => }/Copy.png | Bin .../app/{img => }/attention.svg | 0 .../oxygen-webhelp/app/{img => }/caution.svg | 0 .../rmf-app/oxygen-webhelp/app/commons.css | 51 + .../oxygen-webhelp/app/commons.css.map | 1 + .../rmf-app/oxygen-webhelp/app/commons.js | 3 + .../oxygen-webhelp/app/commons.js.LICENSE.txt | 88 + .../rmf-app/oxygen-webhelp/app/commons.js.map | 1 + .../rmf-app/oxygen-webhelp/app/config.js | 140 -- .../oxygen-webhelp/app/context-help.js | 2 + .../oxygen-webhelp/app/context-help.js.map | 1 + .../app/context-help/context-help-map.js | 2 +- .../app/context-help/context-help.js | 25 - .../oxygen-webhelp/app/core/expand.css | 30 - .../rmf-app/oxygen-webhelp/app/core/expand.js | 173 -- .../rmf-app/oxygen-webhelp/app/core/fonts.css | 4 - .../oxygen-webhelp/app/core/footer-fix.css | 16 - .../rmf-app/oxygen-webhelp/app/core/icons.css | 40 - .../oxygen-webhelp/app/core/permalink.css | 20 - .../oxygen-webhelp/app/core/permalink.js | 43 - .../oxygen-webhelp/app/core/polyfill.js | 11 - .../oxygen-webhelp/app/core/webhelp.css | 18 - .../oxygen-webhelp/app/core/webhelp.js | 594 ------ .../app/core/wh-bootstrap-fix.css | 145 -- .../oxygen-webhelp/app/core/wh-breadcrumb.css | 97 - .../oxygen-webhelp/app/core/wh-codeblock.js | 72 - .../oxygen-webhelp/app/core/wh-common.css | 147 -- .../app/core/wh-dom-sanitizer.js | 39 - .../oxygen-webhelp/app/core/wh-elements.css | 35 - .../oxygen-webhelp/app/core/wh-index-link.css | 37 - .../oxygen-webhelp/app/core/wh-modal.css | 127 -- .../core/wh-publication-logo-and-title.css | 244 --- .../app/core/wh-responsive-images.css | 14 - .../oxygen-webhelp/app/core/wh-search.css | 378 ---- .../oxygen-webhelp/app/core/wh-sticky.css | 23 - .../oxygen-webhelp/app/core/wh-sticky.js | 39 - .../oxygen-webhelp/app/core/wh-toc.css | 372 ---- .../app/core/wh-tools-and-navigation.css | 44 - .../oxygen-webhelp/app/core/wh-top-menu.js | 65 - .../app/core/wh-welcome-area.css | 25 - .../oxygen-webhelp/app/{img => }/danger.svg | 0 .../oxygen-webhelp/app/{img => }/dot.png | Bin .../app/facets/search-facets.json | 3 + .../oxygen-webhelp/app/{img => }/fastpath.svg | 0 .../oxygen-webhelp/app/image-map/image-map.js | 16 - .../app/{img => }/important.svg | 0 .../oxygen-webhelp/app/indexterms-page.css | 14 - .../oxygen-webhelp/app/indexterms-page.js | 14 - .../rmf-app/oxygen-webhelp/app/indexterms.css | 2 + .../oxygen-webhelp/app/indexterms.css.map | 1 + .../rmf-app/oxygen-webhelp/app/indexterms.js | 2 + .../oxygen-webhelp/app/indexterms.js.map | 1 + .../app/indexterms/indexterms.css | 91 - .../app/jquery-private/jquery-private.js | 8 - .../app/jquery-private/jquery.bootpag.amd.js | 4 - .../jquery-private/jquery.highlight.amd.js | 12 - .../jquery-private/jquery.rwdImageMaps.amd.js | 4 - .../app/{img => }/link-icon.png | Bin .../app/localization/localization.js | 21 - .../app/localization/strings.js | 12 +- .../rmf-app/oxygen-webhelp/app/main-page.css | 11 - .../rmf-app/oxygen-webhelp/app/main-page.js | 24 - .../rmf-app/oxygen-webhelp/app/main.css | 2 + .../rmf-app/oxygen-webhelp/app/main.css.map | 1 + .../rmf-app/oxygen-webhelp/app/main.js | 2 + .../rmf-app/oxygen-webhelp/app/main.js.map | 1 + .../json/grafana_via_zosmf-d335e197.js | 1 - .../app/nav-links/json/nav-links.js | 2 +- .../nav-links/json/prereq_zosmf-d335e216.js | 1 - .../app/nav-links/json/tocId-d415e254.js | 1 + .../app/nav-links/json/tocId-d415e276.js | 1 + .../app/nav-links/menu-loader.js | 363 ---- .../app/nav-links/nav-links.css | 115 -- .../oxygen-webhelp/app/nav-links/nav.js | 30 - .../app/nav-links/toc-loader.js | 327 ---- .../oxygen-webhelp/app/nav-links/tooltip.css | 122 -- .../oxygen-webhelp/app/{img => }/note.svg | 0 .../oxygen-webhelp/app/{img => }/notice.svg | 0 .../oxygen-webhelp/app/options/options.js | 31 - .../oxygen-webhelp/app/options/properties.js | 46 +- .../app/{core => }/oxygen-webhelp-icons.ttf | Bin .../oxygen-webhelp/app/{img => }/remember.svg | 0 .../app/{img => }/restriction.svg | 0 .../oxygen-webhelp/app/search-page.css | 13 - .../rmf-app/oxygen-webhelp/app/search-page.js | 24 - .../rmf-app/oxygen-webhelp/app/search.css | 2 + .../rmf-app/oxygen-webhelp/app/search.css.map | 1 + .../rmf-app/oxygen-webhelp/app/search.js | 2 + .../rmf-app/oxygen-webhelp/app/search.js.map | 1 + .../app/search/index/htmlFileInfoList.js | 4 +- .../app/search/index/index-1.js | 4 +- .../app/search/index/index-2.js | 4 +- .../app/search/index/index-3.js | 4 +- .../oxygen-webhelp/app/search/index/index.js | 41 +- .../app/search/index/keywords.js | 46 +- .../app/search/index/link-to-parent.js | 4 +- .../app/search/index/stopwords.js | 4 +- .../oxygen-webhelp/app/search/nwSearchFnt.js | 128 +- .../oxygen-webhelp/app/search/search-init.js | 22 - .../oxygen-webhelp/app/search/search.css | 48 - .../oxygen-webhelp/app/search/search.js | 790 -------- .../app/search/searchAutocomplete.js | 370 ---- .../app/search/searchHistoryItems.js | 176 -- .../app/side-notes/p-side-notes.css | 523 ----- .../oxygen-webhelp/app/{img => }/star.png | Bin .../app/{img => }/starsSmall.png | Bin .../app/template/template-module-loader.js | 62 - .../oxygen-webhelp/app/{img => }/tip.svg | 0 .../oxygen-webhelp/app/topic-page-basic.css | 10 - .../oxygen-webhelp/app/topic-page-print.css | 12 +- .../app/topic-page-print.css.map | 1 + .../oxygen-webhelp/app/topic-page-print.js | 0 .../rmf-app/oxygen-webhelp/app/topic-page.css | 17 - .../rmf-app/oxygen-webhelp/app/topic-page.js | 26 - .../rmf-app/oxygen-webhelp/app/topic.css | 8 + .../rmf-app/oxygen-webhelp/app/topic.css.map | 1 + .../rmf-app/oxygen-webhelp/app/topic.js | 2 + .../rmf-app/oxygen-webhelp/app/topic.js.map | 1 + .../oxygen-webhelp/app/topic/commonltr.css | 706 ------- .../oxygen-webhelp/app/topic/elements.css | 241 --- .../oxygen-webhelp/app/topic/print.css | 39 - .../app/topic/syntax-highlight.css | 60 - .../oxygen-webhelp/app/topic/topic.css | 26 - .../app/topic/wh-topic-content.css | 170 -- .../app/{img => }/troubleshooting.svg | 0 .../oxygen-webhelp/app/util/parseuri.js | 61 - .../rmf-app/oxygen-webhelp/app/util/util.js | 76 - .../oxygen-webhelp/app/{img => }/warning.svg | 0 .../lib/bootstrap/css/bootstrap.min.css | 7 - .../lib/bootstrap/js/bootstrap.bundle.min.js | 7 - .../lib/dom-purify/purify.min.js | 3 - .../jquery-bootpag/jquery.bootpag.LICENSE.txt | 21 - .../lib/jquery-bootpag/jquery.bootpag.min.js | 16 - .../lib/jquery-highlight/MIT-License.txt | 7 - .../jquery-highlight/jquery.highlight-3.js | 83 - .../lib/jquery-ui/jquery-ui.min.css | 7 - .../lib/jquery-ui/jquery-ui.min.js | 7 - .../lib/jquery/jquery-3.5.1.min.js | 2 - .../lib/jquery/jquery.MIT-License.txt | 9 - .../lib/maphighlight/jquery.maphilight.min.js | 2 - .../oxygen-webhelp/lib/requirejs/require.js | 5 - .../rwdImageMaps/jquery.rwdImageMaps.min.js | 11 - .../oxygen-webhelp/template/oxygen-gray.css | 56 +- docs/grafana/rmf-app/pdf/rmf_grafana.pdf | Bin 1157264 -> 1162707 bytes docs/grafana/rmf-app/pdf_guide.html | 149 +- docs/grafana/rmf-app/prereq_zosmf.html | 166 +- .../rmf-app/prometheus_sample_dashboards.html | 156 +- docs/grafana/rmf-app/query_lang.html | 227 +-- docs/grafana/rmf-app/rn.html | 486 ++--- docs/grafana/rmf-app/search.html | 116 +- docs/grafana/rmf-app/sitemap.xml | 87 + docs/grafana/rmf-app/ts_issues.html | 153 +- docs/grafana/rmf-app/update_plugin.html | 185 +- docs/grafana/rmf-app/variables.html | 174 +- docs/grafana/rmf-app/visual_grafana.html | 149 +- grafana/rmf-app/CHANGELOG.md | 6 + grafana/rmf-app/doc/src/conref.dita | 15 +- .../rmf-app/doc/src/create_datasources.dita | 4 - .../rmf-app/doc/src/importing_dashboards.dita | 49 + .../doc/src/install_grafana_plugin.dita | 14 +- .../doc/src/integrating_dds_omegamon.dita | 4 +- grafana/rmf-app/doc/src/pdf/rmf_grafana.pdf | Bin 1157264 -> 1162707 bytes .../doc/src/prometheus_sample_dashboards.dita | 6 +- grafana/rmf-app/doc/src/query_lang.dita | 56 +- grafana/rmf-app/doc/src/rmf_grafana.ditamap | 1 + grafana/rmf-app/doc/src/rn.dita | 332 +--- grafana/rmf-app/doc/src/temp/.job.xml | 1 - .../cfg/common/artwork/ISO_7010_W001.svg | 50 - .../OpenTopic/cfg/common/artwork/hand.gif | Bin 1067 -> 0 bytes .../OpenTopic/cfg/common/artwork/hand_rtl.gif | Bin 2100 -> 0 bytes .../OpenTopic/cfg/common/artwork/warning.gif | Bin 1156 -> 0 bytes .../doc/src/temp/access_grafana_zosmf.dita | 38 - grafana/rmf-app/doc/src/temp/alerts.dita | 17 - .../rmf-app/doc/src/temp/apply_visualize.dita | 135 -- grafana/rmf-app/doc/src/temp/conref.dita | 51 - .../doc/src/temp/create_datasources.dita | 130 -- grafana/rmf-app/doc/src/temp/db_ovw.dita | 142 -- .../doc/src/temp/define_grafana_zosmf.dita | 84 - .../doc/src/temp/ditaot.generated.ditaval | 4 - .../rmf-app/doc/src/temp/error_reports.dita | 67 - .../doc/src/temp/grafana_config_parms.dita | 137 -- .../doc/src/temp/grafana_via_zosmf.dita | 42 - .../rmf-app/doc/src/temp/historical_data.dita | 30 - .../doc/src/temp/install_grafana_plugin.dita | 187 -- .../rmf-app/doc/src/temp/prereq_zosmf.dita | 90 - .../temp/prometheus_sample_dashboards.dita | 54 - grafana/rmf-app/doc/src/temp/query_lang.dita | 128 -- .../rmf-app/doc/src/temp/rmf_grafana.ditamap | 4 - .../doc/src/temp/rmf_grafana_MERGED.xml | 1685 ----------------- grafana/rmf-app/doc/src/temp/rn.dita | 297 --- grafana/rmf-app/doc/src/temp/stage1.xml | 1685 ----------------- grafana/rmf-app/doc/src/temp/stage1.xml.pp | 1664 ---------------- .../doc/src/temp/subject_scheme.dictionary | 4 - grafana/rmf-app/doc/src/temp/subrelation.xml | 4 - grafana/rmf-app/doc/src/temp/ts_issues.dita | 47 - .../rmf-app/doc/src/temp/update_plugin.dita | 97 - .../rmf-app/doc/src/temp/usr.input.file.list | 1 - grafana/rmf-app/doc/src/temp/variables.dita | 87 - .../rmf-app/doc/src/temp/visual_grafana.dita | 32 - .../doc/src/templates/wh_template/header.xml | 105 +- .../src/templates/wh_template/header_old.xml | 51 + .../src/templates/wh_template/oxygen-gray.css | 56 +- grafana/rmf-app/doc/src/update_plugin.dita | 18 +- 227 files changed, 2712 insertions(+), 19392 deletions(-) delete mode 100644 docs/grafana/rmf-app/commonltr.css delete mode 100644 docs/grafana/rmf-app/commonrtl.css create mode 100644 docs/grafana/rmf-app/cshelp.html delete mode 100644 docs/grafana/rmf-app/db_ovw.html delete mode 100644 docs/grafana/rmf-app/images/default_db_view.png delete mode 100644 docs/grafana/rmf-app/images/del.png delete mode 100644 docs/grafana/rmf-app/images/import_db.png delete mode 100644 docs/grafana/rmf-app/images/reimport.png create mode 100644 docs/grafana/rmf-app/importing_dashboards.html rename docs/grafana/rmf-app/oxygen-webhelp/app/{img => }/Copy.png (100%) rename docs/grafana/rmf-app/oxygen-webhelp/app/{img => }/attention.svg (100%) rename docs/grafana/rmf-app/oxygen-webhelp/app/{img => }/caution.svg (100%) create mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/commons.css create mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/commons.css.map create mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/commons.js create mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/commons.js.LICENSE.txt create mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/commons.js.map delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/config.js create mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/context-help.js create mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/context-help.js.map delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/context-help/context-help.js delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/core/expand.css delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/core/expand.js delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/core/fonts.css delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/core/footer-fix.css delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/core/icons.css delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/core/permalink.css delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/core/permalink.js delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/core/polyfill.js delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/core/webhelp.css delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/core/webhelp.js delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/core/wh-bootstrap-fix.css delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/core/wh-breadcrumb.css delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/core/wh-codeblock.js delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/core/wh-common.css delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/core/wh-dom-sanitizer.js delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/core/wh-elements.css delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/core/wh-index-link.css delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/core/wh-modal.css delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/core/wh-publication-logo-and-title.css delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/core/wh-responsive-images.css delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/core/wh-search.css delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/core/wh-sticky.css delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/core/wh-sticky.js delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/core/wh-toc.css delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/core/wh-tools-and-navigation.css delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/core/wh-top-menu.js delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/core/wh-welcome-area.css rename docs/grafana/rmf-app/oxygen-webhelp/app/{img => }/danger.svg (100%) rename docs/grafana/rmf-app/oxygen-webhelp/app/{img => }/dot.png (100%) create mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/facets/search-facets.json rename docs/grafana/rmf-app/oxygen-webhelp/app/{img => }/fastpath.svg (100%) delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/image-map/image-map.js rename docs/grafana/rmf-app/oxygen-webhelp/app/{img => }/important.svg (100%) delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/indexterms-page.css delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/indexterms-page.js create mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/indexterms.css create mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/indexterms.css.map create mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/indexterms.js create mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/indexterms.js.map delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/indexterms/indexterms.css delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/jquery-private/jquery-private.js delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/jquery-private/jquery.bootpag.amd.js delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/jquery-private/jquery.highlight.amd.js delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/jquery-private/jquery.rwdImageMaps.amd.js rename docs/grafana/rmf-app/oxygen-webhelp/app/{img => }/link-icon.png (100%) delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/localization/localization.js delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/main-page.css delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/main-page.js create mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/main.css create mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/main.css.map create mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/main.js create mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/main.js.map delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/nav-links/json/grafana_via_zosmf-d335e197.js delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/nav-links/json/prereq_zosmf-d335e216.js create mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/nav-links/json/tocId-d415e254.js create mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/nav-links/json/tocId-d415e276.js delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/nav-links/menu-loader.js delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/nav-links/nav-links.css delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/nav-links/nav.js delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/nav-links/toc-loader.js delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/nav-links/tooltip.css rename docs/grafana/rmf-app/oxygen-webhelp/app/{img => }/note.svg (100%) rename docs/grafana/rmf-app/oxygen-webhelp/app/{img => }/notice.svg (100%) delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/options/options.js rename docs/grafana/rmf-app/oxygen-webhelp/app/{core => }/oxygen-webhelp-icons.ttf (100%) rename docs/grafana/rmf-app/oxygen-webhelp/app/{img => }/remember.svg (100%) rename docs/grafana/rmf-app/oxygen-webhelp/app/{img => }/restriction.svg (100%) delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/search-page.css delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/search-page.js create mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/search.css create mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/search.css.map create mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/search.js create mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/search.js.map delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/search/search-init.js delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/search/search.css delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/search/search.js delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/search/searchAutocomplete.js delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/search/searchHistoryItems.js delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/side-notes/p-side-notes.css rename docs/grafana/rmf-app/oxygen-webhelp/app/{img => }/star.png (100%) rename docs/grafana/rmf-app/oxygen-webhelp/app/{img => }/starsSmall.png (100%) delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/template/template-module-loader.js rename docs/grafana/rmf-app/oxygen-webhelp/app/{img => }/tip.svg (100%) delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/topic-page-basic.css create mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/topic-page-print.css.map rename grafana/rmf-app/doc/src/temp/relflagimage.list => docs/grafana/rmf-app/oxygen-webhelp/app/topic-page-print.js (100%) delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/topic-page.css delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/topic-page.js create mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/topic.css create mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/topic.css.map create mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/topic.js create mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/topic.js.map delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/topic/commonltr.css delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/topic/elements.css delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/topic/print.css delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/topic/syntax-highlight.css delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/topic/topic.css delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/topic/wh-topic-content.css rename docs/grafana/rmf-app/oxygen-webhelp/app/{img => }/troubleshooting.svg (100%) delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/util/parseuri.js delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/app/util/util.js rename docs/grafana/rmf-app/oxygen-webhelp/app/{img => }/warning.svg (100%) delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/lib/bootstrap/css/bootstrap.min.css delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/lib/bootstrap/js/bootstrap.bundle.min.js delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/lib/dom-purify/purify.min.js delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/lib/jquery-bootpag/jquery.bootpag.LICENSE.txt delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/lib/jquery-bootpag/jquery.bootpag.min.js delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/lib/jquery-highlight/MIT-License.txt delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/lib/jquery-highlight/jquery.highlight-3.js delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/lib/jquery-ui/jquery-ui.min.css delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/lib/jquery-ui/jquery-ui.min.js delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/lib/jquery/jquery-3.5.1.min.js delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/lib/jquery/jquery.MIT-License.txt delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/lib/maphighlight/jquery.maphilight.min.js delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/lib/requirejs/require.js delete mode 100644 docs/grafana/rmf-app/oxygen-webhelp/lib/rwdImageMaps/jquery.rwdImageMaps.min.js create mode 100644 docs/grafana/rmf-app/sitemap.xml create mode 100644 grafana/rmf-app/doc/src/importing_dashboards.dita delete mode 100644 grafana/rmf-app/doc/src/temp/.job.xml delete mode 100644 grafana/rmf-app/doc/src/temp/Configuration/OpenTopic/cfg/common/artwork/ISO_7010_W001.svg delete mode 100644 grafana/rmf-app/doc/src/temp/Configuration/OpenTopic/cfg/common/artwork/hand.gif delete mode 100644 grafana/rmf-app/doc/src/temp/Configuration/OpenTopic/cfg/common/artwork/hand_rtl.gif delete mode 100644 grafana/rmf-app/doc/src/temp/Configuration/OpenTopic/cfg/common/artwork/warning.gif delete mode 100644 grafana/rmf-app/doc/src/temp/access_grafana_zosmf.dita delete mode 100644 grafana/rmf-app/doc/src/temp/alerts.dita delete mode 100644 grafana/rmf-app/doc/src/temp/apply_visualize.dita delete mode 100644 grafana/rmf-app/doc/src/temp/conref.dita delete mode 100644 grafana/rmf-app/doc/src/temp/create_datasources.dita delete mode 100644 grafana/rmf-app/doc/src/temp/db_ovw.dita delete mode 100644 grafana/rmf-app/doc/src/temp/define_grafana_zosmf.dita delete mode 100644 grafana/rmf-app/doc/src/temp/ditaot.generated.ditaval delete mode 100644 grafana/rmf-app/doc/src/temp/error_reports.dita delete mode 100644 grafana/rmf-app/doc/src/temp/grafana_config_parms.dita delete mode 100644 grafana/rmf-app/doc/src/temp/grafana_via_zosmf.dita delete mode 100644 grafana/rmf-app/doc/src/temp/historical_data.dita delete mode 100644 grafana/rmf-app/doc/src/temp/install_grafana_plugin.dita delete mode 100644 grafana/rmf-app/doc/src/temp/prereq_zosmf.dita delete mode 100644 grafana/rmf-app/doc/src/temp/prometheus_sample_dashboards.dita delete mode 100644 grafana/rmf-app/doc/src/temp/query_lang.dita delete mode 100644 grafana/rmf-app/doc/src/temp/rmf_grafana.ditamap delete mode 100644 grafana/rmf-app/doc/src/temp/rmf_grafana_MERGED.xml delete mode 100644 grafana/rmf-app/doc/src/temp/rn.dita delete mode 100644 grafana/rmf-app/doc/src/temp/stage1.xml delete mode 100644 grafana/rmf-app/doc/src/temp/stage1.xml.pp delete mode 100644 grafana/rmf-app/doc/src/temp/subject_scheme.dictionary delete mode 100644 grafana/rmf-app/doc/src/temp/subrelation.xml delete mode 100644 grafana/rmf-app/doc/src/temp/ts_issues.dita delete mode 100644 grafana/rmf-app/doc/src/temp/update_plugin.dita delete mode 100644 grafana/rmf-app/doc/src/temp/usr.input.file.list delete mode 100644 grafana/rmf-app/doc/src/temp/variables.dita delete mode 100644 grafana/rmf-app/doc/src/temp/visual_grafana.dita create mode 100644 grafana/rmf-app/doc/src/templates/wh_template/header_old.xml diff --git a/docs/grafana/rmf-app/access_grafana_zosmf.html b/docs/grafana/rmf-app/access_grafana_zosmf.html index 6de29413..fabc1f05 100644 --- a/docs/grafana/rmf-app/access_grafana_zosmf.html +++ b/docs/grafana/rmf-app/access_grafana_zosmf.html @@ -1,22 +1,19 @@ - - - Accessing the Grafana dashboard - - - - - - - - - - - - - + + + Accessing the Grafana dashboard + + + + + + + + + + - + Jump to main content @@ -24,57 +21,47 @@ - - -
+
+ functions behind a reverse proxy.
Enter the URL of the DDS in this field.

The format of the URL is http://hostname:port_number[/path] or - https://hostname:port_number[/path]

Important: In the DDS URL, the + https://hostname:port_number[/path]

Important:
In the DDS URL, the /path is optional, and you must exclude it in the default network configuration. However, it might be required in more advanced setups, such as when DDS - functions behind a reverse proxy.
Timeout Specify the duration, in seconds in this field, for which @@ -208,9 +192,9 @@

Creating RMF data practice is not considered secure and is typically used in development or testing environments.
-
Note: By default, the Skip TLS +
Note:
By default, the Skip TLS Verify option is set to - OFF.
+ OFF.
  • Set the Basic Auth option to @@ -221,17 +205,17 @@

    Creating RMF data User and Password fields.
    -
    Note: The User and +
    Note:
    The User and Password fields are visible only when you enable - the basic authentication.
    + the basic authentication.

  • Specify the size of the cache (in MB) for the data source in the Size field.
    -
    Remember: The value must be greater than or +
    Remember:
    The value must be greater than or equal to 128. The default value is - 1024.
    + 1024.
  • Click Save & test. @@ -239,10 +223,6 @@

    Creating RMF data connection to DDS succeeds.

  • Results

    You have added the RMF data source.
    -

    What to do next

    -

    You can refer to the RMF master dashboard topic for information about RMF - master dashboard and its features.

    -
    @@ -265,16 +245,13 @@

    Creating RMF data -
    +
    + - diff --git a/docs/grafana/rmf-app/cshelp.html b/docs/grafana/rmf-app/cshelp.html new file mode 100644 index 00000000..b7b2f22d --- /dev/null +++ b/docs/grafana/rmf-app/cshelp.html @@ -0,0 +1,10 @@ + + + + Context Sensitive Help + + + + + + \ No newline at end of file diff --git a/docs/grafana/rmf-app/db_ovw.html b/docs/grafana/rmf-app/db_ovw.html deleted file mode 100644 index 3e64fa4e..00000000 --- a/docs/grafana/rmf-app/db_ovw.html +++ /dev/null @@ -1,283 +0,0 @@ - - - RMF master dashboard - - - - - - - - - - - - - - - - - Jump to main content - - - - - - - - - - - - - - -
    -
    - - -
    - - - - -
    -
    - - -
    - - - -
    -

    RMF master dashboard

    - -

    IBM® RMF for z/OS Grafana is a plugin provides custom panels for - the RMF data source and master dashboard that consists of RMF Charts, RMF Reporting, and RMF - Time Series dashboards.

    -

    Grafana provides a highly flexible and customizable dashboard consisting of one or more - rows and panels. You can use various pre-configured panels to construct queries and - tailor the visualization to meet your requirements. This enables you to create a - personalized dashboard that seamlessly interacts with data from a configured Distributed Data Server (DDS). For more information about creating and managing dashboards, refer to the Grafana documentation.

    -
    When you install the RMF for z/OS Grafana plugin for the first time, all the dashboards - are imported automatically. You can view the dashboards by navigating to Apps > IBM RMF > Dashboards. The following table lists the dashboards available in RMF Charts, RMF - Reporting, and RMF Time Series dashboards: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Table 1. RMF master dashboard
    RMF Charts DashboardRMF Reporting - DashboardsRMF Time Series Dashboards
    Common Storage ActivityCACHDETDSNDPROCSYSINFOCommon Storage Activity (Timeline)
    Coupling Facility OverviewCACHSUMEADMPROCUSYSRGCoupling Facility Overview (Timeline)
    Execution VelocityCFACTENCLAVESPACEDSYSSUMExecution Velocity (Timeline)
    General ActivityCFOVERENQSPACEGUSAGEGeneral Activity (Timeline)
    Overall Image ActivityCFSYSHSMSTORXCFGROUPOverall Image Activity (Timeline)
    Performance IndexCHANNELIOQSTORCXCFOVWPerformance Index (Timeline)
    Response TimeCPCJESSTORCRXCFPATHResponse Time
    Using & DelaysCRYOVWLOCKSPSTORFXCFSYSUsing & Delays (Timeline)
    XCF ActivityDELAYLOCKSUSTORMZFSFSXCF Activity (Timeline)
    Common Storage ActivityDEVOPDSTORRZFSKNCommon Storage Activity (Timeline)
    DEVRPCIESTORSZFSOVW
    -

    The dashboard interface offers several customization options for data presentation. The - following is the image of the master dashboard from the IBM RMF for z/OS Grafana plugin:

    -

    default_dashboard_view

    -

    You can click the import_dashboard option when there is a new version of the plugin, and then re-import the - dashboard by clicking the reimport icon. Similarly, if any of the dashboards is no longer required, you can click - the icon to remove it - from the master dashboard.

    -

    For more information about available features in the Dashboard and their descriptions, - refer to the Grafana documentation.

    -
    -
    - - - - - - -
    - -
    -
    - - - -
    -
    - -
    - -
    - -
    - - - - - - - - \ No newline at end of file diff --git a/docs/grafana/rmf-app/define_grafana_zosmf.html b/docs/grafana/rmf-app/define_grafana_zosmf.html index d2b3fffa..b7bafb59 100644 --- a/docs/grafana/rmf-app/define_grafana_zosmf.html +++ b/docs/grafana/rmf-app/define_grafana_zosmf.html @@ -1,22 +1,19 @@ - - - Defining the Grafana server - - - - - - - - - - - - - + + + Defining the Grafana server + + + + + + + + + + - + Jump to main content @@ -24,57 +21,47 @@ - - -
    +

    For more information about customizing the Grafana instance by modifying the parameters in the configuration file, refer to the following sections in the Grafana documentation.

    @@ -285,16 +268,13 @@

    Grafana configura

    -
    +
    + - diff --git a/docs/grafana/rmf-app/grafana_via_zosmf.html b/docs/grafana/rmf-app/grafana_via_zosmf.html index c7f0c2a8..7f7cdc3b 100644 --- a/docs/grafana/rmf-app/grafana_via_zosmf.html +++ b/docs/grafana/rmf-app/grafana_via_zosmf.html @@ -1,22 +1,19 @@ - - - Grafana through IBM z/OS Management Facility - - - - - - - - - - - - - + + + Grafana through IBM z/OS Management Facility + + + + + + + + + + - + Jump to main content @@ -24,57 +21,47 @@ - - -
    +