29d4b8b63b
+ Adding undercloud Change-Id: Ide98d1795e17d3b0d13a8af42959522e41c04329 Signed-off-by: Sindhur Malleni <smalleni@redhat.com>
17 lines
452 B
Django/Jinja
17 lines
452 B
Django/Jinja
# MYSQL Tuner Report
|
|
|
|
{% for host in groups['undercloud'] %}
|
|
-------------------------------------------
|
|
| Results for host : {{ host }}
|
|
-------------------------------------------
|
|
{{hostvars[host]['mysql_out']['stdout']}}
|
|
{% endfor %}
|
|
|
|
|
|
{% for host in groups['controller'] %}
|
|
-------------------------------------------
|
|
| Results for host : {{ host }}
|
|
-------------------------------------------
|
|
{{hostvars[host]['mysql_out']['stdout']}}
|
|
{% endfor %}
|