Я пытаюсь импортировать панель управления Grafana (JSON) в Grafana. Ниже приводится ansible playbook
---
- name: task to parameterise grafana template
hosts: localhost
become: true
user: root
tasks:
- name: Import Grafana dashboard
grafana_dashboard:
grafana_url: http://<host-ip>:3000
state: present
message: Updated by ansible
uid: edO3sTlipu
overwrite: yes
path: "/home/centos/Kubernetes_cluster_monitoring.json"
И я получаю сообщение об ошибке ниже.
"msg": "error : Unable to create the new dashboard edO3sTlipu : 404 - {'status': 404, 'body': '{\"message\":\"Dashboard not found\",\"status\":\"not-found\"}', 'content-length': '54', 'url': 'http://13.235.2.156:3000/api/dashboards/db', 'expires': '-1', 'msg': 'HTTP Error 404: Not Found', 'connection': 'close', 'pragma': 'no-cache', 'cache-control': 'no-cache', 'date': 'Tue, 07 Jan 2020 08:38:46 GMT', 'x-frame-options': 'deny', 'content-type': 'application/json'}."
Может кто-нибудь помочь.