
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
21 lines
773 B
YAML
21 lines
773 B
YAML
- name: Check for cached dstat_graph
|
|
stat:
|
|
path: "{{ dstat_graph_cache_path }}"
|
|
register: dstat_cache
|
|
|
|
- name: Clone dstat_graph
|
|
when: >
|
|
not dstat_cache.stat.exists or
|
|
dstat_graph_cache_ignore
|
|
git:
|
|
# NOTE(ianw) 2021-10-22 : this project hasn't had an update in 4
|
|
# years ... it relies on https://github.com/novus/nvd3 which has
|
|
# never been updated for D3 >v3 (which is currently up to 7).
|
|
# This update is far from perfect but converts the non-graph bits
|
|
# to current boostrap and fixes some display issues with
|
|
# pcp-dstat. Use this while we see if the original upstream have
|
|
# interest in it any more.
|
|
repo: https://github.com/ianw/dstat_graph
|
|
dest: "{{ dstat_graph_download_path }}"
|
|
version: bootstrap5
|