Note
This plugin is part of the community.skydive collection.
To install it use: ansible-galaxy collection install community.skydive
.
To use it in a playbook, specify: community.skydive.skydive_capture
.
The below requirements are needed on the host that executes this module.
Parameter | Choices/Defaults | Comments | |
---|---|---|---|
capture_name string | Default: "" | To define flow capture name. | |
description string | Default: "" | Configures a text string to be associated with the instance of this object. | |
extra_tcp_metric boolean |
| To define flow capture ExtraTCPMetric. | |
interface_name string | To define flow capture interface name. | ||
ip_defrag boolean |
| To define flow capture IPDefrag. | |
layer_key_mode string | Default: "L2" | To define flow capture Layer KeyMode. | |
provider string | A dict object containing connection details. | ||
endpoint string / required | Specifies the hostname/address along with the port as localhost:8082 for connecting to the remote instance of SKYDIVE client over the REST API. | ||
insecure boolean |
| Ignore SSL certification verification. | |
password string | Specifies the password to use to authenticate the connection to the remote instance of SKYDIVE client. | ||
ssl boolean |
| Specifies the ssl parameter that decides if the connection type shall be http or https. | |
user string | Configures the username to use to authenticate the connection to the remote instance of SKYDIVE client. | ||
query string | It's the complete gremlin query which the users can input, G.V(.Has('Name', 'eth0', 'Type', 'device')), to create the capture. And, if the user directly inputs the gremlin query then user is not required to input any other module parameter as gremlin query takes care of creating the flow capture. | ||
reassemble_tcp boolean |
| To define flow capture ReassembleTCP. | |
state string |
| State of the flow capture. If value is present flow capture will be created else if it is absent it will be deleted. | |
type string | To define flow capture interface type. |
Note
connection: local
.- name: start a new flow capture directly from gremlin query community.skydive.skydive_capture: query: G.V().Has('Name', 'eth0', 'Type', 'device') state: present provider: endpoint: localhost:8082 username: admin password: admin - name: stop the flow capture directly from gremlin query community.skydive.skydive_capture: query: G.V().Has('Name', 'eth0', 'Type', 'device') state: absent provider: endpoint: localhost:8082 username: admin password: admin - name: start a new flow capture from user's input community.skydive.skydive_capture: interface_name: Node1 type: myhost capture_name: test_capture description: test description extra_tcp_metric: true ip_defrag: true reassemble_tcp: true state: present provider: endpoint: localhost:8082 username: admin password: admin - name: stop the flow capture community.skydive.skydive_capture: interface_name: Node1 type: myhost capture_name: test_capture description: test description extra_tcp_metric: true ip_defrag: true reassemble_tcp: true state: absent provider: endpoint: localhost:8082 username: admin password: admin
© 2012–2018 Michael DeHaan
© 2018–2019 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/2.10/collections/community/skydive/skydive_capture_module.html