@broadcom/mat-analyze-for-zowe-cli 3.0.0 → 3.1.0

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 (257) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/LICENSE +2 -2
  3. package/README.md +333 -78
  4. package/lib/api/MATRest.d.ts +5 -0
  5. package/lib/api/MATRest.js +7 -2
  6. package/lib/api/error/HistogramError.js +1 -1
  7. package/lib/api/request/ICreateProfile.js +1 -1
  8. package/lib/api/request/ICreateProfileRequest.js +1 -1
  9. package/lib/api/request/IInvokeProfile.js +1 -1
  10. package/lib/api/request/IInvokeProfileRequest.js +1 -1
  11. package/lib/api/response/IAdabas.d.ts +4 -0
  12. package/lib/api/response/IAdabas.js +25 -0
  13. package/lib/api/response/IAnalysis.js +1 -1
  14. package/lib/api/response/IAuth.js +1 -1
  15. package/lib/api/response/ICallStack.js +1 -1
  16. package/lib/api/response/ICallerid.js +1 -1
  17. package/lib/api/response/ICicstat.js +1 -1
  18. package/lib/api/response/ICodeview.js +1 -1
  19. package/lib/api/response/ICsect.js +1 -1
  20. package/lib/api/response/IDB2View.js +1 -1
  21. package/lib/api/response/IDML.js +1 -1
  22. package/lib/api/response/IDelayLocations.js +1 -1
  23. package/lib/api/response/IDelayviews.js +1 -1
  24. package/lib/api/response/IHistogram.js +1 -1
  25. package/lib/api/response/IHistory.js +1 -1
  26. package/lib/api/response/IIDMSModule.js +1 -1
  27. package/lib/api/response/IIDMSModuleDetail.js +1 -1
  28. package/lib/api/response/IIDMSTask.js +1 -1
  29. package/lib/api/response/IIMSSSAView.js +1 -1
  30. package/lib/api/response/IIMSStatement.js +1 -1
  31. package/lib/api/response/IIMSView.js +1 -1
  32. package/lib/api/response/IIMSViewDBDName.js +1 -1
  33. package/lib/api/response/IIMSViewPSBName.js +1 -1
  34. package/lib/api/response/IIMSViewRegion.js +1 -1
  35. package/lib/api/response/IListProfile.js +1 -1
  36. package/lib/api/response/IMonitorList.js +1 -1
  37. package/lib/api/response/IOverview.js +1 -1
  38. package/lib/api/response/IProfileList.js +1 -1
  39. package/lib/api/response/IResponse.js +1 -1
  40. package/lib/api/response/ITranview.js +1 -1
  41. package/lib/cli/monitor/Monitor.definition.js +6 -6
  42. package/lib/cli/monitor/adabas/Adabas.definition.d.ts +2 -0
  43. package/lib/cli/monitor/adabas/Adabas.definition.js +65 -0
  44. package/lib/cli/monitor/adabas/Adabas.handler.d.ts +7 -0
  45. package/lib/cli/monitor/adabas/Adabas.handler.js +53 -0
  46. package/lib/cli/monitor/codeview/Codeview.definition.js +7 -4
  47. package/lib/cli/monitor/codeview/callerid/Callerid.definition.js +1 -1
  48. package/lib/cli/monitor/codeview/callerid/Callerid.handler.js +5 -2
  49. package/lib/cli/monitor/codeview/csect/Csect.definition.js +6 -6
  50. package/lib/cli/monitor/codeview/csect/Csect.handler.js +5 -2
  51. package/lib/cli/monitor/codeview/histogram/Histogram.definition.d.ts +16 -0
  52. package/lib/cli/monitor/codeview/histogram/Histogram.definition.js +49 -0
  53. package/lib/cli/monitor/codeview/histogram/csect/HistogramCsect.definition.d.ts +2 -0
  54. package/lib/cli/monitor/codeview/{Histogram/Histogram.definition.js → histogram/csect/HistogramCsect.definition.js} +19 -16
  55. package/lib/cli/monitor/codeview/histogram/csect/HistogramCsect.handler.d.ts +11 -0
  56. package/lib/cli/monitor/codeview/{Histogram/Histogram.handler.js → histogram/csect/HistogramCsect.handler.js} +34 -8
  57. package/lib/cli/monitor/codeview/histogram/ideal/HistogramIdeal.definition.d.ts +2 -0
  58. package/lib/cli/monitor/codeview/histogram/ideal/HistogramIdeal.definition.js +97 -0
  59. package/lib/cli/monitor/codeview/histogram/ideal/HistogramIdeal.handler.d.ts +8 -0
  60. package/lib/cli/monitor/codeview/histogram/ideal/HistogramIdeal.handler.js +56 -0
  61. package/lib/cli/monitor/codeview/histogram/natural/HistogramNatural.definition.d.ts +2 -0
  62. package/lib/cli/monitor/codeview/histogram/natural/HistogramNatural.definition.js +81 -0
  63. package/lib/cli/monitor/codeview/histogram/natural/HistogramNatural.handler.d.ts +8 -0
  64. package/lib/cli/monitor/codeview/histogram/natural/HistogramNatural.handler.js +56 -0
  65. package/lib/cli/monitor/codeview/ideal/Ideal.definition.d.ts +2 -0
  66. package/lib/cli/monitor/codeview/ideal/Ideal.definition.js +65 -0
  67. package/lib/cli/monitor/codeview/ideal/Ideal.handler.d.ts +7 -0
  68. package/lib/cli/monitor/codeview/ideal/Ideal.handler.js +53 -0
  69. package/lib/cli/monitor/codeview/module/Module.definition.js +1 -1
  70. package/lib/cli/monitor/codeview/module/Module.handler.js +5 -2
  71. package/lib/cli/monitor/codeview/natural/Natural.definition.d.ts +2 -0
  72. package/lib/cli/monitor/codeview/natural/Natural.definition.js +66 -0
  73. package/lib/cli/monitor/codeview/natural/Natural.handler.d.ts +7 -0
  74. package/lib/cli/monitor/codeview/natural/Natural.handler.js +53 -0
  75. package/lib/cli/monitor/db2/DB2.definition.js +1 -1
  76. package/lib/cli/monitor/db2/db2view/DB2View.definition.js +1 -1
  77. package/lib/cli/monitor/db2/db2view/DB2View.handler.js +5 -2
  78. package/lib/cli/monitor/db2/sqlview/SQLView.definition.js +1 -1
  79. package/lib/cli/monitor/db2/sqlview/SQLView.handler.js +5 -2
  80. package/lib/cli/monitor/delayview/Delayview.definition.js +1 -1
  81. package/lib/cli/monitor/delayview/address/Address.definition.js +1 -1
  82. package/lib/cli/monitor/delayview/address/Address.handler.js +5 -2
  83. package/lib/cli/monitor/delayview/delay/Delay.definition.js +1 -1
  84. package/lib/cli/monitor/delayview/delay/Delay.handler.js +5 -2
  85. package/lib/cli/monitor/history/History.definition.js +1 -1
  86. package/lib/cli/monitor/history/History.handler.js +5 -2
  87. package/lib/cli/monitor/idms/IDMS.definition.js +1 -1
  88. package/lib/cli/monitor/idms/dml/DML.definition.js +1 -1
  89. package/lib/cli/monitor/idms/dml/DML.handler.js +5 -2
  90. package/lib/cli/monitor/idms/module/IDMSModule.definition.js +1 -1
  91. package/lib/cli/monitor/idms/module/IDMSModule.handler.js +5 -2
  92. package/lib/cli/monitor/idms/task/IDMSTask.definition.js +1 -1
  93. package/lib/cli/monitor/idms/task/IDMSTask.handler.js +5 -2
  94. package/lib/cli/monitor/ims/IMS.definition.js +1 -1
  95. package/lib/cli/monitor/ims/dbdname/DBDName.definition.js +1 -1
  96. package/lib/cli/monitor/ims/dbdname/DBDName.handler.js +5 -2
  97. package/lib/cli/monitor/ims/imsview/IMSView.definition.js +1 -1
  98. package/lib/cli/monitor/ims/imsview/IMSView.handler.js +5 -2
  99. package/lib/cli/monitor/ims/psbname/PSBName.definition.js +1 -1
  100. package/lib/cli/monitor/ims/psbname/PSBName.handler.js +5 -2
  101. package/lib/cli/monitor/ims/region/Region.definition.js +1 -1
  102. package/lib/cli/monitor/ims/region/Region.handler.js +5 -2
  103. package/lib/cli/monitor/ims/ssa/SSA.definition.js +1 -1
  104. package/lib/cli/monitor/ims/ssa/SSA.handler.js +5 -2
  105. package/lib/cli/monitor/ims/statement/Statement.definition.js +1 -1
  106. package/lib/cli/monitor/ims/statement/Statement.handler.js +5 -2
  107. package/lib/cli/monitor/overview/Overview.definition.js +1 -1
  108. package/lib/cli/monitor/overview/Overview.handler.js +5 -2
  109. package/lib/cli/monitor/tranview/Tranview.definition.js +1 -1
  110. package/lib/cli/monitor/tranview/all/All.definition.js +1 -1
  111. package/lib/cli/monitor/tranview/all/All.handler.js +5 -2
  112. package/lib/cli/monitor/tranview/callerid/Callerid.definition.js +1 -1
  113. package/lib/cli/monitor/tranview/callerid/Callerid.handler.js +5 -2
  114. package/lib/cli/monitor/tranview/callstack/CallStack.definition.js +1 -1
  115. package/lib/cli/monitor/tranview/callstack/CallStack.handler.js +5 -2
  116. package/lib/cli/monitor/tranview/csect/CsectDetail.definition.js +6 -6
  117. package/lib/cli/monitor/tranview/csect/CsectDetail.handler.js +5 -2
  118. package/lib/cli/monitor/tranview/delay/DelayDetail.definition.js +1 -1
  119. package/lib/cli/monitor/tranview/delay/DelayDetail.handler.js +5 -2
  120. package/lib/cli/monitor/tranview/module/Module.definition.js +1 -1
  121. package/lib/cli/monitor/tranview/module/Module.handler.js +5 -2
  122. package/lib/cli/monitor/tranview/stat/Cicstat.definition.js +1 -1
  123. package/lib/cli/monitor/tranview/stat/Cicstat.handler.js +5 -2
  124. package/lib/cli/profile/Profile.definition.js +1 -1
  125. package/lib/cli/profile/create/CreateProfile.definition.js +1 -1
  126. package/lib/cli/profile/create/CreateProfile.handler.js +5 -2
  127. package/lib/cli/profile/invoke/InvokeProfile.definition.js +1 -1
  128. package/lib/cli/profile/invoke/InvokeProfile.handler.js +5 -2
  129. package/lib/cli/profile/listprofile/ListProfile.definition.js +1 -1
  130. package/lib/cli/profile/listprofile/ListProfile.handler.js +5 -2
  131. package/lib/cli/session/MATSession.js +1 -1
  132. package/lib/config/config.d.ts +24 -0
  133. package/lib/config/config.js +99 -0
  134. package/lib/handlers/AbstractAnalyzeHandler.js +5 -2
  135. package/lib/handlers/AbstractGetHandler.js +5 -2
  136. package/lib/handlers/AbstractObjectDisplayHandler.js +5 -2
  137. package/lib/handlers/AbstractPostHandler.js +5 -2
  138. package/lib/handlers/AbstractProfileActionHandler.js +5 -2
  139. package/lib/handlers/AbstractRestHandler.js +1 -1
  140. package/lib/handlers/AbstractTableDisplayHandler.js +5 -2
  141. package/lib/healthCheck.Handler.js +1 -1
  142. package/lib/imperative.js +1 -1
  143. package/lib/index.js +1 -1
  144. package/package.json +22 -7
  145. package/lib/api/MATRest.js.map +0 -1
  146. package/lib/api/error/HistogramError.js.map +0 -1
  147. package/lib/api/request/ICreateProfile.js.map +0 -1
  148. package/lib/api/request/ICreateProfileRequest.js.map +0 -1
  149. package/lib/api/request/IInvokeProfile.js.map +0 -1
  150. package/lib/api/request/IInvokeProfileRequest.js.map +0 -1
  151. package/lib/api/response/IAnalysis.js.map +0 -1
  152. package/lib/api/response/IAuth.js.map +0 -1
  153. package/lib/api/response/ICallStack.js.map +0 -1
  154. package/lib/api/response/ICallerid.js.map +0 -1
  155. package/lib/api/response/ICicstat.js.map +0 -1
  156. package/lib/api/response/ICodeview.js.map +0 -1
  157. package/lib/api/response/ICsect.js.map +0 -1
  158. package/lib/api/response/IDB2View.js.map +0 -1
  159. package/lib/api/response/IDML.js.map +0 -1
  160. package/lib/api/response/IDelayLocations.js.map +0 -1
  161. package/lib/api/response/IDelayviews.js.map +0 -1
  162. package/lib/api/response/IHistogram.js.map +0 -1
  163. package/lib/api/response/IHistory.js.map +0 -1
  164. package/lib/api/response/IIDMSModule.js.map +0 -1
  165. package/lib/api/response/IIDMSModuleDetail.js.map +0 -1
  166. package/lib/api/response/IIDMSTask.js.map +0 -1
  167. package/lib/api/response/IIMSSSAView.js.map +0 -1
  168. package/lib/api/response/IIMSStatement.js.map +0 -1
  169. package/lib/api/response/IIMSView.js.map +0 -1
  170. package/lib/api/response/IIMSViewDBDName.js.map +0 -1
  171. package/lib/api/response/IIMSViewPSBName.js.map +0 -1
  172. package/lib/api/response/IIMSViewRegion.js.map +0 -1
  173. package/lib/api/response/IListProfile.js.map +0 -1
  174. package/lib/api/response/IMonitorList.js.map +0 -1
  175. package/lib/api/response/IOverview.js.map +0 -1
  176. package/lib/api/response/IProfileList.js.map +0 -1
  177. package/lib/api/response/IResponse.js.map +0 -1
  178. package/lib/api/response/ITranview.js.map +0 -1
  179. package/lib/cli/monitor/Monitor.definition.js.map +0 -1
  180. package/lib/cli/monitor/codeview/Codeview.definition.js.map +0 -1
  181. package/lib/cli/monitor/codeview/Histogram/Histogram.definition.d.ts +0 -2
  182. package/lib/cli/monitor/codeview/Histogram/Histogram.definition.js.map +0 -1
  183. package/lib/cli/monitor/codeview/Histogram/Histogram.handler.d.ts +0 -11
  184. package/lib/cli/monitor/codeview/Histogram/Histogram.handler.js.map +0 -1
  185. package/lib/cli/monitor/codeview/callerid/Callerid.definition.js.map +0 -1
  186. package/lib/cli/monitor/codeview/callerid/Callerid.handler.js.map +0 -1
  187. package/lib/cli/monitor/codeview/csect/Csect.definition.js.map +0 -1
  188. package/lib/cli/monitor/codeview/csect/Csect.handler.js.map +0 -1
  189. package/lib/cli/monitor/codeview/module/Module.definition.js.map +0 -1
  190. package/lib/cli/monitor/codeview/module/Module.handler.js.map +0 -1
  191. package/lib/cli/monitor/db2/DB2.definition.js.map +0 -1
  192. package/lib/cli/monitor/db2/db2view/DB2View.definition.js.map +0 -1
  193. package/lib/cli/monitor/db2/db2view/DB2View.handler.js.map +0 -1
  194. package/lib/cli/monitor/db2/sqlview/SQLView.definition.js.map +0 -1
  195. package/lib/cli/monitor/db2/sqlview/SQLView.handler.js.map +0 -1
  196. package/lib/cli/monitor/delayview/Delayview.definition.js.map +0 -1
  197. package/lib/cli/monitor/delayview/address/Address.definition.js.map +0 -1
  198. package/lib/cli/monitor/delayview/address/Address.handler.js.map +0 -1
  199. package/lib/cli/monitor/delayview/delay/Delay.definition.js.map +0 -1
  200. package/lib/cli/monitor/delayview/delay/Delay.handler.js.map +0 -1
  201. package/lib/cli/monitor/history/History.definition.js.map +0 -1
  202. package/lib/cli/monitor/history/History.handler.js.map +0 -1
  203. package/lib/cli/monitor/idms/IDMS.definition.js.map +0 -1
  204. package/lib/cli/monitor/idms/dml/DML.definition.js.map +0 -1
  205. package/lib/cli/monitor/idms/dml/DML.handler.js.map +0 -1
  206. package/lib/cli/monitor/idms/module/IDMSModule.definition.js.map +0 -1
  207. package/lib/cli/monitor/idms/module/IDMSModule.handler.js.map +0 -1
  208. package/lib/cli/monitor/idms/task/IDMSTask.definition.js.map +0 -1
  209. package/lib/cli/monitor/idms/task/IDMSTask.handler.js.map +0 -1
  210. package/lib/cli/monitor/ims/IMS.definition.js.map +0 -1
  211. package/lib/cli/monitor/ims/dbdname/DBDName.definition.js.map +0 -1
  212. package/lib/cli/monitor/ims/dbdname/DBDName.handler.js.map +0 -1
  213. package/lib/cli/monitor/ims/imsview/IMSView.definition.js.map +0 -1
  214. package/lib/cli/monitor/ims/imsview/IMSView.handler.js.map +0 -1
  215. package/lib/cli/monitor/ims/psbname/PSBName.definition.js.map +0 -1
  216. package/lib/cli/monitor/ims/psbname/PSBName.handler.js.map +0 -1
  217. package/lib/cli/monitor/ims/region/Region.definition.js.map +0 -1
  218. package/lib/cli/monitor/ims/region/Region.handler.js.map +0 -1
  219. package/lib/cli/monitor/ims/ssa/SSA.definition.js.map +0 -1
  220. package/lib/cli/monitor/ims/ssa/SSA.handler.js.map +0 -1
  221. package/lib/cli/monitor/ims/statement/Statement.definition.js.map +0 -1
  222. package/lib/cli/monitor/ims/statement/Statement.handler.js.map +0 -1
  223. package/lib/cli/monitor/overview/Overview.definition.js.map +0 -1
  224. package/lib/cli/monitor/overview/Overview.handler.js.map +0 -1
  225. package/lib/cli/monitor/tranview/Tranview.definition.js.map +0 -1
  226. package/lib/cli/monitor/tranview/all/All.definition.js.map +0 -1
  227. package/lib/cli/monitor/tranview/all/All.handler.js.map +0 -1
  228. package/lib/cli/monitor/tranview/callerid/Callerid.definition.js.map +0 -1
  229. package/lib/cli/monitor/tranview/callerid/Callerid.handler.js.map +0 -1
  230. package/lib/cli/monitor/tranview/callstack/CallStack.definition.js.map +0 -1
  231. package/lib/cli/monitor/tranview/callstack/CallStack.handler.js.map +0 -1
  232. package/lib/cli/monitor/tranview/csect/CsectDetail.definition.js.map +0 -1
  233. package/lib/cli/monitor/tranview/csect/CsectDetail.handler.js.map +0 -1
  234. package/lib/cli/monitor/tranview/delay/DelayDetail.definition.js.map +0 -1
  235. package/lib/cli/monitor/tranview/delay/DelayDetail.handler.js.map +0 -1
  236. package/lib/cli/monitor/tranview/module/Module.definition.js.map +0 -1
  237. package/lib/cli/monitor/tranview/module/Module.handler.js.map +0 -1
  238. package/lib/cli/monitor/tranview/stat/Cicstat.definition.js.map +0 -1
  239. package/lib/cli/monitor/tranview/stat/Cicstat.handler.js.map +0 -1
  240. package/lib/cli/profile/Profile.definition.js.map +0 -1
  241. package/lib/cli/profile/create/CreateProfile.definition.js.map +0 -1
  242. package/lib/cli/profile/create/CreateProfile.handler.js.map +0 -1
  243. package/lib/cli/profile/invoke/InvokeProfile.definition.js.map +0 -1
  244. package/lib/cli/profile/invoke/InvokeProfile.handler.js.map +0 -1
  245. package/lib/cli/profile/listprofile/ListProfile.definition.js.map +0 -1
  246. package/lib/cli/profile/listprofile/ListProfile.handler.js.map +0 -1
  247. package/lib/cli/session/MATSession.js.map +0 -1
  248. package/lib/handlers/AbstractAnalyzeHandler.js.map +0 -1
  249. package/lib/handlers/AbstractGetHandler.js.map +0 -1
  250. package/lib/handlers/AbstractObjectDisplayHandler.js.map +0 -1
  251. package/lib/handlers/AbstractPostHandler.js.map +0 -1
  252. package/lib/handlers/AbstractProfileActionHandler.js.map +0 -1
  253. package/lib/handlers/AbstractRestHandler.js.map +0 -1
  254. package/lib/handlers/AbstractTableDisplayHandler.js.map +0 -1
  255. package/lib/healthCheck.Handler.js.map +0 -1
  256. package/lib/imperative.js.map +0 -1
  257. package/lib/index.js.map +0 -1
package/CHANGELOG.md ADDED
@@ -0,0 +1,24 @@
1
+ # Change log
2
+
3
+ All notable changes to this project are documented in this file.
4
+
5
+ > **Note:** To use the updated CLI commands, you must first upgrade the MAT REST API by following
6
+ > the provided upgrade procedure. This applies to all updated and new commands in this release.
7
+
8
+ ## `3.1.0` - 2025-03-26
9
+ ### Added
10
+ - Support for the `histogram` commands in **IDEAL** and **NATURAL** modes.
11
+ - Support for the `codeview` commands in **IDEAL** and **NATURAL** modes.
12
+ - Support for the `adabas` commands.
13
+ ### Changed
14
+ - The previous histogram command has been replaced with a new version that supports **CSECT**
15
+ mode. Command `zowe mat monitor codeview histogram` require positional argument `csect` for the
16
+ **CSECT** mode: `zowe mat monitor codeview histogram csect [options]`
17
+
18
+ ## `3.0.1`
19
+
20
+ - Updated the profile creation instructions in documentation
21
+
22
+ ## `3.0.0`
23
+
24
+ - Release for Zowe v3
package/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2023 Broadcom. All Rights Reserved. The term
1
+ Copyright (c) 2025 Broadcom. All Rights Reserved. The term
2
2
  "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
3
3
 
4
4
  This software and all information contained therein is
@@ -17,4 +17,4 @@ BE LIABLE TO THE END USER OR ANY THIRD PARTY FOR ANY LOSS OR
17
17
  DAMAGE, DIRECT OR INDIRECT, FROM THE USE OF THIS SOFTWARE,
18
18
  INCLUDING WITHOUT LIMITATION, LOST PROFITS, BUSINESS
19
19
  INTERRUPTION, GOODWILL, OR LOST DATA, EVEN IF BROADCOM IS
20
- EXPRESSLY ADVISED OF SUCH LOSS OR DAMAGE.
20
+ EXPRESSLY ADVISED OF SUCH LOSS OR DAMAGE.
package/README.md CHANGED
@@ -11,7 +11,7 @@ You can use the MAT Analyze plug-in for Zowe CLI to perform the following tasks:
11
11
  - Analyze the measurement data.
12
12
  Access the measurement data from Mainframe Application Tuner that is available to you in the CLI in the form of MAT analysis views.
13
13
  - Address performance issues.
14
- With the source program listing registered with MAT, users of Visual Studio Code (VS Code) IDE can obtain the Histogram details and display specific source program locations that are associated with the most resource-consuming program modules and CSECTs. When you request the Histogram measurement details from your VS Code command line terminal, the MAT Analyze plug-in for Zowe CLI transfers the source code listing to your local machine and navigates you directly to the specific line and column number of the source code, which enables you to immediately inspect the program statement and identify possible tuning opportunities.
14
+ With the source program listing registered with MAT, users of Visual Studio Code (VS Code) IDE can obtain the Histogram measurement details and display specific source program locations that are associated with the most resource-consuming program modules and CSECTs. When you request the Histogram measurement details from your VS Code command line terminal, the MAT Analyze plug-in for Zowe CLI transfers the source code listing to your local machine and navigates you directly to the specific line and column number of the source code, which enables you to immediately inspect the program statement and identify possible tuning opportunities.
15
15
 
16
16
  # Table of Contents
17
17
 
@@ -32,33 +32,39 @@ You can use the MAT Analyze plug-in for Zowe CLI to perform the following tasks:
32
32
  - [delayview](#delayview)
33
33
  - [delay | de](#delay--de)
34
34
  - [address | ad](#address--ad)
35
- - [codeview](#codeview)
36
- - [module | mod](#module--mod)
37
- - [csect | cs](#csect--cs)
38
- - [histogram | hsg](#histogram--hsg)
39
- - [callerid | cil](#callerid--cil)
40
- - [db2](#db2)
41
- - [db2view | db2](#db2view--db2)
42
- - [sqlstmt | sql](#sqlstmt--sql)
43
- - [idms](#idms)
44
- - [dml | dml](#dml--dml)
45
- - [module | mod](#idms)
46
- - [task | ts](#task--ts)
47
- - [ims](#ims)
48
- - [dbdname | dbd](#dbdname--dbd)
49
- - [imsview | imsv](#imsview--imsv)
50
- - [psbname | psb](#psbname--psb)
51
- - [region | reg](#region--reg)
52
- - [ssa | ssa](#ssa--ssa)
53
- - [statement | stat](#statement--stat)
54
- - [tranview](#tranview)
55
- - [all | all](#all--all)
56
- - [module | mod](#tranview)
57
- - [callerid | cid](#callerid--cid)
58
- - [callstack | csk](#callstack--csk)
59
- - [csect | csd](#csect--csd)
60
- - [delay | dl](#delay--dl)
61
- - [stat | cis](#stat--cis)
35
+ - [adabas | ada](#adabas--ada)
36
+ - [CODEVIEW](#codeview--cv)
37
+ - [module | mod](#module--mod)
38
+ - [csect | cs](#csect--cs)
39
+ - [natural | nat](#natural--nat)
40
+ - [ideal | idl](#ideal--idl)
41
+ - [callerid | cil](#callerid--cil)
42
+ - [histogram](#histogram)
43
+ - [csect | cs](#histogram_csect--cs)
44
+ - [ideal | idl](#histogram_ideal--idl)
45
+ - [natural | nat](#histogram_natural--nat)
46
+ - [db2](#db2)
47
+ - [db2view | db2](#db2view--db2)
48
+ - [sqlstmt | sql](#sqlstmt--sql)
49
+ - [idms](#idms)
50
+ - [dml | dml](#dml--dml)
51
+ - [module | mod](#idms)
52
+ - [task | ts](#task--ts)
53
+ - [ims](#ims)
54
+ - [dbdname | dbd](#dbdname--dbd)
55
+ - [imsview | imsv](#imsview--imsv)
56
+ - [psbname | psb](#psbname--psb)
57
+ - [region | reg](#region--reg)
58
+ - [ssa | ssa](#ssa--ssa)
59
+ - [statement | stat](#statement--stat)
60
+ - [tranview](#tranview)
61
+ - [all | all](#all--all)
62
+ - [module | mod](#tranview)
63
+ - [callerid | cid](#callerid--cid)
64
+ - [callstack | csk](#callstack--csk)
65
+ - [csect | csd](#csect--csd)
66
+ - [delay | dl](#delay--dl)
67
+ - [stat | cis](#stat--cis)
62
68
  - [Uninstall the MAT Analyze Plug-in for Zowe CLI](#uninstall-the-mat-analyze-plug-in-for-zowe-cli)
63
69
 
64
70
  # Installation
@@ -96,23 +102,25 @@ Successful validation of the plug-in returns the response "This plugin was succe
96
102
 
97
103
  ## Create a MAT Profile
98
104
 
99
- 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 configuration file and add a section with the MAT profile details:
100
-
101
- ```
102
- "mat": {
103
-             "type": "mat",
104
-             "properties": {
105
-                 "host": "example.com",
106
-                 "protocol": "http",
107
-                 "port": "12345",
108
-                 "user": "johndoe",
109
-                 "password": "qwerty",
110
-                 "listingDir": "c:\listings",
111
-                 "rejectUnauthorized": false
112
-             },
113
-             "secure": []
114
-         },
115
- ```
105
+ 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. The details of the MAT profile are stored in the Zowe configuration file. To create MAT profile, complete the following steps:
106
+
107
+ 1. To create a global Zowe configuration file, use the command `zowe config init --global-config`.
108
+ 2. Specify the host, username, and password. Your credentials are automatically encripted and stored.
109
+ 3. To create MAT profile, open the created zowe.config json file and add a section with the MAT profile details:
110
+
111
+ ```
112
+ "mat": {
113
+ "type": "mat",
114
+ "properties": {
115
+ "host": "example.com",
116
+ "protocol": "http",
117
+ "port": 12345,
118
+ "listingDir": "c:\\listings",
119
+ "rejectUnauthorized": false
120
+ },
121
+ "secure": []
122
+ },
123
+ ```
116
124
 
117
125
  ## Use MAT Profile Options
118
126
 
@@ -622,7 +630,48 @@ $ zowe mat monitor delayview address --profile TESTPROF –-majorcategory "PC ro
622
630
  $ zowe mat monitor delayview address --mon_num 5 –-majorcategory "PC routine delay" –-minorcategory "PC CALL" --host "example.com" --port 12345 --user johndoe --password qwerty
623
631
  ```
624
632
 
625
- ### codeview
633
+ ### adabas | ada
634
+
635
+ Get the Adabas measurement details.
636
+
637
+ **Usage**
638
+
639
+ ```
640
+ $ zowe mat monitor adabas [options]
641
+ ```
642
+
643
+ **Options**
644
+ `--profile` _(string)_
645
+ Specifies the name of the profile that you want to analyze. When you specify the profile name, you get the data for the latest measurement within the specified profile.
646
+
647
+ `--mon_num` _(number)_
648
+ Specifies the unique monitor number of the measurement.
649
+
650
+ **Profile Options**
651
+ `--mat-profile` | `--mat-p` _(string)_
652
+ The name of a (mat) profile to load for this command execution.
653
+
654
+ **Examples**
655
+
656
+ - Get the Adabas measurement details for monitor number 5:
657
+
658
+ ```
659
+ $ zowe mat monitor adabas --mon_num 5
660
+ ```
661
+
662
+ - Get the Adabas measurement details for the latest monitor in the TESTPROF profile:
663
+
664
+ ```
665
+ $ zowe mat monitor adabas --profile TESTPROF
666
+ ```
667
+
668
+ - Get the Adabas measurement details for monitor number 5, with the specific MAT profile details defined:
669
+
670
+ ```
671
+ $ zowe mat monitor adabas --mon_num 5 --host "example.com" --port 12345 --user johndoe --password qwerty
672
+ ```
673
+
674
+ ### codeview | cv
626
675
 
627
676
  The commands from the CODEVIEW group enable you to get the CodeView measurement details.
628
677
 
@@ -677,7 +726,7 @@ $ zowe mat monitor codeview module --mon_num 5 --host "example.com" --port 12345
677
726
 
678
727
  #### csect | cs
679
728
 
680
- Get the CodeView measurement details in Csect mode.
729
+ Get the CodeView measurement details in CSECT mode.
681
730
 
682
731
  **Usage**
683
732
 
@@ -698,32 +747,175 @@ The name of a (mat) profile to load for this command execution.
698
747
 
699
748
  **Examples**
700
749
 
701
- - Get the CodeView measurement details in Csect mode for monitor number 5:
750
+ - Get the CodeView measurement details in CSECT mode for monitor number 5:
702
751
 
703
752
  ```
704
753
  $ zowe mat monitor codeview csect --mon_num 5
705
754
  ```
706
755
 
707
- - Get the CodeView measurement details in Csect mode for the latest monitor in the TESTPROF profile:
756
+ - Get the CodeView measurement details in CSECT mode for the latest monitor in the TESTPROF profile:
708
757
 
709
758
  ```
710
759
  $ zowe mat monitor codeview csect --profile TESTPROF
711
760
  ```
712
761
 
713
- - Get the CodeView measurement details in Csect mode for monitor number 5, with the specific MAT profile details defined:
762
+ - Get the CodeView measurement details in CSECT mode for monitor number 5, with the specific MAT profile details defined:
714
763
 
715
764
  ```
716
765
  $ zowe mat monitor codeview csect --mon_num 5 --host "example.com" --port 12345 --user johndoe --password qwerty
717
766
  ```
718
767
 
719
- #### histogram | hsg
768
+ #### natural | nat
769
+
770
+ Get the CodeView measurement details in Natural mode.
771
+
772
+ **Usage**
773
+
774
+ ```
775
+ $ zowe mat monitor codeview natural [options]
776
+ ```
777
+
778
+ **Options**
779
+ `--profile` _(string)_
780
+ Specifies the name of the profile that you want to analyze. When you specify the profile name, you get the data for the latest measurement within the specified profile.
781
+
782
+ `--mon_num` _(number)_
783
+ Specifies the unique monitor number of the measurement.
784
+
785
+ **Profile Options**
786
+ `--mat-profile` | `--mat-p` _(string)_
787
+ The name of a (mat) profile to load for this command execution.
788
+
789
+ **Examples**
790
+
791
+ - Get the CodeView measurement details in Natural mode for monitor number 5:
792
+
793
+ ```
794
+ $ zowe mat monitor codeview natural --mon_num 5
795
+ ```
796
+
797
+ - Get the CodeView measurement details in Natural mode for the latest monitor in the TESTPROF
798
+ profile:
799
+
800
+ ```
801
+ $ zowe mat monitor codeview natural --profile TESTPROF
802
+ ```
803
+
804
+ - Get the CodeView measurement details in Natural mode for monitor number 5, with the specific MAT
805
+ profile details defined:
806
+
807
+ ```
808
+ $ zowe mat monitor codeview natural --mon_num 5 --host "example.com" --port 12345 --user johndoe
809
+ --password qwerty
810
+ ```
811
+
812
+ #### ideal | idl
720
813
 
721
- Get the Histogram details for the measurement.
814
+ Get the CodeView measurement details in Ideal mode.
722
815
 
723
816
  **Usage**
724
817
 
725
818
  ```
726
- $ zowe mat monitor codeview histogram [options]
819
+ $ zowe mat monitor codeview ideal [options]
820
+ ```
821
+
822
+ **Options**
823
+ `--profile` _(string)_
824
+ Specifies the name of the profile that you want to analyze. When you specify the profile name, you get the data for the latest measurement within the specified profile.
825
+
826
+ `--mon_num` _(number)_
827
+ Specifies the unique monitor number of the measurement.
828
+
829
+ **Profile Options**
830
+ `--mat-profile` | `--mat-p` _(string)_
831
+ The name of a (mat) profile to load for this command execution.
832
+
833
+ **Examples**
834
+
835
+ - Get the CodeView measurement details in Ideal mode for monitor number 5:
836
+
837
+ ```
838
+ $ zowe mat monitor codeview ideal --mon_num 5
839
+ ```
840
+
841
+ - Get the CodeView measurement details in Ideal mode for the latest monitor in the TESTPROF profile:
842
+
843
+ ```
844
+ $ zowe mat monitor codeview ideal --profile TESTPROF
845
+ ```
846
+
847
+ - Get the CodeView measurement details in Ideal mode for monitor number 5, with the specific MAT profile details defined:
848
+
849
+ ```
850
+ $ zowe mat monitor codeview ideal --mon_num 5 --host "example.com" --port 12345 --user johndoe --password qwerty
851
+ ```
852
+
853
+ #### callerid | cil
854
+
855
+ Get the CodeView CallerID details for the specific CSECT and module.
856
+
857
+ **Usage**
858
+
859
+ ```
860
+ $ zowe mat monitor codeview callerid [options]
861
+ ```
862
+
863
+ **Options**
864
+ `--profile` _(string)_
865
+ Specifies the name of the profile that you want to analyze. When you specify the profile name, you get the data for the latest measurement within the specified profile.
866
+
867
+ `--mon_num` _(number)_
868
+ Specifies the unique monitor number of the measurement.
869
+
870
+ `--module` _(string)_
871
+ Specifies the module name that you request the CallerID details for. You get the module value from the 'codeview csect' or from the 'codeview module' command response. The module name can be empty (e.g., --module "IGZCPAC" or --module '""').
872
+
873
+ `--csect` _(string)_
874
+ Specifies the CSECT name that you request the CallerID details data for. You get the csect value from the 'codeview csect' command response. The CSECT name can be empty (e.g., --csect "TUNCOB01" or --csect '""').
875
+
876
+ **Profile Options**
877
+ `--mat-profile` | `--mat-p` _(string)_
878
+ The name of a (mat) profile to load for this command execution.
879
+
880
+ **Examples**
881
+
882
+ - Get the CallerID details for monitor number 5, CSECT name TUNCOB01, and module name RUNCOB:
883
+
884
+ ```
885
+ $ zowe mat monitor codeview callerid --mon_num 5 --csect "TUNCOB01" --module "RUNCOB"
886
+ ```
887
+
888
+ - Get the CallerID details for the latest monitor in the profile for CSECT name TUNCOB01, and empty module name:
889
+
890
+ ```
891
+ $ zowe mat monitor codeview callerid --profile TESTPROF --csect "TUNCOB01" --module '""'
892
+ ```
893
+
894
+ - Get the CallerID details for monitor number 5, CSECT name TUNCOB01, and module name RUNCOB, with the specific MAT profile details defined:
895
+
896
+ ```
897
+ $ zowe mat monitor codeview callerid --mon_num 5 --csect "TUNCOB01" --module "RUNCOB" --host "example.com" --port 12345 --user johndoe --password qwerty
898
+ ```
899
+
900
+ #### histogram
901
+
902
+ The commands from the HISTOGRAM group enable you to get the Histogram measurement details.
903
+
904
+ **Usage**
905
+
906
+ ```
907
+ $ zowe mat monitor codeview histogram <command>
908
+ ```
909
+
910
+ The following **commands** are available for the HISTOGRAM group:
911
+
912
+ ##### histogram_csect | cs
913
+ Get the Histogram measurement details in CSECT mode.
914
+
915
+ **Usage**
916
+
917
+ ```
918
+ $ zowe mat monitor codeview histogram csect [options]
727
919
  ```
728
920
 
729
921
  **Options**
@@ -754,38 +946,40 @@ The name of a (mat) profile to load for this command execution.
754
946
 
755
947
  **Examples**
756
948
 
757
- - Get the Histogram details with the group size defaulting to 4 bytes for monitor number 5, CSECT name TUNCOB01, module name RUNCOB:
949
+ - Get the Histogram measurement details in CSECT mode with the group size defaulting to 4 bytes for monitor
950
+ number 5, CSECT name TUNCOB01, module name RUNCOB:
758
951
 
759
952
  ```
760
- $ zowe mat monitor codeview histogram --mon_num 5 --csect "TUNCOB01" --module "RUNCOB"
953
+ $ zowe mat monitor codeview histogram csect --mon_num 5 --csect "TUNCOB01" --module "RUNCOB"
761
954
  ```
762
955
 
763
- - Get the Histogram details for the latest monitor in the TESTPROF profile for CSECT name TUNCOB01, empty module name, with the group size value set to 32 bytes, and limit the number of returned rows to 5 top consumers:
956
+ - Get the Histogram measurement details in CSECT mode for the latest monitor in the TESTPROF profile for CSECT
957
+ name TUNCOB01, empty module name, with the group size value set to 32 bytes, and limit the number of returned rows to 5 top consumers:
764
958
 
765
959
  ```
766
- $ zowe mat monitor codeview histogram --profile TESTPROF --csect "TUNCOB01" --module '""' --top 5 --group 32
960
+ $ zowe mat monitor codeview histogram csect --profile TESTPROF --csect "TUNCOB01" --module '""' --top 5 --group 32
767
961
  ```
768
962
 
769
- - Get the Histogram details for monitor number 5, CSECT name TUNCOB01, and module name RUNCOB, limit the number of returned records to 5 top consumers, and request the listing details:
963
+ - Get the Histogram measurement details in CSECT mode for monitor number 5, CSECT name TUNCOB01, and module name RUNCOB, limit the number of returned records to 5 top consumers, and request the listing details:
770
964
 
771
965
  ```
772
- $ zowe mat monitor codeview histogram --mon_num 5 --csect "TUNCOB01" --module "RUNCOB" --top 5 --listing
966
+ $ zowe mat monitor codeview histogram csect --mon_num 5 --csect "TUNCOB01" --module "RUNCOB" --top 5 --listing
773
967
  ```
774
968
 
775
- - 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:
969
+ - Get the Histogram measurement details in CSECT mode 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:
776
970
 
777
971
  ```
778
- $ zowe mat monitor codeview histogram --mon_num 5 --csect "TUNCOB01" --module "RUNCOB" --host "example.com" --port 12345 --user johndoe --password qwerty
972
+ $ zowe mat monitor codeview histogram csect --mon_num 5 --csect "TUNCOB01" --module "RUNCOB" --host "example.com" --port 12345 --user johndoe --password qwerty
779
973
  ```
780
974
 
781
- #### callerid | cil
975
+ ##### histogram_ideal | idl
782
976
 
783
- Get the CodeView CallerID details for the specific CSECT and module.
977
+ Get the Histogram measurement details in Ideal mode.
784
978
 
785
979
  **Usage**
786
980
 
787
981
  ```
788
- $ zowe mat monitor codeview callerid [options]
982
+ $ zowe mat monitor codeview histogram ideal [options]
789
983
  ```
790
984
 
791
985
  **Options**
@@ -795,11 +989,21 @@ Specifies the name of the profile that you want to analyze. When you specify the
795
989
  `--mon_num` _(number)_
796
990
  Specifies the unique monitor number of the measurement.
797
991
 
798
- `--module` _(string)_
799
- Specifies the module name that you request the CallerID details for. You get the module value from the 'codeview csect' or from the 'codeview module' command response. The module name can be empty (e.g., --module "IGZCPAC" or --module '""').
992
+ `--system` _(string)_
993
+ Specifies the system ID that you request the Histogram data for. You get the system ID from the
994
+ 'codeview ideal' command response. This is mandatory option.
800
995
 
801
- `--csect` _(string)_
802
- Specifies the CSECT name that you request the CallerID details data for. You get the csect value from the 'codeview csect' command response. The CSECT name can be empty (e.g., --csect "TUNCOB01" or --csect '""').
996
+ `--program` _(string)_
997
+ Specifies the program name that you request the Histogram data for. You get the program name from the
998
+ 'codeview ideal' command response. This is mandatory option.
999
+
1000
+ `--objVersion` _(string)_
1001
+ Specifies the object version that you request the Histogram data for. You get the object version from the
1002
+ 'codeview ideal' command response. This is mandatory option.
1003
+
1004
+ `--srcVersion` _(string)_
1005
+ Specifies the source version that you request the Histogram data for. You get the source version from the
1006
+ 'codeview ideal' command response. This is mandatory option.
803
1007
 
804
1008
  **Profile Options**
805
1009
  `--mat-profile` | `--mat-p` _(string)_
@@ -807,22 +1011,73 @@ The name of a (mat) profile to load for this command execution.
807
1011
 
808
1012
  **Examples**
809
1013
 
810
- - Get the CallerID details for monitor number 5, CSECT name TUNCOB01, and module name RUNCOB:
1014
+ - Get the Histogram data in Ideal mode for monitor number 5, system ID '$ID', program name 'BAGTEST2', object version 'PRD', source version '001':
811
1015
 
812
1016
  ```
813
- $ zowe mat monitor codeview callerid --mon_num 5 --csect "TUNCOB01" --module "RUNCOB"
1017
+ $ zowe mat monitor codeview histogram ideal --mon_num 5 --system '$ID' --program 'BAGTEST2' --objVersion 'PRD' --srcVersion '001'
814
1018
  ```
815
1019
 
816
- - Get the CallerID details for the latest monitor in the profile for CSECT name TUNCOB01, and empty module name:
1020
+ - Get the Histogram data in Ideal mode for the latest monitor in the TESTPROF profile for system ID '$ID', program name 'BAGTEST2', object version 'PRD', source version '001':
817
1021
 
818
1022
  ```
819
- $ zowe mat monitor codeview callerid --profile TESTPROF --csect "TUNCOB01" --module '""'
1023
+ $ zowe mat monitor codeview histogram ideal --profile TESTPROF --system '$ID' --program 'BAGTEST2' --objVersion 'PRD' --srcVersion '001'
820
1024
  ```
821
1025
 
822
- - Get the CallerID details for monitor number 5, CSECT name TUNCOB01, and module name RUNCOB, with the specific MAT profile details defined:
1026
+ - Get the Histogram data in Ideal mode for monitor number 5, system ID '$ID', program name
1027
+ 'BAGTEST2', object version 'PRD', source version '001' with the specific MAT profile details defined:
823
1028
 
824
1029
  ```
825
- $ zowe mat monitor codeview callerid --mon_num 5 --csect "TUNCOB01" --module "RUNCOB" --host "example.com" --port 12345 --user johndoe --password qwerty
1030
+ $ zowe mat monitor codeview histogram ideal --mon_num 5 --system '$ID' --program 'BAGTEST2' --objVersion 'PRD' --srcVersion '001' --host 'example.com' --port 12345 --user 'johndoe' --password 'qwerty'
1031
+ ```
1032
+
1033
+ ##### histogram_natural | nat
1034
+
1035
+ Get the Histogram measurement details in Natural mode.
1036
+
1037
+ **Usage**
1038
+
1039
+ ```
1040
+ $ zowe mat monitor codeview histogram natural [options]
1041
+ ```
1042
+
1043
+ **Options**
1044
+ `--profile` _(string)_
1045
+ Specifies the name of the profile that you want to analyze. When you specify the profile name, you get the data for the latest measurement within the specified profile.
1046
+
1047
+ `--mon_num` _(number)_
1048
+ Specifies the unique monitor number of the measurement.
1049
+
1050
+ `--library` _(string)_
1051
+ Specifies the library name that you request the Histogram data for. You get the library name from the
1052
+ 'codeview natural' command response. This is mandatory option.
1053
+
1054
+ `--routine` _(string)_
1055
+ Specifies the routine name that you request the Histogram data for. You get the routine name from the
1056
+ 'codeview natural' command response. This is mandatory option.
1057
+
1058
+ **Profile Options**
1059
+ `--mat-profile` | `--mat-p` _(string)_
1060
+ The name of a (mat) profile to load for this command execution.
1061
+
1062
+ **Examples**
1063
+
1064
+ - Get the Histogram data in Natural mode for monitor number 5, library name 'CATAPPS', routine name 'IFEX1R':
1065
+
1066
+ ```
1067
+ $ zowe mat monitor codeview histogram natural --mon_num 5 --library 'CATAPPS' --routine 'IFEX1R'
1068
+ ```
1069
+
1070
+ - Get the Histogram data in Natural mode for the latest monitor in the TESTPROF profile for library name 'CATAPPS', routine name 'IFEX1R':
1071
+
1072
+ ```
1073
+ $ zowe mat monitor codeview histogram natural --profile TESTPROF --library 'CATAPPS' --routine 'IFEX1R'
1074
+ ```
1075
+
1076
+ - Get the Histogram data in Natural mode for monitor number 5, library name 'CATAPPS', routine
1077
+ name 'IFEX1R' with the specific MAT profile details defined:
1078
+
1079
+ ```
1080
+ $ zowe mat monitor codeview histogram natural --mon_num 5 --library 'CATAPPS' --routine 'IFEX1R' --host 'example.com' --port 12345 --user 'johndoe' --password 'qwerty'
826
1081
  ```
827
1082
 
828
1083
  ### db2
@@ -1472,7 +1727,7 @@ $ zowe mat monitor tranview callstack --profile TESTPROF
1472
1727
 
1473
1728
  #### csect | csd
1474
1729
 
1475
- Get the CodeView details for transaction in Csect mode.
1730
+ Get the CodeView details for transaction in CSECT mode.
1476
1731
 
1477
1732
  **Usage**
1478
1733
 
@@ -1496,19 +1751,19 @@ The name of a (mat) profile to load for this command execution.
1496
1751
 
1497
1752
  **Examples**
1498
1753
 
1499
- - Get the CodeView details for transaction in Csect mode for monitor number 5:
1754
+ - Get the CodeView details for transaction in CSECT mode for monitor number 5:
1500
1755
 
1501
1756
  ```
1502
1757
  $ zowe mat monitor tranview csect --mon_num 5
1503
1758
  ```
1504
1759
 
1505
- - Get the CodeView details for transaction in Csect mode for the latest monitor in the TESTPROF profile:
1760
+ - Get the CodeView details for transaction in CSECT mode for the latest monitor in the TESTPROF profile:
1506
1761
 
1507
1762
  ```
1508
1763
  $ zowe mat monitor tranview csect --profile TESTPROF
1509
1764
  ```
1510
1765
 
1511
- - Get the CodeView details for transaction in Csect mode for the monitor number 5 with specific host:
1766
+ - Get the CodeView details for transaction in CSECT mode for the monitor number 5 with specific host:
1512
1767
 
1513
1768
  ```
1514
1769
  $ zowe mat monitor tranview csect --mon_num 5 --host \"example.com\" --port 12345 --user User1 --password qwerty
@@ -20,9 +20,14 @@ export declare class MATRest {
20
20
  static readonly ANALYSIS_CODEVIEW_CESCT_DETAIL: string;
21
21
  static readonly ANALYSIS_CODEVIEW_MODULE: string;
22
22
  static readonly ANALYSIS_CODEVIEW_MODULE_DETAIL: string;
23
+ static readonly ANALYSIS_CODEVIEW_NATURAL: string;
24
+ static readonly ANALYSIS_CODEVIEW_IDEAL: string;
25
+ static readonly ANALYSIS_ADABAS: string;
23
26
  static readonly ANALYSIS_DELAYVIEW_LOCATION: string;
24
27
  static readonly ANALYSIS_CODEVIEW_CALLERID: string;
25
28
  static readonly ANALYSIS_CODEVIEW_HISTOGRAM: string;
29
+ static readonly ANALYSIS_CODEVIEW_HISTOGRAM_NATURAL: string;
30
+ static readonly ANALYSIS_CODEVIEW_HISTOGRAM_IDEAL: string;
26
31
  static readonly ANALYSIS_TRANVIEW: string;
27
32
  static readonly ANALYSIS_TRANVIEW_CICSTAT: string;
28
33
  static readonly ANALYSIS_TRANVIEW_CALLERID: string;
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  /*
3
- * Copyright (c) 2023 Broadcom. All Rights Reserved. The term
3
+ * Copyright (c) 2025 Broadcom. All Rights Reserved. The term
4
4
  * "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
5
5
  *
6
6
  * This software and all information contained therein is
@@ -116,9 +116,14 @@ MATRest.ANALYSIS_CODEVIEW_CESCT = MATRest.ANALYSIS_CODEVIEW + "/csect";
116
116
  MATRest.ANALYSIS_CODEVIEW_CESCT_DETAIL = MATRest.ANALYSIS_CODEVIEW_CESCT + "/detail";
117
117
  MATRest.ANALYSIS_CODEVIEW_MODULE = MATRest.ANALYSIS_CODEVIEW + "/module";
118
118
  MATRest.ANALYSIS_CODEVIEW_MODULE_DETAIL = MATRest.ANALYSIS_CODEVIEW_MODULE + "/detail";
119
+ MATRest.ANALYSIS_CODEVIEW_NATURAL = MATRest.ANALYSIS_CODEVIEW + "/natural";
120
+ MATRest.ANALYSIS_CODEVIEW_IDEAL = MATRest.ANALYSIS_CODEVIEW + "/ideal";
121
+ MATRest.ANALYSIS_ADABAS = MATRest.ANALYSIS + "/adabas";
119
122
  MATRest.ANALYSIS_DELAYVIEW_LOCATION = MATRest.ANALYSIS_DELAYVIEW + "/location";
120
123
  MATRest.ANALYSIS_CODEVIEW_CALLERID = MATRest.ANALYSIS + "/codeview/callerid";
121
124
  MATRest.ANALYSIS_CODEVIEW_HISTOGRAM = MATRest.ANALYSIS + "/codeview/histogram";
125
+ MATRest.ANALYSIS_CODEVIEW_HISTOGRAM_NATURAL = MATRest.ANALYSIS_CODEVIEW_HISTOGRAM + "/natural";
126
+ MATRest.ANALYSIS_CODEVIEW_HISTOGRAM_IDEAL = MATRest.ANALYSIS_CODEVIEW_HISTOGRAM + "/ideal";
122
127
  MATRest.ANALYSIS_TRANVIEW = MATRest.ANALYSIS + "/tranview";
123
128
  MATRest.ANALYSIS_TRANVIEW_CICSTAT = MATRest.ANALYSIS_TRANVIEW + "/stat";
124
129
  MATRest.ANALYSIS_TRANVIEW_CALLERID = MATRest.ANALYSIS_TRANVIEW + "/callerid";
@@ -134,4 +139,4 @@ MATRest.ANALYSIS_IMSVIEW_DBDNAME = MATRest.ANALYSIS_IMSVIEW + "/dbdname";
134
139
  MATRest.ANALYSIS_IMSVIEW_REGION = MATRest.ANALYSIS_IMSVIEW + "/region";
135
140
  MATRest.ANALYSIS_IMSVIEW_PSBNAME_SSA = MATRest.ANALYSIS_IMSVIEW + "/psbname/ssa";
136
141
  MATRest.TOKEN_OFFSET = 25;
137
- //# sourceMappingURL=MATRest.js.map
142
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiTUFUUmVzdC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9hcGkvTUFUUmVzdC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUE7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztHQXFCRzs7Ozs7Ozs7Ozs7O0FBRUgsaURBQStEO0FBSS9ELE1BQWEsT0FBTztJQTJDaEIsZ0lBQWdJO0lBQ3pILE1BQU0sQ0FBTyxPQUFPLENBQUMsT0FBd0IsRUFBRSxRQUFnQjs7WUFDbEUsTUFBTSxRQUFRLEdBQUcsUUFBUSxHQUFHLE9BQU8sQ0FBQyxJQUFJLENBQUM7WUFDekMsTUFBTSxRQUFRLEdBQUcsTUFBTSxJQUFJLENBQUMsZUFBZSxDQUFRLE9BQU8sRUFBRSxRQUFRLENBQUMsQ0FBQztZQUN0RSxPQUFPLFFBQVEsQ0FBQztRQUNoQixDQUFDO0tBQUE7SUFFTCwyQ0FBMkM7SUFDcEMsTUFBTSxDQUFPLGNBQWMsQ0FBc0IsT0FBd0IsRUFBRSxRQUFnQixFQUFFLE9BQWUsRUFBRSxVQUFnQzs7WUFDakosSUFBSSxRQUFRLEdBQUcsRUFBRSxDQUFDO1lBQ2xCLElBQUksVUFBVSxLQUFLLFNBQVMsSUFBSSxVQUFVLENBQUMsSUFBSSxFQUFFLENBQUM7Z0JBQzlDLFFBQVEsSUFBSSxHQUFHLENBQUM7Z0JBQ2hCLElBQUksR0FBRyxHQUFHLENBQUMsQ0FBQztnQkFDWixLQUFLLE1BQU0sUUFBUSxJQUFJLFVBQVUsQ0FBQyxPQUFPLEVBQUUsRUFBRSxDQUFDO29CQUMxQyxHQUFHLEVBQUUsQ0FBQztvQkFDTixJQUFJLEdBQUcsR0FBRyxRQUFRLENBQUMsQ0FBQyxDQUFDLENBQUM7b0JBQ3RCLElBQUksR0FBRyxLQUFLLFNBQVMsRUFBRSxDQUFDO3dCQUNwQixHQUFHLEdBQUcsU0FBUyxDQUFDO29CQUNwQixDQUFDO29CQUNELE1BQU0sS0FBSyxHQUFHLFFBQVEsQ0FBQyxDQUFDLENBQUMsQ0FBQztvQkFDMUIsUUFBUSxJQUFJLEdBQUcsR0FBRyxHQUFH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
@@ -22,4 +22,4 @@
22
22
  * EXPRESSLY ADVISED OF SUCH LOSS OR DAMAGE.
23
23
  */
24
24
  Object.defineProperty(exports, "__esModule", { value: true });
25
- //# sourceMappingURL=HistogramError.js.map
25
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiSGlzdG9ncmFtRXJyb3IuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvYXBpL2Vycm9yL0hpc3RvZ3JhbUVycm9yLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQTs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0dBcUJHIn0=
@@ -22,4 +22,4 @@
22
22
  * EXPRESSLY ADVISED OF SUCH LOSS OR DAMAGE.
23
23
  */
24
24
  Object.defineProperty(exports, "__esModule", { value: true });
25
- //# sourceMappingURL=ICreateProfile.js.map
25
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiSUNyZWF0ZVByb2ZpbGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvYXBpL3JlcXVlc3QvSUNyZWF0ZVByb2ZpbGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7R0FxQkcifQ==