trace – Allocate auxiliary trace data sets

Synopsis

  • Allocates the two auxiliary trace data sets used by a CICS® region. When CICS auxiliary trace is activated, trace entries produced by CICS are written to the auxiliary trace data sets. These data sets can hold large amounts of trace data.

Parameters

destination

The auxiliary trace data set to create. If the value is left blank, A is implied, but you can specify A or B.

A will create or delete the A auxiliary trace data set.

B will create or delete the B auxiliary trace data set. This MUST be set for the creation of B data set.

required: False
type: str
default: A
choices: A, B
region_data_sets

The location of the region data sets to be created using a template, for example, REGIONS.ABCD0001.<< data_set_name >>.

If you want to use a data set that already exists, ensure that the data set is an auxiliary trace data set.

required: True
type: dict
dfhauxt

Overrides the templated location for the DFHAUXT data set.

required: False
type: dict
dsn

The data set name of DFHAUXT to override the template.

required: False
type: str
dfhbuxt

Overrides the templated location for the DFHBUXT data set.

required: False
type: dict
dsn

The data set name of DFHBUXT to override the template.

required: False
type: str
template

The base location of the region data sets with a template.

required: False
type: str
space_primary

The size of the primary space allocated to the auxiliary trace data set. Note that this is just the value; the unit is specified with space_type.

This option takes effect only when the auxiliary trace data set is being created. If the data set already exists, the option has no effect.

required: False
type: int
default: 20
space_secondary

The size of the secondary space allocated to the auxiliary trace data set. Note that this is just the value; the unit is specified with space_type.

This option takes effect only when the auxiliary trace data set is being created. If the data set already exists, the option has no effect.

required: False
type: int
default: 4
space_type

The unit portion of the auxiliary trace data set size. Note that this is just the unit; the value is specified with space_primary.

This option takes effect only when the auxiliary trace data set is being created. If the data set already exists, the option has no effect.

The size can be specified in megabytes (M), kilobytes (K), records (REC), cylinders (CYL), or tracks (TRK).

required: False
type: str
default: M
choices: M, K, REC, CYL, TRK
state

The intended state for the auxiliary trace data set, which the module will aim to achieve.

absent will remove the auxiliary trace data set data set entirely, if it already exists.

initial will create the auxiliary trace data set if it does not already exist.

warm will retain an existing auxiliary trace data set in its current state.

required: True
type: str
choices: initial, absent, warm

Examples

- name: Allocate auxiliary trace data set A (implicit)
  ibm.ibm_zos_cics.trace:
    state: initial

- name: Allocate auxiliary trace data set A
  ibm.ibm_zos_cics.trace:
    state: initial
    destination: A

- name: Allocate auxiliary trace data set B
  ibm.ibm_zos_cics.trace:
    state: initial
    destination: B

- name: Delete auxiliary trace data set A (implicit)
  ibm.ibm_zos_cics.trace:
    state: absent

- name: Delete auxiliary trace data set B
  ibm.ibm_zos_cics.trace:
    state: absent
    destination: B

Return Values

changed
True if the state was changed, otherwise False.
returned: always
type: bool
failed
True if the Ansible task failed, otherwise False.
returned: always
type: bool
start_state
The state of the auxiliary trace data set before the Ansible task runs.
returned: always
type: dict
data_set_organization
The organization of the data set at the start of the Ansible task.
returned: always
type: str
sample: Sequential
exists
True if the auxiliary trace data set exists.
returned: always
type: bool
end_state
The state of the auxiliary trace data set at the end of the Ansible task.
returned: always
type: dict
data_set_organization
The organization of the data set at the end of the Ansible task.
returned: always
type: str
sample: Sequential
exists
True if the auxiliary trace data set exists.
returned: always
type: bool
executions
A list of program executions performed during the Ansible task.
returned: always
type: list
name
A human-readable name for the program execution.
returned: always
type: str
rc
The return code for the program execution.
returned: always
type: int
stdout
The standard out stream returned by the program execution.
returned: always
type: str
stderr
The standard error stream returned from the program execution.
returned: always
type: str