Merge "Adding a playbook to fetch ODL transaction leaks"

This commit is contained in:
Zuul 2018-03-25 17:08:21 +00:00 committed by Gerrit Code Review
commit 7e58175e82

View File

@ -0,0 +1,14 @@
- hosts: controller
remote_user: "{{host_remote_user}}"
vars_files:
- ../install/group_vars/all.yml
tasks:
- name: Get open transactions
shell: >
sshpass -p {{ karaf_password }} ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@localhost "trace:transactions" > /tmp/open-transactions.txt
- name: Copy the open transactions
fetch:
src: /tmp/open-transactions.txt
dest: "{{home_dir}}/open-transactions-{{ansible_hostname}}.txt"