码迷,mamicode.com
首页 > 其他好文 > 详细

Ansible 使用jinja2模板 统计资源使用情况

时间:2020-06-23 19:45:22      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:des   com   disk   ansible   color   class   task   system   def   

template.j2 模板

-----------------------------------------------------------------------------
{{ansible_facts.hostname}}:{{ansible_default_ipv4.address}}
This systems total memory is: {{ ansible_memtotal_mb }}MBs.
The current free memory is: {{ ansible_memory_mb.nocache.free }} MBs.
{% for i in ansible_mounts if i.block_used/i.block_total>0.8 %}
The mount disk more 80%:{{i.mount}}use percentage :{{i.block_used/i.block_total}}
{% endfor%}

Playbook 

---
- name: test temaplte
  hosts: localhost
  tasks:
    - name: test template
      template:
      src: template.j2
      dest: /home/operater-hryt/myansible/result.j2

 输出样式 

技术图片

 

Ansible 使用jinja2模板 统计资源使用情况

标签:des   com   disk   ansible   color   class   task   system   def   

原文地址:https://www.cnblogs.com/oscarli/p/13183701.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!