/cmfutils

Transform DFH$MOLS output into pandas dataframe

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

cmfutils

Python package to transform CICS Monitoring Facility performance class data into pandas dataframe using DFH$MOLS output. Some sample scripts for analysis of the data with the help pandas are provided. Short description of CMF fields is included.

Prereqs

  1. You love CICS
  2. You know how to run DFH$MOLS to generate input data.
  3. Python3 with pip and pandas

Install the package

From setup directory run

    pip install -e .

Demo Session with Jupyter

Download output of DFH$MOLS as ascii text file and start a Jupyter session.

Import cmfutils and load the file into a pandas data frame:

Part(1)

Now you are ready to perform some analysis with pandas or use pandas to export the data to csv or excel and so on. Part(2)

The function wait_times_observed() is an example how to quickly identify possible issues in a CICS region. Part(3)