[ansible-project] How to send ansible-awx metrics to prometheus

2019-11-06 Thread Manu el
Hello, I saw that feature was available on ansible tower as mentioned here : https://docs.ansible.com/ansible-tower/latest/html/administration/metrics.html# But how can i do the same thing for ansible-AWX ? Thanks ! -- You received this message because you are subscribed to the Google Groups

[ansible-project] Re: Ansible report - Web interface

2017-09-21 Thread manu
python script create a personal temporary tiny web server where you >> can analyse your ansible report in a nice web interface. >> >> You can found my little project, here : >> https://github.com/manuBocquet/ansible-report >> >> I hope it will help some

[ansible-project] Ansible report - Web interface

2017-09-20 Thread manu
it will help some people. Comments are welcome, have a good day. Manu -- You received this message because you are subscribed to the Google Groups "Ansible Project" group. To unsubscribe from this group and stop receiving emails from it, send an email to ansible-projec

[ansible-project] Includes playbooks not able to access variables from vars_files

2014-05-13 Thread Manu J
Variables defined in vars is available to included playbooks but variables included via vars_files is not. Files to reproduce - https://github.com/j-manu/debug/tree/master/ansible Run command ansible-playbook -i inventory site.yml -- You received this message because you are subscribed

[ansible-project] Included playbooks able to access variables defined in vars but not from vars_files

2014-05-13 Thread Manu J
Variables defined in vars is available to included playbooks but variables included via vars_files is not. Files to reproduce - https://github.com/j-manu/debug/tree/master/ansible Run command ansible-playbook -i inventory site.yml -- You received this message because you are subscribed

Re: [ansible-project] roles defined after include statement are ignored

2014-05-01 Thread Manu J
and they are loaded out of the configured roles path. What version of Ansible are you running? I would have expected this invalid keyword to raise an error in recent versions. On Wed, Apr 30, 2014 at 8:45 AM, Manu J manu...@gmail.com javascript:wrote: I have a playbook which looks like this - hosts

[ansible-project] roles defined after include statement are ignored

2014-04-30 Thread Manu J
I have a playbook which looks like this - hosts: all include: rails-servers.yml roles: - statsd - app The roles in rails-servers.yml are executed. but app statsd roles are not executed by ansible (using 1.5). If I remove the include statement it gets executed. I get no errors when