Questions tagged [sdsf]

System Display and Search Facility is an MVS-Z/OS utility used for monitoring the System Log with the added ability to also issue control commands (authority permitting).

SDSF is applicable to mainframes running MVS-Z/OS operating systems utilising JES2 (Job Entry Subsystem 2).

SDSF became available in the late 1980's. Originally it was known as Spool Display and Search Facility as the system log is spooled and often referred to as the "spool".

Typically there are two groups of users who use SDSF.

  • Those that use it to monitor JOBS and Job output and
  • those (Operators/System programmers) who use SDSF to monitor and control aspects of the system.

The first group are often provided alternative tools such as WSF2 (Writer Spool Facility 2) which offloads and saves spool data allowing a far greater historical viewpoint.

Nowadays, there are additionally many tools that complement SDSF for automatically monitoring and controlling the system such as Omegamon.

What is SDSF

6 questions
2
votes
1 answer

Save job output from SDSF into a PDS and using ISPF functions in REXX

We periodically runs jobs and we need to save the output into a PDS and then parse the output to extract parts of it to save into another member. It needs to be done by issuing a REXX command using the percent sign and the REXX member name as an…
Alan
  • 21
  • 2
1
vote
1 answer

How to get userlibs in the Rexx-interface to SDSF

The rexx interface to SDSF works fine to get information about spoolfiles. I am trying to list the use of userlibs for output-files. And do a "ISFEXEC O" followed by (in a loop) ISFACT O TOKEN(..) PARM(NP ?) (PREFIX JDS_ DELAYED DELAYED2 In an inner…
Per Beliing
  • 73
  • 1
  • 7
0
votes
1 answer

REXX program that will show a task from DA with the highest CPU usage

i'm quite new to programming with REXX. I'd like to write a program that will show a task from DA with the biggest CPU usage on the LPAR. Thanks in advance 000001 /* rexx */ 000002 RC=ISFCALLS('ON') …
Dandy
  • 3
  • 2
0
votes
1 answer

How to display input wait queue details of job of all lpars with JCL

I'm trying to get the output of waiting jobs in all plexes by running a JCL, but I don't seem to get the desired results. My code used: //SDSF EXEC PGM=SDSF //SYSOUT DD SYSOUT=* //ISFOUT DD…
0
votes
1 answer

Cannot get SDSF to respond to TSO or batch commands

I am trying to write a JCL Job Step that will retrieve the JESMSGLG, JESJCL, and JESLOG datasets of the active (this) job. The idea here is that I need to collect the log (from the beginning of the job to now) and record it in a data set before it…
0
votes
1 answer

JCL Printing Job spool into a dataset for a specific LPAR

I wanted to print my job spool automatically(using a job scheduler) using a JCL. I was able to do that by executing the SDSF program and passing my SDSF commands in ISFIN. I was able to pass the Jobname and print into a specific file, but how do I…