@broadcom/mat-analyze-for-zowe-cli 2.0.0 → 2.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. package/CHANGELOG.md +4 -1
  2. package/README.md +83 -66
  3. package/lib/cli/monitor/codeview/Histogram/Histogram.definition.js +5 -0
  4. package/lib/cli/monitor/codeview/Histogram/Histogram.definition.js.map +1 -1
  5. package/lib/cli/monitor/codeview/callerid/Callerid.definition.js +5 -0
  6. package/lib/cli/monitor/codeview/callerid/Callerid.definition.js.map +1 -1
  7. package/lib/cli/monitor/codeview/csect/Csect.definition.js +4 -0
  8. package/lib/cli/monitor/codeview/csect/Csect.definition.js.map +1 -1
  9. package/lib/cli/monitor/codeview/module/Module.definition.js +5 -0
  10. package/lib/cli/monitor/codeview/module/Module.definition.js.map +1 -1
  11. package/lib/cli/monitor/db2/db2view/DB2View.definition.js +4 -0
  12. package/lib/cli/monitor/db2/db2view/DB2View.definition.js.map +1 -1
  13. package/lib/cli/monitor/db2/sqlview/SQLView.definition.js +5 -0
  14. package/lib/cli/monitor/db2/sqlview/SQLView.definition.js.map +1 -1
  15. package/lib/cli/monitor/delayview/address/Address.definition.js +5 -0
  16. package/lib/cli/monitor/delayview/address/Address.definition.js.map +1 -1
  17. package/lib/cli/monitor/delayview/delay/Delay.definition.js +4 -0
  18. package/lib/cli/monitor/delayview/delay/Delay.definition.js.map +1 -1
  19. package/lib/cli/monitor/history/History.definition.js +5 -0
  20. package/lib/cli/monitor/history/History.definition.js.map +1 -1
  21. package/lib/cli/monitor/overview/Overview.definition.js +4 -0
  22. package/lib/cli/monitor/overview/Overview.definition.js.map +1 -1
  23. package/lib/cli/profile/create/CreateProfile.definition.js +4 -0
  24. package/lib/cli/profile/create/CreateProfile.definition.js.map +1 -1
  25. package/lib/cli/profile/invoke/InvokeProfile.definition.js +5 -0
  26. package/lib/cli/profile/invoke/InvokeProfile.definition.js.map +1 -1
  27. package/lib/imperative.js +2 -2
  28. package/lib/imperative.js.map +1 -1
  29. package/package.json +4 -3
package/CHANGELOG.md CHANGED
@@ -1,6 +1,9 @@
1
1
  # Change log
2
2
  All notable changes to this project are documented in this file.
3
3
 
4
+ ## `2.0.1`
5
+ - Update doc
6
+
4
7
  ## `2.0.0`
5
- - Release for Zowe v2
8
+ - Release for Zowe v2
6
9
  - Changed Endevor package to version 7.0.0
package/README.md CHANGED
@@ -19,9 +19,7 @@ Table of Contents
19
19
  * [Install the MAT Analyze Plug-in for Zowe CLI From Packages](#install-the-mat-analyze-plug-in-for-zowe-cli-from-packages)
20
20
  * [Install the MAT Analyze Plug-in for Zowe CLI From Source](#install-the-mat-analyze-plug-in-for-zowe-cli-from-source)
21
21
  * [Validate the Installation](#validate-the-installation)
22
- * [Create a z/OSMF Profile](#create-a-zosmf-profile)
23
22
  * [Create a MAT Profile](#create-a-mat-profile)
24
- * [Update a MAT Profile](#update-a-mat-profile)
25
23
  * [Using Profile Options](#using-profile-options)
26
24
  * [Use Cases and Commands](#use-cases-and-commands)
27
25
  * [PROFILE](#profile)
@@ -53,8 +51,7 @@ You can install the MAT Analyze Plug-in for Zowe CLI:
53
51
 
54
52
  ## Prerequisites
55
53
  Before starting the installation of the MAT Analyze Plug-in for Zowe CLI, verify that you have:
56
- * Zowe CLI installed
57
- * Zosmf profile created.
54
+ * Zowe CLI installed.
58
55
  * MAT database and the REST API installed, configured, and running.
59
56
  * (Optional) To use the automated listing registration and retrieval option through Endevor® footprints, install and configure the Endevor® Web Services and specify the Endevor® web server details in the MAT database configuration.
60
57
 
@@ -87,93 +84,55 @@ $ zowe plugins validate @broadcom/mat-analyze-for-zowe-cli
87
84
  ```
88
85
  Successful validation of the plug-in returns the response "This plugin was successfully validated. Enjoy the plugin."
89
86
 
90
- ## Create a z/OSMF Profile
91
- To interact with z/OS jobs, you need to create a z/OSMF profile. Issue the following command to get instructions on creating a z/OSMF profile in Brightside:
92
-
93
- ```
94
- $ zowe profiles create zosmf-profile --help
95
- ```
96
87
 
97
88
  ## Create a MAT Profile
98
- To enable the interaction of the MAT Analyze plug-in for Zowe CLI with MAT, you need to create a MAT profile. You set up a MAT profile to avoid typing your connection details on every command. The profile contains your protocol type, host, and port that you defined for the MAT REST API server, and your mainframe username and password. You can create multiple profiles and switch between them if necessary.
89
+ To enable the interaction of the MAT Analyze plug-in for Zowe CLI with MAT, you need to specify the MAT profile details that include the protocol type, host, and port that you defined for the MAT REST API server, and your mainframe username and password. The details of the MAT profile are stored in the Zowe configuration file. To create a global Zowe configuration file, use the command `zowe config init --global-config`, then edit the configation file and add a section with the MAT profile details:
99
90
 
100
- **Usage**
101
91
  ```
102
- $ zowe profiles create mat-profile <profileName> [options]
92
+ "mat": {
93
+             "type": "mat",
94
+             "properties": {
95
+                 "host": "example.com",
96
+                 "protocol": "http",
97
+                 "port": "12345",
98
+                 "user": "johndoe",
99
+                 "password": "qwerty",
100
+                 "listingDir": "c:\listings",
101
+                 "rejectUnauthorized": false
102
+             },
103
+             "secure": []
104
+         },
103
105
  ```
104
-
105
- **Positional Arguments**
106
- `profileName` *(string)*
107
- Specifies the name of the new mat profile. You can load this profile by using the name on commands that support the "--mat-profile" option.
108
-
106
+
109
107
  **MAT Profile Options**
110
- `--protocol` | `--prt` *(string)*
108
+ `--protocol` | `--o` *(string)*
111
109
  Specifies the protocol defined for the MAT REST API server (http or https).
112
110
  Allowed values: http, https.
113
111
 
114
- `--hostname` | `--hn` *(string)*
112
+ `--host` | `--H` *(string)*
115
113
  Specifies the hostname or IP address defined for the MAT REST API server (e.g. 127.0.0.0 or localhost).
116
114
 
117
- `--port` | `--pt` *(number)*
115
+ `--port` | `--P` *(number)*
118
116
  Specifies the server port (e.g. 8080).
119
117
 
120
- `--username` | `--user` *(string)*
118
+ `--user` | `--u` *(string)*
121
119
  Your mainframe username.
122
120
 
123
- `--password` | `--pass` *(string)*
121
+ `--password` | `--pw` *(string)*
124
122
  Your mainframe password.
125
123
 
126
- `--base-path` | `--bp` *(string)*
127
- The base path for your API mediation layer instance. Specify this option to prepend the base path to all resources when making REST requests. Do not specify this option if you are not using an API mediation layer.
124
+ `--base-path` | `--bp` *(string)*
125
+ The base path for your API mediation layer instance. Specify this option to prepend the base path to all resources when making REST requests. Do not specify this option if you are not using an API mediation layer.
128
126
 
129
- `--reject-unauthorized` | `--ru` *(boolean)*
127
+ `--reject-unauthorized` | `--ru` *(boolean)*
130
128
  Reject self-signed certificates.
131
129
  Default value: true
132
130
 
133
131
  `--listingDir` | `--ldir` *(string)*
134
132
  Specifies the directory where you want to store the registered program listings (e.g. 'c:\listings') for your immediate source code inspection. You can use the advantage of automated listing registration with MAT and listing retrieval through Endevor® footprints for Cobol, C/C++, and Assembler programs. When a source program listing is registered with MAT, you can enhance the histogram analysis data with the program listing details that pertain to the specific CSECT and program statement. The listing is transfered to the specified directory, which enables you to navigate directly to the line of the source code in you VS Code IDE and inspect the program statement. To use the listing retrieval option through Endevor® footprints, you need to have the Endevor® Web Services installed and configured and specify the Endevor® web server details in the MAT database configuration. The `--listingDir` parameter is optional.
135
133
 
136
-
137
- **Options**
138
- `--overwrite` | `--ow` *(boolean)*
139
- Overwrite the MAT profile when a profile of the same name exists.
134
+ If the details are not specified or if you want to temporarily use different MAT profile settings, you can specify all or some MAT profile details with each command. The MAT profile details that are provided with a command have the highest priority and override all other values. For more information about using profiles in Zowe, see [Using Global Profile Configuration](https://docs.zowe.org/stable/user-guide/cli-using-global-profile-configuration/) in the Zowe documentation.
140
135
 
141
- **Examples**
142
- * Create a MAT profile called 'matprofile' using your MAT configuration and REST API details, with the MAT REST API server integrated with the Zowe API Mediation Layer:
143
- ```
144
- $ zowe profiles create mat-profile matprofile --prt http --hn localhost --pt 1234 --user johndoe --pass qwerty --base-path api/v1/camat
145
- ```
146
-
147
- * Create a MAT profile called 'matprofile' using your MAT configuration and the details of the MAT REST API server without integration with the Zowe API Mediation Layer, and define the 'c:\listings' directory to store program listings for instant analysis from your VS Code IDE:
148
- ```
149
- $ zowe profiles create mat-profile matprofile --prt http --hn localhost --pt 1234 --user johndoe --pass qwerty --zowediscoverable false --listingDir 'c:\listings'
150
- ```
151
-
152
-
153
- For help information, issue the following help command:
154
- ```
155
- $ zowe profiles create mat-profile --help
156
- ```
157
-
158
- ## Update a MAT Profile
159
- To update an existing MAT profile, use the following command:
160
- ```
161
- $ zowe profiles update mat-profile <profileName> [options]
162
- ```
163
- `profileName` *(string)*
164
- Specifies the name of the profile that you update.
165
-
166
- **Options**
167
- Use the same options as for the create profile operation, and define only the new values that you want update.
168
-
169
- ## Using Profile Options
170
- Use the following profile options with the commands to load the specific profile to be used for command execution:
171
-
172
-
173
- `--mat-profile` | `--mat-p` *(string)*
174
- The name of a (mat) profile to load for this command execution.
175
-
176
- You can also have other MAT connection options apart from the MAT profile and use them as options in the commands.
177
136
 
178
137
  # Use Cases and Commands
179
138
  The MAT Analyze plug-in for Zowe CLI enables you to manage monitor profiles and get the measurement analysis data using Mainframe Application Tuner (MAT).
@@ -370,6 +329,11 @@ $ zowe mat profile create --profile PROFILE1 --jobname JOB1 --targsys AA31
370
329
  $ zowe mat profile create --profile PROFILE1 --jobname JOB1 --targsys AA31,AA32 --elapstime 90s
371
330
  ```
372
331
 
332
+ * Create the PROFILE1 monitor profile to measure job JOB1 that runs on the AA31 system, with the specific MAT profile details defined:
333
+ ```
334
+ $ zowe mat profile create --profile PROFILE1 --jobname JOB1 --targsys AA31 --host "example.com" --port 12345 --user johndoe --password qwerty
335
+ ```
336
+
373
337
  ### invoke | ivk
374
338
  Invoke a MAT monitor profile to start measurement. If you invoke a monitor profile that does currently exist, MAT creates the profile with the provided name and invokes the measurement for this profile.
375
339
 
@@ -424,6 +388,10 @@ $ zowe mat profile invoke --profile PROFILE1 --jobname JOB1 --targsys AA31 --mon
424
388
  ```
425
389
  $ zowe mat profile invoke --profile PROFILE1 --jobname JOB1 --targsys AA31 --listing
426
390
  ```
391
+ * Invoke the PROFILE1 monitor profile to measure job JOB1 that runs on the AA31 system, with the specific MAT profile details defined:
392
+ ```
393
+ $ zowe mat profile invoke --profile PROFILE1 --jobname JOB1 --targsys AA31 --host "example.com" --port 12345 --user johndoe --password qwerty
394
+ ```
427
395
 
428
396
  ### list | lip
429
397
  Get the list of available monitor profiles.
@@ -468,6 +436,10 @@ The name of a (mat) profile to load for this command execution.
468
436
  ```
469
437
  $ zowe mat monitor history --profile TESTPROF
470
438
  ```
439
+ * Get the list of all available measurements that are stored in the history of the monitor profile TESTPROF, with the specific MAT profile details defined:
440
+ ```
441
+ $ zowe mat monitor history --profile TESTPROF --host "example.com" --port 12345 --user johndoe --password qwerty
442
+ ```
471
443
 
472
444
  ### overview | ov
473
445
  Get the Overview details of the measurement.
@@ -498,6 +470,11 @@ $ zowe mat monitor overview --mon_num 5
498
470
  $ zowe mat monitor overview --profile TESTPROF
499
471
  ```
500
472
 
473
+ * Get the measurement overview details for monitor number 5, with the specific MAT profile details defined:
474
+ ```
475
+ $ zowe mat monitor overview --mon_num 5 --host "example.com" --port 12345 --user johndoe --password qwerty
476
+ ```
477
+
501
478
  The following **subgroups** are available for the MONITOR command group:
502
479
 
503
480
  ### delayview
@@ -540,6 +517,11 @@ $ zowe mat monitor delayview delay --mon_num 5
540
517
  $ zowe mat monitor delayview delay --profile TESTPROF
541
518
  ```
542
519
 
520
+ * Get the DelayView measurement details for monitor number 5, with the specific MAT profile details defined:
521
+ ```
522
+ $ zowe mat monitor delayview delay --mon_num 5 --host "example.com" --port 12345 --user johndoe --password qwerty
523
+ ```
524
+
543
525
  #### address | ad
544
526
  Get the delay address details for the measurement.
545
527
 
@@ -576,6 +558,11 @@ $ zowe mat monitor delayview address --mon_num 5 –-majorcategory "PC routine d
576
558
  $ zowe mat monitor delayview address --profile TESTPROF –-majorcategory "PC routine delay" –-minorcategory "PC CALL"
577
559
  ```
578
560
 
561
+ * Get the delay address details for majorcategory "PC routine delay" and minorcategory "PC CALL" for monitor number 5, with the specific MAT profile details defined:
562
+ ```
563
+ $ zowe mat monitor delayview address --mon_num 5 –-majorcategory "PC routine delay" –-minorcategory "PC CALL" --host "example.com" --port 12345 --user johndoe --password qwerty
564
+ ```
565
+
579
566
  ### codeview
580
567
  The commands from the CODEVIEW group enable you to get the CodeView measurement details.
581
568
 
@@ -616,6 +603,11 @@ $ zowe mat monitor codeview module --mon_num 5
616
603
  $ zowe mat monitor codeview module --profile TESTPROF
617
604
  ```
618
605
 
606
+ * Get the CodeView measurement details in Module mode for monitor number 5, with the specific MAT profile details defined:
607
+ ```
608
+ $ zowe mat monitor codeview module --mon_num 5 --host "example.com" --port 12345 --user johndoe --password qwerty
609
+ ```
610
+
619
611
 
620
612
  #### csect | cs
621
613
  Get the CodeView measurement details in Csect mode.
@@ -647,6 +639,11 @@ $ zowe mat monitor codeview csect --mon_num 5
647
639
  $ zowe mat monitor codeview csect --profile TESTPROF
648
640
  ```
649
641
 
642
+ * Get the CodeView measurement details in Csect mode for monitor number 5, with the specific MAT profile details defined:
643
+ ```
644
+ $ zowe mat monitor codeview csect --mon_num 5 --host "example.com" --port 12345 --user johndoe --password qwerty
645
+ ```
646
+
650
647
 
651
648
  #### histogram | hsg
652
649
  Get the Histogram details for the measurement.
@@ -698,6 +695,11 @@ $ zowe mat monitor codeview histogram --profile TESTPROF --csect "TUNCOB01" --mo
698
695
  $ zowe mat monitor codeview histogram --mon_num 5 --csect "TUNCOB01" --module "RUNCOB" --top 5 --listing
699
696
  ```
700
697
 
698
+ * Get the Histogram details with the group size defaulting to 4 bytes for monitor number 5, CSECT name TUNCOB01, module name RUNCOB, with the specific MAT profile details defined:
699
+ ```
700
+ $ zowe mat monitor codeview histogram --mon_num 5 --csect "TUNCOB01" --module "RUNCOB" --host "example.com" --port 12345 --user johndoe --password qwerty
701
+ ```
702
+
701
703
  #### callerid | cil
702
704
  Get the CodeView CallerID details for the specific CSECT and module.
703
705
 
@@ -734,6 +736,11 @@ $ zowe mat monitor codeview callerid --mon_num 5 --csect "TUNCOB01" --module "RU
734
736
  $ zowe mat monitor codeview callerid --profile TESTPROF --csect "TUNCOB01" --module '""'
735
737
  ```
736
738
 
739
+ * Get the CallerID details for monitor number 5, CSECT name TUNCOB01, and module name RUNCOB, with the specific MAT profile details defined:
740
+ ```
741
+ $ zowe mat monitor codeview callerid --mon_num 5 --csect "TUNCOB01" --module "RUNCOB" --host "example.com" --port 12345 --user johndoe --password qwerty
742
+ ```
743
+
737
744
  ### db2
738
745
  The commands from the DB2 group enable you to get the DB2 measurement details.
739
746
 
@@ -778,6 +785,11 @@ $ zowe mat monitor db2 db2view --mon_num 5
778
785
  $ zowe mat monitor db2 db2view --profile TESTPROF --top 5
779
786
  ```
780
787
 
788
+ * Get the DB2View details for monitor number 5, with the specific MAT profile details defined:
789
+ ```
790
+ $ zowe mat monitor db2 db2view --mon_num 5 --host "example.com" --port 12345 --user johndoe --password qwerty
791
+ ```
792
+
781
793
  #### sqlstmt | sql
782
794
  Get SQL details for the DB2 statement.
783
795
 
@@ -818,6 +830,11 @@ $ zowe mat monitor db2 sqlstmt --mon_num 5 --dbrm CUPBTSDY --stmtnum 464 --total
818
830
  $ zowe mat monitor db2 sqlstmt --profile TESTPROF --dbrm CUPBTSDY --stmtnum 464 --totalsamps 1
819
831
  ```
820
832
 
833
+ * Get the DB2 SQL statement details for monitor number 5 for DBRM CUPBTSDY, statement number 464, with total number of taken samples 1, with the specific MAT profile details defined:
834
+ ```
835
+ $ zowe mat monitor db2 sqlstmt --mon_num 5 --dbrm CUPBTSDY --stmtnum 464 --totalsamps 1 --host "example.com" --port 12345 --user johndoe --password qwerty
836
+ ```
837
+
821
838
 
822
839
  # Uninstall the MAT Analyze Plug-in for Zowe CLI
823
840
  To uninstall the MAT Analyze plug-in for Zowe CLI, issue the following command:
@@ -109,6 +109,11 @@ exports.HistogramDefinition = {
109
109
  "limit the number of returned records to 5 top consumers, and request the listing details",
110
110
  options: "--mon_num 5 --csect \"TUNCOB01\" --module \"RUNCOB\" --top 5 --listing",
111
111
  },
112
+ {
113
+ description: "Get the Histogram details for monitor number 5, CSECT name TUNCOB01, and module name RUNCOB, " +
114
+ "with the specific MAT profile details defined",
115
+ options: "--mon_num 5 --csect \"TUNCOB01\" --module \"RUNCOB\" --host \"example.com\" --port 12345 --user johndoe --password qwerty",
116
+ },
112
117
  ]
113
118
  };
114
119
  //# sourceMappingURL=Histogram.definition.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"Histogram.definition.js","sourceRoot":"","sources":["../../../../../src/cli/monitor/codeview/Histogram/Histogram.definition.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;;;AAGU,QAAA,mBAAmB,GAAuB;IACnD,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,CAAC,KAAK,CAAC;IAChB,OAAO,EAAE,oBAAoB;IAC7B,WAAW,EAAE,gDAAgD;IAC7D,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,SAAS,GAAG,oBAAoB;IACzC,OAAO,EAAE;QACL,QAAQ,EAAE,CAAC,KAAK,CAAC;KACpB;IACD,OAAO,EAAE;QACL;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,8DAA8D;gBAC3E,iFAAiF;gBACjF,+BAA+B;YAC/B,IAAI,EAAE,QAAQ;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,yDAAyD;YACtE,IAAI,EAAE,QAAQ;SACjB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,qEAAqE;gBAClF,yEAAyE;gBACzE,iFAAiF;YACjF,IAAI,EAAE,eAAe;SACxB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,oEAAoE;gBACjF,oGAAoG;gBACpG,oDAAoD;YACpD,IAAI,EAAE,eAAe;SACxB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,4FAA4F;gBACzG,2GAA2G;gBAC3G,6FAA6F;gBAC7F,qCAAqC;gBACrC,sGAAsG;gBACtG,uCAAuC;YACvC,IAAI,EAAE,eAAe;SACxB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,6EAA6E;gBAC1F,mFAAmF;gBACnF,gGAAgG;gBAChG,qEAAqE;YACrE,IAAI,EAAE,QAAQ;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,oGAAoG;gBACjH,6GAA6G;gBAC7G,yGAAyG;gBACzG,+GAA+G;gBAC/G,kHAAkH;gBAClH,8GAA8G;gBAC9G,+GAA+G;gBAC/G,uGAAuG;gBACvG,qHAAqH;gBACrH,0GAA0G;gBAC1G,sCAAsC;YACtC,IAAI,EAAE,SAAS;SAClB;KACJ;IACD,QAAQ,EAAE;QACN;YACI,WAAW,EAAE,6FAA6F;YAC1G,OAAO,EAAE,sDAAsD;SAClE;QACD;YACI,WAAW,EAAE,oGAAoG;gBACjH,8GAA8G;YAC9G,OAAO,EAAE,8EAA8E;SAC1F;QACF;YACK,WAAW,EAAE,+FAA+F;gBAC5G,0FAA0F;YAC1F,OAAO,EAAE,wEAAwE;SACpF;KACJ;CACJ,CAAC"}
1
+ {"version":3,"file":"Histogram.definition.js","sourceRoot":"","sources":["../../../../../src/cli/monitor/codeview/Histogram/Histogram.definition.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;;;AAGU,QAAA,mBAAmB,GAAuB;IACnD,IAAI,EAAE,WAAW;IACjB,OAAO,EAAE,CAAC,KAAK,CAAC;IAChB,OAAO,EAAE,oBAAoB;IAC7B,WAAW,EAAE,gDAAgD;IAC7D,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,SAAS,GAAG,oBAAoB;IACzC,OAAO,EAAE;QACL,QAAQ,EAAE,CAAC,KAAK,CAAC;KACpB;IACD,OAAO,EAAE;QACL;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,8DAA8D;gBAC3E,iFAAiF;gBACjF,+BAA+B;YAC/B,IAAI,EAAE,QAAQ;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,yDAAyD;YACtE,IAAI,EAAE,QAAQ;SACjB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,qEAAqE;gBAClF,yEAAyE;gBACzE,iFAAiF;YACjF,IAAI,EAAE,eAAe;SACxB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,oEAAoE;gBACjF,oGAAoG;gBACpG,oDAAoD;YACpD,IAAI,EAAE,eAAe;SACxB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,4FAA4F;gBACzG,2GAA2G;gBAC3G,6FAA6F;gBAC7F,qCAAqC;gBACrC,sGAAsG;gBACtG,uCAAuC;YACvC,IAAI,EAAE,eAAe;SACxB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,6EAA6E;gBAC1F,mFAAmF;gBACnF,gGAAgG;gBAChG,qEAAqE;YACrE,IAAI,EAAE,QAAQ;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,oGAAoG;gBACjH,6GAA6G;gBAC7G,yGAAyG;gBACzG,+GAA+G;gBAC/G,kHAAkH;gBAClH,8GAA8G;gBAC9G,+GAA+G;gBAC/G,uGAAuG;gBACvG,qHAAqH;gBACrH,0GAA0G;gBAC1G,sCAAsC;YACtC,IAAI,EAAE,SAAS;SAClB;KACJ;IACD,QAAQ,EAAE;QACN;YACI,WAAW,EAAE,6FAA6F;YAC1G,OAAO,EAAE,sDAAsD;SAClE;QACD;YACI,WAAW,EAAE,oGAAoG;gBACjH,8GAA8G;YAC9G,OAAO,EAAE,8EAA8E;SAC1F;QACF;YACK,WAAW,EAAE,+FAA+F;gBAC5G,0FAA0F;YAC1F,OAAO,EAAE,wEAAwE;SACpF;QACD;YACI,WAAW,EAAE,+FAA+F;gBAC5G,+CAA+C;YAC/C,OAAO,EAAE,2HAA2H;SACvI;KACJ;CACJ,CAAC"}
@@ -71,6 +71,11 @@ exports.CallerIDDefinition = {
71
71
  "and empty module name",
72
72
  options: "--profile TESTPROF --csect \"TUNCOB01\" --module \'\"\"\'",
73
73
  },
74
+ {
75
+ description: "Get the CallerID details for monitor number 5, CSECT name TUNCOB01, and module name RUNCOB, " +
76
+ "with the specific MAT profile details defined",
77
+ options: "--mon_num 5 --csect \"TUNCOB01\" --module \"RUNCOB\" --host \"example.com\" --port 12345 --user johndoe --password qwerty",
78
+ },
74
79
  ]
75
80
  };
76
81
  //# sourceMappingURL=Callerid.definition.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"Callerid.definition.js","sourceRoot":"","sources":["../../../../../src/cli/monitor/codeview/callerid/Callerid.definition.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;;;AAGU,QAAA,kBAAkB,GAAuB;IAClD,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,CAAC,KAAK,CAAC;IAChB,OAAO,EAAE,+BAA+B;IACxC,WAAW,EAAE,sEAAsE;IACnF,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,SAAS,GAAG,mBAAmB;IACxC,OAAO,EAAE;QACL,QAAQ,EAAE,CAAC,KAAK,CAAC;KACpB;IACD,OAAO,EAAE;QACL;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,8DAA8D;gBAC3E,iFAAiF;gBACjF,+BAA+B;YAC/B,IAAI,EAAE,QAAQ;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,yDAAyD;YACtE,IAAI,EAAE,QAAQ;SACjB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,uEAAuE;gBACpF,yEAAyE;gBACzE,iFAAiF;YACjF,IAAI,EAAE,eAAe;SACxB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,sEAAsE;gBACnF,oGAAoG;gBACpG,oDAAoD;YACpD,IAAI,EAAE,eAAe;SACxB;KACJ;IACD,QAAQ,EAAE;QACN;YACI,WAAW,EAAE,4FAA4F;YACzG,OAAO,EAAE,sDAAsD;SAClE;QACD;YACI,WAAW,EAAE,kGAAkG;gBAC/G,uBAAuB;YACvB,OAAO,EAAE,2DAA2D;SACvE;KACJ;CACJ,CAAC"}
1
+ {"version":3,"file":"Callerid.definition.js","sourceRoot":"","sources":["../../../../../src/cli/monitor/codeview/callerid/Callerid.definition.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;;;AAGU,QAAA,kBAAkB,GAAuB;IAClD,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,CAAC,KAAK,CAAC;IAChB,OAAO,EAAE,+BAA+B;IACxC,WAAW,EAAE,sEAAsE;IACnF,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,SAAS,GAAG,mBAAmB;IACxC,OAAO,EAAE;QACL,QAAQ,EAAE,CAAC,KAAK,CAAC;KACpB;IACD,OAAO,EAAE;QACL;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,8DAA8D;gBAC3E,iFAAiF;gBACjF,+BAA+B;YAC/B,IAAI,EAAE,QAAQ;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,yDAAyD;YACtE,IAAI,EAAE,QAAQ;SACjB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,uEAAuE;gBACpF,yEAAyE;gBACzE,iFAAiF;YACjF,IAAI,EAAE,eAAe;SACxB;QACD;YACI,IAAI,EAAE,OAAO;YACb,WAAW,EAAE,sEAAsE;gBACnF,oGAAoG;gBACpG,oDAAoD;YACpD,IAAI,EAAE,eAAe;SACxB;KACJ;IACD,QAAQ,EAAE;QACN;YACI,WAAW,EAAE,4FAA4F;YACzG,OAAO,EAAE,sDAAsD;SAClE;QACD;YACI,WAAW,EAAE,kGAAkG;gBAC/G,uBAAuB;YACvB,OAAO,EAAE,2DAA2D;SACvE;QACD;YACI,WAAW,EAAE,8FAA8F;gBAC3G,+CAA+C;YAC/C,OAAO,EAAE,2HAA2H;SACvI;KACJ;CACJ,CAAC"}
@@ -56,6 +56,10 @@ exports.CsectDefinition = {
56
56
  description: "Get the CodeView measurement details in Csect mode for the latest monitor in the TESTPROF profile",
57
57
  options: "--profile TESTPROF",
58
58
  },
59
+ {
60
+ description: "Get the CodeView measurement details in Csect mode for monitor number 5, with the specific MAT profile details defined",
61
+ options: "--mon_num 5 --host \"example.com\" --port 12345 --user johndoe --password qwerty",
62
+ },
59
63
  ]
60
64
  };
61
65
  //# sourceMappingURL=Csect.definition.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"Csect.definition.js","sourceRoot":"","sources":["../../../../../src/cli/monitor/codeview/csect/Csect.definition.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;;;AAGU,QAAA,eAAe,GAAuB;IAC/C,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,CAAC,IAAI,CAAC;IACf,OAAO,EAAE,iCAAiC;IAC1C,WAAW,EAAE,qDAAqD;IAClE,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,SAAS,GAAG,gBAAgB;IACrC,OAAO,EAAE;QACL,QAAQ,EAAE,CAAC,KAAK,CAAC;KACpB;IACD,OAAO,EAAE;QACL;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,8DAA8D;gBAC3E,iFAAiF;gBACjF,+BAA+B;YAC/B,IAAI,EAAE,QAAQ;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,yDAAyD;YACtE,IAAI,EAAE,QAAQ;SACjB;KACJ;IACD,QAAQ,EAAE;QACN;YACI,WAAW,EAAE,yEAAyE;YACtF,OAAO,EAAE,aAAa;SACzB;QACD;YACI,WAAW,EAAE,mGAAmG;YAChH,OAAO,EAAE,oBAAoB;SAChC;KACJ;CACJ,CAAC"}
1
+ {"version":3,"file":"Csect.definition.js","sourceRoot":"","sources":["../../../../../src/cli/monitor/codeview/csect/Csect.definition.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;;;AAGU,QAAA,eAAe,GAAuB;IAC/C,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,CAAC,IAAI,CAAC;IACf,OAAO,EAAE,iCAAiC;IAC1C,WAAW,EAAE,qDAAqD;IAClE,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,SAAS,GAAG,gBAAgB;IACrC,OAAO,EAAE;QACL,QAAQ,EAAE,CAAC,KAAK,CAAC;KACpB;IACD,OAAO,EAAE;QACL;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,8DAA8D;gBAC3E,iFAAiF;gBACjF,+BAA+B;YAC/B,IAAI,EAAE,QAAQ;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,yDAAyD;YACtE,IAAI,EAAE,QAAQ;SACjB;KACJ;IACD,QAAQ,EAAE;QACN;YACI,WAAW,EAAE,yEAAyE;YACtF,OAAO,EAAE,aAAa;SACzB;QACD;YACI,WAAW,EAAE,mGAAmG;YAChH,OAAO,EAAE,oBAAoB;SAChC;QACD;YACI,WAAW,EAAE,wHAAwH;YACrI,OAAO,EAAE,kFAAkF;SAC9F;KACJ;CACJ,CAAC"}
@@ -56,6 +56,11 @@ exports.ModuleDefinition = {
56
56
  description: "Get the CodeView measurement details in Module mode for the latest monitor in the TESTPROF profile",
57
57
  options: "--profile TESTPROF",
58
58
  },
59
+ {
60
+ description: "Get the CodeView measurement details in Module mode for monitor number 5, " +
61
+ "with the specific MAT profile details defined",
62
+ options: "--mon_num 5 --host \"example.com\" --port 12345 --user johndoe --password qwerty",
63
+ },
59
64
  ]
60
65
  };
61
66
  //# sourceMappingURL=Module.definition.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"Module.definition.js","sourceRoot":"","sources":["../../../../../src/cli/monitor/codeview/module/Module.definition.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;;;AAGU,QAAA,gBAAgB,GAAuB;IAChD,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,CAAC,IAAI,CAAC;IACf,OAAO,EAAE,kCAAkC;IAC3C,WAAW,EAAE,sDAAsD;IACnE,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,SAAS,GAAG,iBAAiB;IACtC,OAAO,EAAE;QACL,QAAQ,EAAE,CAAC,KAAK,CAAC;KACpB;IACD,OAAO,EAAE;QACL;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,8DAA8D;gBAC3E,qEAAqE;gBACrE,2CAA2C;YAC3C,IAAI,EAAE,QAAQ;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,yDAAyD;YACtE,IAAI,EAAE,QAAQ;SACjB;KACJ;IACD,QAAQ,EAAE;QACN;YACI,WAAW,EAAE,0EAA0E;YACvF,OAAO,EAAE,aAAa;SACzB;QACD;YACI,WAAW,EAAE,oGAAoG;YACjH,OAAO,EAAE,oBAAoB;SAChC;KACJ;CACJ,CAAC"}
1
+ {"version":3,"file":"Module.definition.js","sourceRoot":"","sources":["../../../../../src/cli/monitor/codeview/module/Module.definition.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;;;AAGU,QAAA,gBAAgB,GAAuB;IAChD,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,CAAC,IAAI,CAAC;IACf,OAAO,EAAE,kCAAkC;IAC3C,WAAW,EAAE,sDAAsD;IACnE,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,SAAS,GAAG,iBAAiB;IACtC,OAAO,EAAE;QACL,QAAQ,EAAE,CAAC,KAAK,CAAC;KACpB;IACD,OAAO,EAAE;QACL;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,8DAA8D;gBAC3E,qEAAqE;gBACrE,2CAA2C;YAC3C,IAAI,EAAE,QAAQ;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,yDAAyD;YACtE,IAAI,EAAE,QAAQ;SACjB;KACJ;IACD,QAAQ,EAAE;QACN;YACI,WAAW,EAAE,0EAA0E;YACvF,OAAO,EAAE,aAAa;SACzB;QACD;YACI,WAAW,EAAE,oGAAoG;YACjH,OAAO,EAAE,oBAAoB;SAChC;QACD;YACI,WAAW,EAAE,4EAA4E;gBACzF,+CAA+C;YAC/C,OAAO,EAAE,kFAAkF;SAC9F;KACJ;CACJ,CAAC"}
@@ -65,6 +65,10 @@ exports.DB2ViewDefinition = {
65
65
  "with the top consumer limitation set to 5 top consumers",
66
66
  options: "--profile TESTPROF --top 5",
67
67
  },
68
+ {
69
+ description: "Get the DB2View details for monitor number 5, with the specific MAT profile details defined",
70
+ options: "--mon_num 5 --host \"example.com\" --port 12345 --user johndoe --password qwerty",
71
+ },
68
72
  ]
69
73
  };
70
74
  //# sourceMappingURL=DB2View.definition.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"DB2View.definition.js","sourceRoot":"","sources":["../../../../../src/cli/monitor/db2/db2view/DB2View.definition.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;;;AAGU,QAAA,iBAAiB,GAAuB;IACjD,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,CAAC,MAAM,CAAC;IACjB,OAAO,EAAE,kBAAkB;IAC3B,WAAW,EAAE,8CAA8C;IAC3D,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,SAAS,GAAG,kBAAkB;IACvC,OAAO,EAAE;QACL,QAAQ,EAAE,CAAC,KAAK,CAAC;KACpB;IACD,OAAO,EAAE;QACL;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,8DAA8D;gBAC3E,iFAAiF;gBACjF,+BAA+B;YAC/B,IAAI,EAAE,QAAQ;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,yDAAyD;YACtE,IAAI,EAAE,QAAQ;SACjB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,mEAAmE;gBAChF,mFAAmF;gBACnF,sFAAsF;gBACtF,qEAAqE;YACrE,IAAI,EAAE,QAAQ;SACjB;KACJ;IACD,QAAQ,EAAE;QACN;YACI,WAAW,EAAE,8CAA8C;YAC3D,OAAO,EAAE,aAAa;SACzB;QACD;YACI,WAAW,EAAE,0EAA0E;gBACvF,yDAAyD;YACzD,OAAO,EAAE,4BAA4B;SACxC;KACJ;CACJ,CAAC"}
1
+ {"version":3,"file":"DB2View.definition.js","sourceRoot":"","sources":["../../../../../src/cli/monitor/db2/db2view/DB2View.definition.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;;;AAGU,QAAA,iBAAiB,GAAuB;IACjD,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,CAAC,MAAM,CAAC;IACjB,OAAO,EAAE,kBAAkB;IAC3B,WAAW,EAAE,8CAA8C;IAC3D,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,SAAS,GAAG,kBAAkB;IACvC,OAAO,EAAE;QACL,QAAQ,EAAE,CAAC,KAAK,CAAC;KACpB;IACD,OAAO,EAAE;QACL;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,8DAA8D;gBAC3E,iFAAiF;gBACjF,+BAA+B;YAC/B,IAAI,EAAE,QAAQ;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,yDAAyD;YACtE,IAAI,EAAE,QAAQ;SACjB;QACD;YACI,IAAI,EAAE,KAAK;YACX,WAAW,EAAE,mEAAmE;gBAChF,mFAAmF;gBACnF,sFAAsF;gBACtF,qEAAqE;YACrE,IAAI,EAAE,QAAQ;SACjB;KACJ;IACD,QAAQ,EAAE;QACN;YACI,WAAW,EAAE,8CAA8C;YAC3D,OAAO,EAAE,aAAa;SACzB;QACD;YACI,WAAW,EAAE,0EAA0E;gBACvF,yDAAyD;YACzD,OAAO,EAAE,4BAA4B;SACxC;QACD;YACI,WAAW,EAAE,6FAA6F;YAC1G,OAAO,EAAE,kFAAkF;SAC9F;KACJ;CACJ,CAAC"}
@@ -76,6 +76,11 @@ exports.SQLViewDefinition = {
76
76
  "for DBRM CUPBTSDY, statement number 464, with total number of taken samples 1",
77
77
  options: "--profile TESTPROF --dbrm CUPBTSDY --stmtnum 464 --totalsamps 1",
78
78
  },
79
+ {
80
+ description: "Get the DB2 SQL statement details for monitor number 5 for DBRM CUPBTSDY, statement number 464, " +
81
+ "with total number of taken samples 1, and with the specific MAT profile details defined",
82
+ options: "--mon_num 5 --dbrm CUPBTSDY --stmtnum 464 --totalsamps 1 --host \"example.com\" --port 12345 --user johndoe --password qwerty",
83
+ },
79
84
  ]
80
85
  };
81
86
  //# sourceMappingURL=SQLView.definition.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"SQLView.definition.js","sourceRoot":"","sources":["../../../../../src/cli/monitor/db2/sqlview/SQLView.definition.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;;;AAGU,QAAA,iBAAiB,GAAuB;IACjD,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,CAAC,KAAK,CAAC;IAChB,OAAO,EAAE,+BAA+B;IACxC,WAAW,EAAE,wCAAwC;IACrD,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,SAAS,GAAG,kBAAkB;IACvC,OAAO,EAAE;QACL,QAAQ,EAAE,CAAC,KAAK,CAAC;KACpB;IACD,OAAO,EAAE;QACL;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,8DAA8D;gBAC3E,iFAAiF;gBACjF,+BAA+B;YAC/B,IAAI,EAAE,QAAQ;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,yDAAyD;YACtE,IAAI,EAAE,QAAQ;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,8EAA8E;gBAC3F,6FAA6F;YAC7F,IAAI,EAAE,QAAQ;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,sEAAsE;gBACnF,8FAA8F;YAC9F,IAAI,EAAE,QAAQ;SACjB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,0EAA0E;gBACvF,kGAAkG;YAClG,IAAI,EAAE,QAAQ;SACjB;KACJ;IACD,QAAQ,EAAE;QACN;YACI,WAAW,EAAE,4EAA4E;gBACzF,4DAA4D;YAC5D,OAAO,EAAE,0DAA0D;SACtE;QACD;YACI,WAAW,EAAE,oFAAoF;gBACjG,+EAA+E;YAC/E,OAAO,EAAE,iEAAiE;SAC7E;KACJ;CACJ,CAAC"}
1
+ {"version":3,"file":"SQLView.definition.js","sourceRoot":"","sources":["../../../../../src/cli/monitor/db2/sqlview/SQLView.definition.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;;;AAGU,QAAA,iBAAiB,GAAuB;IACjD,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,CAAC,KAAK,CAAC;IAChB,OAAO,EAAE,+BAA+B;IACxC,WAAW,EAAE,wCAAwC;IACrD,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,SAAS,GAAG,kBAAkB;IACvC,OAAO,EAAE;QACL,QAAQ,EAAE,CAAC,KAAK,CAAC;KACpB;IACD,OAAO,EAAE;QACL;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,8DAA8D;gBAC3E,iFAAiF;gBACjF,+BAA+B;YAC/B,IAAI,EAAE,QAAQ;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,yDAAyD;YACtE,IAAI,EAAE,QAAQ;SACjB;QACD;YACI,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,8EAA8E;gBAC3F,6FAA6F;YAC7F,IAAI,EAAE,QAAQ;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,sEAAsE;gBACnF,8FAA8F;YAC9F,IAAI,EAAE,QAAQ;SACjB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,0EAA0E;gBACvF,kGAAkG;YAClG,IAAI,EAAE,QAAQ;SACjB;KACJ;IACD,QAAQ,EAAE;QACN;YACI,WAAW,EAAE,4EAA4E;gBACzF,4DAA4D;YAC5D,OAAO,EAAE,0DAA0D;SACtE;QACD;YACI,WAAW,EAAE,oFAAoF;gBACjG,+EAA+E;YAC/E,OAAO,EAAE,iEAAiE;SAC7E;QACD;YACI,WAAW,EAAE,kGAAkG;gBAC/G,yFAAyF;YACzF,OAAO,EAAE,+HAA+H;SAC3I;KACJ;CACJ,CAAC"}
@@ -70,6 +70,11 @@ exports.AddressDefinition = {
70
70
  "for the latest monitor in the TESTPROF profile",
71
71
  options: "--profile TESTPROF –-majorcategory \"PC routine delay\" –-minorcategory \"PC CALL\"",
72
72
  },
73
+ {
74
+ description: "Get the delay address details for majorcategory \"PC routine delay\" and minorcategory \"PC CALL\" " +
75
+ "for monitor number 5, with the specific MAT profile details defined",
76
+ options: "--mon_num 5 –-majorcategory \"PC routine delay\" –-minorcategory \"PC CALL\" --host \"example.com\" --port 12345 --user johndoe --password qwerty",
77
+ },
73
78
  ]
74
79
  };
75
80
  //# sourceMappingURL=Address.definition.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"Address.definition.js","sourceRoot":"","sources":["../../../../../src/cli/monitor/delayview/address/Address.definition.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;;;AAGU,QAAA,iBAAiB,GAAuB;IACjD,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,CAAC,IAAI,CAAC;IACf,OAAO,EAAE,wBAAwB;IACjC,WAAW,EAAE,oDAAoD;IACjE,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,SAAS,GAAG,kBAAkB;IACvC,OAAO,EAAE;QACL,QAAQ,EAAE,CAAC,KAAK,CAAC;KACpB;IACD,OAAO,EAAE;QACL;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,8DAA8D;gBAC3E,qEAAqE;gBACrE,2CAA2C;YAC3C,IAAI,EAAE,QAAQ;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,yDAAyD;YACtE,IAAI,EAAE,QAAQ;SACjB;QACD;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,yHAAyH;gBACtI,gFAAgF;YAChF,IAAI,EAAE,QAAQ;SACjB;QACD;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,iHAAiH;gBAC9H,gFAAgF;YAChF,IAAI,EAAE,QAAQ;SACjB;KACJ;IACD,QAAQ,EAAE;QACN;YACI,WAAW,EAAE,qGAAqG;gBAClH,sBAAsB;YACtB,OAAO,EAAE,8EAA8E;SAC1F;QACD;YACI,WAAW,EAAE,qGAAqG;gBAClH,gDAAgD;YAChD,OAAO,EAAE,qFAAqF;SACjG;KACJ;CACJ,CAAC"}
1
+ {"version":3,"file":"Address.definition.js","sourceRoot":"","sources":["../../../../../src/cli/monitor/delayview/address/Address.definition.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;;;AAGU,QAAA,iBAAiB,GAAuB;IACjD,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,CAAC,IAAI,CAAC;IACf,OAAO,EAAE,wBAAwB;IACjC,WAAW,EAAE,oDAAoD;IACjE,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,SAAS,GAAG,kBAAkB;IACvC,OAAO,EAAE;QACL,QAAQ,EAAE,CAAC,KAAK,CAAC;KACpB;IACD,OAAO,EAAE;QACL;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,8DAA8D;gBAC3E,qEAAqE;gBACrE,2CAA2C;YAC3C,IAAI,EAAE,QAAQ;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,yDAAyD;YACtE,IAAI,EAAE,QAAQ;SACjB;QACD;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,yHAAyH;gBACtI,gFAAgF;YAChF,IAAI,EAAE,QAAQ;SACjB;QACD;YACI,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,iHAAiH;gBAC9H,gFAAgF;YAChF,IAAI,EAAE,QAAQ;SACjB;KACJ;IACD,QAAQ,EAAE;QACN;YACI,WAAW,EAAE,qGAAqG;gBAClH,sBAAsB;YACtB,OAAO,EAAE,8EAA8E;SAC1F;QACD;YACI,WAAW,EAAE,qGAAqG;gBAClH,gDAAgD;YAChD,OAAO,EAAE,qFAAqF;SACjG;QACD;YACI,WAAW,EAAE,qGAAqG;gBAClH,qEAAqE;YACrE,OAAO,EAAE,mJAAmJ;SAC/J;KACJ;CACJ,CAAC"}
@@ -56,6 +56,10 @@ exports.DelayDefinition = {
56
56
  description: "Get the DelayView measurement details for the latest monitor in the TESTPROF profile",
57
57
  options: "--profile TESTPROF",
58
58
  },
59
+ {
60
+ description: "Get the DelayView measurement details for monitor number 5, with the specific MAT profile details defined",
61
+ options: "--mon_num 5 --host \"example.com\" --port 12345 --user johndoe --password qwerty",
62
+ },
59
63
  ]
60
64
  };
61
65
  //# sourceMappingURL=Delay.definition.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"Delay.definition.js","sourceRoot":"","sources":["../../../../../src/cli/monitor/delayview/delay/Delay.definition.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;;;AAGU,QAAA,eAAe,GAAuB;IAC/C,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,CAAC,IAAI,CAAC;IACf,OAAO,EAAE,oBAAoB;IAC7B,WAAW,EAAE,4CAA4C;IACzD,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,SAAS,GAAG,gBAAgB;IACrC,OAAO,EAAE;QACL,QAAQ,EAAE,CAAC,KAAK,CAAC;KACpB;IACD,OAAO,EAAE;QACL;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,8DAA8D;gBAC3E,qEAAqE;gBACrE,2CAA2C;YAC3C,IAAI,EAAE,QAAQ;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,yDAAyD;YACtE,IAAI,EAAE,QAAQ;SACjB;KACJ;IACD,QAAQ,EAAE;QACN;YACI,WAAW,EAAE,4DAA4D;YACzE,OAAO,EAAE,aAAa;SACzB;QACD;YACI,WAAW,EAAE,sFAAsF;YACnG,OAAO,EAAE,oBAAoB;SAChC;KACJ;CACJ,CAAC"}
1
+ {"version":3,"file":"Delay.definition.js","sourceRoot":"","sources":["../../../../../src/cli/monitor/delayview/delay/Delay.definition.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;;;AAGU,QAAA,eAAe,GAAuB;IAC/C,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,CAAC,IAAI,CAAC;IACf,OAAO,EAAE,oBAAoB;IAC7B,WAAW,EAAE,4CAA4C;IACzD,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,SAAS,GAAG,gBAAgB;IACrC,OAAO,EAAE;QACL,QAAQ,EAAE,CAAC,KAAK,CAAC;KACpB;IACD,OAAO,EAAE;QACL;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,8DAA8D;gBAC3E,qEAAqE;gBACrE,2CAA2C;YAC3C,IAAI,EAAE,QAAQ;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,yDAAyD;YACtE,IAAI,EAAE,QAAQ;SACjB;KACJ;IACD,QAAQ,EAAE;QACN;YACI,WAAW,EAAE,4DAA4D;YACzE,OAAO,EAAE,aAAa;SACzB;QACD;YACI,WAAW,EAAE,sFAAsF;YACnG,OAAO,EAAE,oBAAoB;SAChC;QACD;YACI,WAAW,EAAE,2GAA2G;YACxH,OAAO,EAAE,kFAAkF;SAC9F;KACJ;CACJ,CAAC"}
@@ -45,6 +45,11 @@ exports.HistoryDefinition = {
45
45
  description: "Get the list of all available measurements that are stored in the history of the monitor profile TESTPROF",
46
46
  options: "--profile TESTPROF",
47
47
  },
48
+ {
49
+ description: "Get the list of all available measurements that are stored in the history of the monitor profile TESTPROF, " +
50
+ "with the specific MAT profile details defined",
51
+ options: "--profile TESTPROF --host \"example.com\" --port 12345 --user johndoe --password qwerty",
52
+ },
48
53
  ]
49
54
  };
50
55
  //# sourceMappingURL=History.definition.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"History.definition.js","sourceRoot":"","sources":["../../../../src/cli/monitor/history/History.definition.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;;;AAGU,QAAA,iBAAiB,GAAuB;IACjD,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,CAAC,IAAI,CAAC;IACf,OAAO,EAAE,mCAAmC;IAC5C,WAAW,EAAE,wGAAwG;IACrH,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,SAAS,GAAG,kBAAkB;IACvC,OAAO,EAAE;QACL,QAAQ,EAAE,CAAC,KAAK,CAAC;KACpB;IACD,OAAO,EAAE;QACL;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,QAAQ;SACjB;KAEJ;IACD,QAAQ,EAAE;QACN;YACI,WAAW,EAAE,2GAA2G;YACxH,OAAO,EAAE,oBAAoB;SAChC;KACH;CACL,CAAC"}
1
+ {"version":3,"file":"History.definition.js","sourceRoot":"","sources":["../../../../src/cli/monitor/history/History.definition.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;;;AAGU,QAAA,iBAAiB,GAAuB;IACjD,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,CAAC,IAAI,CAAC;IACf,OAAO,EAAE,mCAAmC;IAC5C,WAAW,EAAE,wGAAwG;IACrH,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,SAAS,GAAG,kBAAkB;IACvC,OAAO,EAAE;QACL,QAAQ,EAAE,CAAC,KAAK,CAAC;KACpB;IACD,OAAO,EAAE;QACL;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,oCAAoC;YACjD,IAAI,EAAE,QAAQ;SACjB;KAEJ;IACD,QAAQ,EAAE;QACN;YACI,WAAW,EAAE,2GAA2G;YACxH,OAAO,EAAE,oBAAoB;SAChC;QACD;YACI,WAAW,EAAE,6GAA6G;gBAC1H,+CAA+C;YAC/C,OAAO,EAAE,yFAAyF;SACrG;KACH;CACL,CAAC"}
@@ -56,6 +56,10 @@ exports.OverviewDefinition = {
56
56
  description: "Get the overview details of the measurement for the latest monitor in the TESTPROF profile",
57
57
  options: "--profile TESTPROF",
58
58
  },
59
+ {
60
+ description: "Get the measurement overview details for monitor number 5, with the specific MAT profile details defined",
61
+ options: "--mon_num 5 --host \"example.com\" --port 12345 --user johndoe --password qwerty",
62
+ },
59
63
  ]
60
64
  };
61
65
  //# sourceMappingURL=Overview.definition.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"Overview.definition.js","sourceRoot":"","sources":["../../../../src/cli/monitor/overview/Overview.definition.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;;;AAGU,QAAA,kBAAkB,GAAuB;IAClD,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,CAAC,IAAI,CAAC;IACf,OAAO,EAAE,mBAAmB;IAC5B,WAAW,EAAE,8CAA8C;IAC3D,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,SAAS,GAAG,mBAAmB;IACxC,OAAO,EAAE;QACL,QAAQ,EAAE,CAAC,KAAK,CAAC;KACpB;IACD,OAAO,EAAE;QACL;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,8DAA8D;gBAC3E,qEAAqE;gBACrE,2CAA2C;YAC3C,IAAI,EAAE,QAAQ;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,yDAAyD;YACtE,IAAI,EAAE,QAAQ;SACjB;KACJ;IACD,QAAQ,EAAE;QACN;YACI,WAAW,EAAE,kEAAkE;YAC/E,OAAO,EAAE,aAAa;SACzB;QACD;YACI,WAAW,EAAE,4FAA4F;YACzG,OAAO,EAAE,oBAAoB;SAChC;KACJ;CACJ,CAAC"}
1
+ {"version":3,"file":"Overview.definition.js","sourceRoot":"","sources":["../../../../src/cli/monitor/overview/Overview.definition.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;;;AAGU,QAAA,kBAAkB,GAAuB;IAClD,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE,CAAC,IAAI,CAAC;IACf,OAAO,EAAE,mBAAmB;IAC5B,WAAW,EAAE,8CAA8C;IAC3D,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,SAAS,GAAG,mBAAmB;IACxC,OAAO,EAAE;QACL,QAAQ,EAAE,CAAC,KAAK,CAAC;KACpB;IACD,OAAO,EAAE;QACL;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,8DAA8D;gBAC3E,qEAAqE;gBACrE,2CAA2C;YAC3C,IAAI,EAAE,QAAQ;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,yDAAyD;YACtE,IAAI,EAAE,QAAQ;SACjB;KACJ;IACD,QAAQ,EAAE;QACN;YACI,WAAW,EAAE,kEAAkE;YAC/E,OAAO,EAAE,aAAa;SACzB;QACD;YACI,WAAW,EAAE,4FAA4F;YACzG,OAAO,EAAE,oBAAoB;SAChC;QACD;YACI,WAAW,EAAE,0GAA0G;YACvH,OAAO,EAAE,kFAAkF;SAC9F;KACJ;CACJ,CAAC"}
@@ -319,6 +319,10 @@ exports.CreateDefinition = {
319
319
  description: "Create the PROFILE1 monitor profile to measure for 90 seconds job JOB1 that runs on the AA31 and AA32 systems",
320
320
  options: "--profile PROFILE1 --jobname JOB1 --targsys AA31,AA32 --elapstime 90s",
321
321
  },
322
+ {
323
+ description: "Create the PROFILE1 monitor profile to measure job JOB1 that runs on the AA31 system, with the specific MAT profile details defined",
324
+ options: "--profile PROFILE1 --jobname JOB1 --targsys AA31 --host \"example.com\" --port 12345 --user johndoe --password qwerty",
325
+ },
322
326
  ]
323
327
  };
324
328
  //# sourceMappingURL=CreateProfile.definition.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"CreateProfile.definition.js","sourceRoot":"","sources":["../../../../src/cli/profile/create/CreateProfile.definition.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"CreateProfile.definition.js","sourceRoot":"","sources":["../../../../src/cli/profile/create/CreateProfile.definition.ts"],"names":[],"mappings":"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"}
@@ -111,6 +111,11 @@ exports.InvokeDefinition = {
111
111
  "and register the program listing",
112
112
  options: "--profile PROFILE1 --jobname JOB1 --targsys AA31 --listing",
113
113
  },
114
+ {
115
+ description: invkmsg +
116
+ "with the specific MAT profile details defined",
117
+ options: "--profile PROFILE1 --jobname JOB1 --targsys AA31 --host \"example.com\" --port 12345 --user johndoe --password qwerty",
118
+ },
114
119
  ]
115
120
  };
116
121
  //# sourceMappingURL=InvokeProfile.definition.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"InvokeProfile.definition.js","sourceRoot":"","sources":["../../../../src/cli/profile/invoke/InvokeProfile.definition.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;;;AAGH,MAAM,OAAO,GAAG,uFAAuF,CAAC;AAC3F,QAAA,gBAAgB,GAAuB;IAChD,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,CAAC,KAAK,CAAC;IAChB,OAAO,EAAE,8BAA8B;IACvC,WAAW,EAAE,oDAAoD;IACjE,OAAO,EAAE,SAAS,GAAG,wBAAwB;IAC7C,IAAI,EAAE,SAAS;IACf,OAAO,EAAE;QACL,QAAQ,EAAE,CAAC,KAAK,CAAC;KACpB;IACD,OAAO,EAAE;QACL;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,4EAA4E;gBACzF,wEAAwE;gBACxE,gFAAgF;gBAChF,uDAAuD;YACvD,IAAI,EAAE,QAAQ;YACd,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,4DAA4D;gBACzE,uEAAuE;gBACvE,6CAA6C;YAC7C,IAAI,EAAE,QAAQ;YACd,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,+FAA+F;gBAC5G,wDAAwD;gBACxD,oEAAoE;YACpE,IAAI,EAAE,QAAQ;YACd,QAAQ,EAAE,KAAK;SAClB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,0CAA0C;gBACvD,0FAA0F;gBAC1F,wFAAwF;gBACxF,uEAAuE;YACvE,IAAI,EAAE,QAAQ;YACd,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,qFAAqF;gBAClG,6EAA6E;YAC7E,IAAI,EAAE,QAAQ;YACd,QAAQ,EAAE,KAAK;SAClB;QACD;YACI,IAAI,EAAE,cAAc;YACpB,WAAW,EAAE,kFAAkF;gBAC/F,6EAA6E;YAC7E,IAAI,EAAE,QAAQ;YACd,QAAQ,EAAE,KAAK;SAClB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mFAAmF;gBAChG,wFAAwF;gBACxF,8EAA8E;gBAC9E,4FAA4F;gBAC5F,4FAA4F;gBAC5F,wFAAwF;gBACxF,0FAA0F;YAC1F,IAAI,EAAE,SAAS;YACf,QAAQ,EAAE,KAAK;SAClB;KACJ;IACD,QAAQ,EAAE;QACN;YACI,WAAW,EAAE,OAAO;YACpB,OAAO,EAAE,kDAAkD;SAC9D;QACD;YACI,WAAW,EAAE,OAAO;gBACpB,2EAA2E;YAC3E,OAAO,EAAE,qFAAqF;SACjG;QACD;YACI,WAAW,EAAE,OAAO;gBACpB,kCAAkC;YAClC,OAAO,EAAE,4DAA4D;SACxE;KACJ;CACJ,CAAC"}
1
+ {"version":3,"file":"InvokeProfile.definition.js","sourceRoot":"","sources":["../../../../src/cli/profile/invoke/InvokeProfile.definition.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;;;AAGH,MAAM,OAAO,GAAG,uFAAuF,CAAC;AAC3F,QAAA,gBAAgB,GAAuB;IAChD,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,CAAC,KAAK,CAAC;IAChB,OAAO,EAAE,8BAA8B;IACvC,WAAW,EAAE,oDAAoD;IACjE,OAAO,EAAE,SAAS,GAAG,wBAAwB;IAC7C,IAAI,EAAE,SAAS;IACf,OAAO,EAAE;QACL,QAAQ,EAAE,CAAC,KAAK,CAAC;KACpB;IACD,OAAO,EAAE;QACL;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,4EAA4E;gBACzF,wEAAwE;gBACxE,gFAAgF;gBAChF,uDAAuD;YACvD,IAAI,EAAE,QAAQ;YACd,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,4DAA4D;gBACzE,uEAAuE;gBACvE,6CAA6C;YAC7C,IAAI,EAAE,QAAQ;YACd,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,+FAA+F;gBAC5G,wDAAwD;gBACxD,oEAAoE;YACpE,IAAI,EAAE,QAAQ;YACd,QAAQ,EAAE,KAAK;SAClB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,0CAA0C;gBACvD,0FAA0F;gBAC1F,wFAAwF;gBACxF,uEAAuE;YACvE,IAAI,EAAE,QAAQ;YACd,QAAQ,EAAE,IAAI;SACjB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,qFAAqF;gBAClG,6EAA6E;YAC7E,IAAI,EAAE,QAAQ;YACd,QAAQ,EAAE,KAAK;SAClB;QACD;YACI,IAAI,EAAE,cAAc;YACpB,WAAW,EAAE,kFAAkF;gBAC/F,6EAA6E;YAC7E,IAAI,EAAE,QAAQ;YACd,QAAQ,EAAE,KAAK;SAClB;QACD;YACI,IAAI,EAAE,SAAS;YACf,WAAW,EAAE,mFAAmF;gBAChG,wFAAwF;gBACxF,8EAA8E;gBAC9E,4FAA4F;gBAC5F,4FAA4F;gBAC5F,wFAAwF;gBACxF,0FAA0F;YAC1F,IAAI,EAAE,SAAS;YACf,QAAQ,EAAE,KAAK;SAClB;KACJ;IACD,QAAQ,EAAE;QACN;YACI,WAAW,EAAE,OAAO;YACpB,OAAO,EAAE,kDAAkD;SAC9D;QACD;YACI,WAAW,EAAE,OAAO;gBACpB,2EAA2E;YAC3E,OAAO,EAAE,qFAAqF;SACjG;QACD;YACI,WAAW,EAAE,OAAO;gBACpB,kCAAkC;YAClC,OAAO,EAAE,4DAA4D;SACxE;QACD;YACI,WAAW,EAAE,OAAO;gBACpB,+CAA+C;YAC/C,OAAO,EAAE,uHAAuH;SACnI;KACJ;CACJ,CAAC"}
package/lib/imperative.js CHANGED
@@ -78,12 +78,12 @@ const config = {
78
78
  },
79
79
  createProfileExamples: [
80
80
  {
81
- options: "matprofile --prt http --hn localhost --pt 1234 --user user --pass pass --zowediscoverable true",
81
+ options: "matprofile --o http --H localhost --P 1234 --u user --pw pass --zowediscoverable true",
82
82
  description: "Create a MAT profile called \'matprofile\' using your MAT configuration and REST API details, " +
83
83
  "with the MAT REST API server integrated with the Zowe API Mediation Layer"
84
84
  },
85
85
  {
86
- options: "matprofile --prt http --hn localhost --pt 1234 --user user --pass pass --zowediscoverable false --listingDir \'c:\\listings\'",
86
+ options: "matprofile --o http --H localhost --P 1234 --u user --pw pass --zowediscoverable false --listingDir \'c:\\listings\'",
87
87
  description: "Create a MAT profile called \'matprofile\' using your MAT configuration and the details of the " +
88
88
  "MAT REST API server without integration with the Zowe API Mediation Layer," +
89
89
  "and define the \'c:\\listings\' directory to store program listings for instant analysis from your VS Code IDE"
@@ -1 +1 @@
1
- {"version":3,"file":"imperative.js","sourceRoot":"","sources":["../src/imperative.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAGH,yDAAsD;AAEtD,MAAM,MAAM,GAAsB;IAC9B,kBAAkB,EAAE,CAAC,+BAA+B,CAAC;IACrD,iBAAiB,EAAE,SAAS,GAAG,sBAAsB;IACrD,aAAa,EAAE,oEAAoE;IACnF,aAAa,EAAE,CAAC,KAAK,CAAC;IACtB,sBAAsB,EAAE,8EAA8E;QACtG,+EAA+E;IAC/E,kBAAkB,EAAE,kCAAkC;IACtD,IAAI,EAAE,KAAK;IACX,QAAQ,EAAE;QACN;YACE,IAAI,EAAE,KAAK;YACX,MAAM,EAAE;gBACN,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,gCAAgC;gBACvC,WAAW,EAAE,iCAAiC;gBAC9C,UAAU,EAAE;oBACV,QAAQ,EAAE;wBACR,gBAAgB,EAAE,uBAAU,CAAC,iBAAiB;wBAC9C,IAAI,EAAE,QAAQ;qBACf;oBACD,QAAQ,EAAE;wBACR,gBAAgB,EAAE,uBAAU,CAAC,iBAAiB;wBAC9C,IAAI,EAAE,QAAQ;qBACf;oBACD,IAAI,EAAE;wBACJ,gBAAgB,EAAE,uBAAU,CAAC,aAAa;wBAC1C,IAAI,EAAE,QAAQ;qBACf;oBACD,QAAQ,EAAE;wBACR,gBAAgB,EAAE,uBAAU,CAAC,gBAAgB;wBAC7C,IAAI,EAAE,QAAQ;wBACd,MAAM,EAAE,IAAI;qBACb;oBACD,QAAQ,EAAE;wBACR,gBAAgB,EAAE,uBAAU,CAAC,gBAAgB;wBAC7C,IAAI,EAAE,QAAQ;wBACd,MAAM,EAAE,IAAI;qBACb;oBACD,QAAQ,EAAE;wBACR,gBAAgB,EAAE,uBAAU,CAAC,iBAAiB;wBAC9C,IAAI,EAAE,QAAQ;qBACf;oBACD,kBAAkB,EAAE;wBAClB,gBAAgB,EAAE,uBAAU,CAAC,2BAA2B;wBACxD,IAAI,EAAE,SAAS;qBAChB;oBACD,UAAU,EAAE;wBACV,gBAAgB,EAAE,uBAAU,CAAC,kBAAkB;wBAC/C,IAAI,EAAE,QAAQ;qBACf;iBACF;gBACD,QAAQ,EAAE,EAAE;aACb;YACD,qBAAqB,EAAE;gBACvB;oBACE,OAAO,EAAE,gGAAgG;oBACzG,WAAW,EAAE,gGAAgG;wBAC3G,2EAA2E;iBAC9E;gBACD;oBACE,OAAO,EAAE,+HAA+H;oBACxI,WAAW,EAAE,iGAAiG;wBAC5G,4EAA4E;wBAC5E,gHAAgH;iBACnH;aACA;SACF;KACJ;CACJ,CAAC;AAEF,iBAAS,MAAM,CAAC"}
1
+ {"version":3,"file":"imperative.js","sourceRoot":"","sources":["../src/imperative.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAGH,yDAAsD;AAEtD,MAAM,MAAM,GAAsB;IAC9B,kBAAkB,EAAE,CAAC,+BAA+B,CAAC;IACrD,iBAAiB,EAAE,SAAS,GAAG,sBAAsB;IACrD,aAAa,EAAE,oEAAoE;IACnF,aAAa,EAAE,CAAC,KAAK,CAAC;IACtB,sBAAsB,EAAE,8EAA8E;QACtG,+EAA+E;IAC/E,kBAAkB,EAAE,kCAAkC;IACtD,IAAI,EAAE,KAAK;IACX,QAAQ,EAAE;QACN;YACE,IAAI,EAAE,KAAK;YACX,MAAM,EAAE;gBACN,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,gCAAgC;gBACvC,WAAW,EAAE,iCAAiC;gBAC9C,UAAU,EAAE;oBACV,QAAQ,EAAE;wBACR,gBAAgB,EAAE,uBAAU,CAAC,iBAAiB;wBAC9C,IAAI,EAAE,QAAQ;qBACf;oBACD,QAAQ,EAAE;wBACR,gBAAgB,EAAE,uBAAU,CAAC,iBAAiB;wBAC9C,IAAI,EAAE,QAAQ;qBACf;oBACD,IAAI,EAAE;wBACJ,gBAAgB,EAAE,uBAAU,CAAC,aAAa;wBAC1C,IAAI,EAAE,QAAQ;qBACf;oBACD,QAAQ,EAAE;wBACR,gBAAgB,EAAE,uBAAU,CAAC,gBAAgB;wBAC7C,IAAI,EAAE,QAAQ;wBACd,MAAM,EAAE,IAAI;qBACb;oBACD,QAAQ,EAAE;wBACR,gBAAgB,EAAE,uBAAU,CAAC,gBAAgB;wBAC7C,IAAI,EAAE,QAAQ;wBACd,MAAM,EAAE,IAAI;qBACb;oBACD,QAAQ,EAAE;wBACR,gBAAgB,EAAE,uBAAU,CAAC,iBAAiB;wBAC9C,IAAI,EAAE,QAAQ;qBACf;oBACD,kBAAkB,EAAE;wBAClB,gBAAgB,EAAE,uBAAU,CAAC,2BAA2B;wBACxD,IAAI,EAAE,SAAS;qBAChB;oBACD,UAAU,EAAE;wBACV,gBAAgB,EAAE,uBAAU,CAAC,kBAAkB;wBAC/C,IAAI,EAAE,QAAQ;qBACf;iBACF;gBACD,QAAQ,EAAE,EAAE;aACb;YACD,qBAAqB,EAAE;gBACvB;oBACE,OAAO,EAAE,uFAAuF;oBAChG,WAAW,EAAE,gGAAgG;wBAC3G,2EAA2E;iBAC9E;gBACD;oBACE,OAAO,EAAE,sHAAsH;oBAC/H,WAAW,EAAE,iGAAiG;wBAC5G,4EAA4E;wBAC5E,gHAAgH;iBACnH;aACA;SACF;KACJ;CACJ,CAAC;AAEF,iBAAS,MAAM,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@broadcom/mat-analyze-for-zowe-cli",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "MAT Analyze Plug-in for Zowe CLI",
5
5
  "author": "Broadcom",
6
6
  "license": "SEE LICENSE IN LICENSE",
@@ -29,6 +29,7 @@
29
29
  "configurationModule": "lib/imperative.js"
30
30
  },
31
31
  "dependencies": {
32
+ "@zowe/cli": "^7.0.0",
32
33
  "@broadcom/endevor-for-zowe-cli": "^7.0.0",
33
34
  "object-mapper": "6.2.0"
34
35
  },
@@ -42,8 +43,8 @@
42
43
  "@types/mustache": "^0.8.32",
43
44
  "@types/node": "^14.0.1",
44
45
  "@types/yargs": "8.0.2",
45
- "@zowe/cli": "^6.40.1",
46
- "@zowe/imperative": "^5.0.0",
46
+ "@zowe/cli-test-utils": "^7.1.0",
47
+ "@zowe/imperative": "^5.1.0",
47
48
  "config": "^3.2.2",
48
49
  "copyfiles": "2.2.0",
49
50
  "env-cmd": "^8.0.2",