f5os_qkview – Manage Generation of qkview file

New in version 1.0.0.

Synopsis

  • Generate qkview file.

Parameters

Parameter Choices/Defaults Configuration Comments
exclude_cores
boolean
    Choices:
  • no ←
  • yes
Specifies whether to exclude cores or not.
filename
string / required
Name of the File.
max_core_size
integer
Default:
25
Maximum Core Size in Megabytes.
This parameter value should lie between 2-1000.
max_file_size
integer
Default:
500
Maximum File Size in Megabytes.
This parameter value should lie between 2-1000.
state
string
    Choices:
  • present ←
  • absent
If present, this option creates qkview file on specified remote host.
If absent, this option deletes qkview file on the device (if it exists).
timeout
integer
Default:
0
Timeout value in seconds.

Examples

- name: Generate qkview file on F5OS device
  f5os_qkview:
    file_name: test
    timeout: 10
    max_file_size: 500
    max_core_size: 25
    exclude_cores: true
    state: present

Return Values

The following are the fields unique to this module:

Key Returned Description
exclude_cores
boolean
changed
Specifies whether cores are excluded or not.

filename
string
changed
file name of the qkview file generated.

Sample:
test.tar
max_core_size
integer
changed
Maximum Core Size in Megabytes.

Sample:
30
max_file_size
integer
changed
Maximum File Size in Megabytes.

Sample:
500
timeout
integer
changed
Timeout value in seconds.

Sample:
30


Status

Authors

  • Prateek Ramani (@ramani)