| 1234567891011121314151617181920212223242526272829303132333435 |
- ---
- - name: prom安装
- gather_facts: false
- become: yes
- hosts:
- - monitor
- roles:
- - prometheus
- tags: prom
- - name: grafana安装
- gather_facts: false
- become: yes
- hosts:
- - monitor
- roles:
- - grafana
- tags: grafana
- - name: 部署consul
- gather_facts: false
- become: yes
- hosts: monitor
- roles:
- - consul
- tags: consul
- - name: 部署node_exporter
- gather_facts: false
- become: yes
- hosts: exporter
- roles:
- - node_exporter
- tags: ne
|