github.com/NVIDIA/aistore@v1.3.23-0.20240517131212-7df6609be51d/bench/tools/aisloader-composer/playbooks/start_grafana.yaml (about)

     1  - name: Start grafana
     2    hosts: localhost
     3    gather_facts: no
     4  
     5    tasks:
     6      - name: Copy graphite carbon config to allow higher metric creation for netdata
     7        ansible.builtin.copy:
     8          src: ../containers/carbon_config/
     9          dest: ~/carbon_config/
    10        delegate_to: "{{ grafana_host }}"
    11        when: grafana_host is defined
    12        
    13      - name: Start grafana host
    14        ansible.builtin.script: ../containers/deploy_grafana.sh
    15        delegate_to: "{{ grafana_host }}"
    16        when: grafana_host is defined