SYSVIEW Performance Management

 View Only
  • 1.  GSVX071E Message After Migration V15.0

    Posted Dec 07, 2018 10:14 AM

    In the v140 version of Sysview, we used the following command in the JCLs of the jobs to stop the monitoring of Status of some tasks:

     

    // COMMAND 'F SYSVIEW, MODIFY MVSDATA, RELOAD BWTRMONE'

     

    In the above case, the BWTRMONE, contains the change in monitoring.

    After migration to Sysview v150 version, this command did not work anymore. And alerts are being generated in the period they should not.

    Searching in syslog, I found the following message after issuing the command:

     

    N 0020000 BNB1 2018341 01: 40: 09.28 STC41373 00000090 GSVX071E (MVSDATA) BWTRMONE is not a valid keyword for the * NONE ***
    S command

     

    Can anybody help me?



  • 2.  Re: GSVX071E Message After Migration V15.0

    Broadcom Employee
    Posted Dec 07, 2018 10:33 AM

    As of 15.0 you have to use another keyword to identify the type of definitions you want to reload:

     

    MODIFY sysview,MODIFY MVSDATA,RELOAD <MONITOR|THRESHOLD|STATES> member 



  • 3.  Re: GSVX071E Message After Migration V15.0

    Posted Dec 07, 2018 01:00 PM

    It continues to display the same message when issued via job.

     

    When I issue from Sysview, it displays the following message:

     

    modify sysview modify mvsdata, load bwtrmone
    GSVX067E Only 3 parameters are allowed on the MODIFY command



  • 4.  Re: GSVX071E Message After Migration V15.0
    Best Answer

    Broadcom Employee
    Posted Dec 07, 2018 01:18 PM

    To issue an OS command from a SYSVIEW session you must use the SYSVIEW MVS command.

     

    If member BWTRMONE contains threshold definitions you would issue:

    MVS MODIFY SYSVIEW,MODIFY MVSDATA,RELOAD THRESHOLD BWTRMONE

      or if you are doing this from within SYSVIEW you can issue THRESH;RELOAD BWTRMONE

     

    If member BWTRMONE contains monitor definitions you would issue:

    MVS MODIFY SYSVIEW,MODIFY MVSDATA,RELOAD MONITOR BWTRMONE

      or if you are doing this from within SYSVIEW you can issue MONITOR;RELOAD BWTRMONE



  • 5.  Re: GSVX071E Message After Migration V15.0

    Posted Dec 18, 2018 07:15 AM

    Is there a command that changes only one of the metrics instead of loading the complete file with all the metrics?



  • 6.  Re: GSVX071E Message After Migration V15.0

    Broadcom Employee
    Posted Dec 18, 2018 09:45 AM

    On displays like MONITOR, THRESH, STATES, etc:
    The LOAD subcommand will MERGE the contents of the specified member in with the existing definitions.

    The RELOAD subcommand will totally REPLACE the existing definitions with the content of the specified member.

     

    Only RELOAD is available via the MODIFY command.