94d7d42f14
This updated branch fixes a few issues and should ensure display with pcp-dstat (I9234b226242f145db9c235797649202aa530ec74) Add an override so we pull it Change-Id: I0d5e1b567c364a9e6c7aa0b95de17abffaef0434
23 lines
426 B
YAML
23 lines
426 B
YAML
- hosts: all
|
|
roles:
|
|
- role: ensure-dstat-graph
|
|
vars:
|
|
dstat_graph_cache_ignore: true
|
|
- run-dstat
|
|
|
|
# Simulate workload
|
|
- hosts: all
|
|
tasks:
|
|
# Not using ansible pause module on purpose in order to simulate the load
|
|
- name: Simulate workload
|
|
command: sleep 10
|
|
args:
|
|
warn: false
|
|
|
|
- hosts: all
|
|
roles:
|
|
- role: dstat-graph
|
|
vars:
|
|
dstat_graph_cache_ignore: true
|
|
|